doujiu3768 2015-04-03 23:53
浏览 36
已采纳

使用Go / Negroni / Gorilla Mux从静态网址提供文件

So I am new to Go and trying it out to build a simple web server. One part I am having trouble with is that I want to serve static files with dynamic static urls (to enable long caching by the browser). For example, I might have this url:

/static/876dsf5g87s6df5gs876df5g/application.js

But I want to serve the file located at:

/build/application.js

How would I go about this with Go / Negroni / Gorilla Mux?

  • 写回答

2条回答 默认 最新

  • dsg41888 2015-04-04 06:39
    关注

    Have you already decided on how to record/persist the "random" part of the URL? DB? In memory (i.e. not across restarts)? If not, crypto/sha1 the file(s) on start-up, and store the resultant SHA-1 hash in a map/slice.

    Otherwise, a route like (assuming Gorilla) r.Handle("/static/{cache_id}/{filename}", YourFileHandler) would work.

    package main
    
    import (
        "log"
        "mime"
        "net/http"
        "path/filepath"
    
        "github.com/gorilla/mux"
    )
    
    func FileServer(w http.ResponseWriter, r *http.Request) {
        vars := mux.Vars(r)
        id := vars["cache_id"]
    
        // Logging for the example
        log.Println(id)
    
        // Check if the id is valid, else 404, 301 to the new URL, etc - goes here!
        // (this is where you'd look up the SHA-1 hash)
    
        // Assuming it's valid
        file := vars["filename"]
    
        // Logging for the example
        log.Println(file)
    
        // Super simple. Doesn't set any cache headers, check existence, avoid race conditions, etc.
        w.Header().Set("Content-Type", mime.TypeByExtension(filepath.Ext(file)))
        http.ServeFile(w, r, "/Users/matt/Desktop/"+file)
    }
    
    func IndexHandler(w http.ResponseWriter, r *http.Request) {
        w.Write([]byte("Hello!
    "))
    }
    
    func main() {
    
        r := mux.NewRouter()
    
        r.HandleFunc("/", IndexHandler)
        r.HandleFunc("/static/{cache_id}/{filename}", FileServer)
    
        log.Fatal(http.ListenAndServe(":4000", r))
    }
    

    That should work out of the box, but I can't promise it's production ready. Personally, I just use nginx to serve my static files and benefit from it's file handler cache, solid gzip implementation, etc, etc.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 高德地图点聚合中Marker的位置无法实时更新
  • ¥15 DIFY API Endpoint 问题。
  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办