ProfouzorsLinx/fileserve.go

25 lines
404 B
Go
Raw Normal View History

2015-09-25 01:58:50 +02:00
package main
import (
"net/http"
"os"
"path"
"github.com/zenazn/goji/web"
)
func fileServeHandler(c web.C, w http.ResponseWriter, r *http.Request) {
fileName := c.URLParams["name"]
filePath := path.Join(Config.filesDir, fileName)
_, err := os.Stat(filePath)
2015-09-25 01:58:50 +02:00
if os.IsNotExist(err) {
notFoundHandler(c, w, r)
2015-09-25 01:58:50 +02:00
return
}
// plug file expiry checking here
http.ServeFile(w, r, filePath)
2015-09-25 01:58:50 +02:00
}