linx-server/fileserve.go

86 lines
1.7 KiB
Go
Raw Normal View History

2015-09-24 23:58:50 +00:00
package main
import (
"net/http"
"net/url"
2015-09-24 23:58:50 +00:00
"os"
"path"
2015-09-29 23:28:10 +00:00
"strings"
2015-09-24 23:58:50 +00:00
"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)
2015-09-24 23:58:50 +00:00
err := checkFile(fileName)
if err == NotFoundErr {
notFoundHandler(c, w, r)
2015-09-24 23:58:50 +00:00
return
} else if err == BadMetadata {
oopsHandler(c, w, r, RespAUTO, "Corrupt metadata.")
return
2015-09-24 23:58:50 +00:00
}
2015-09-29 23:28:10 +00:00
if !Config.allowHotlink {
referer := r.Header.Get("Referer")
u, _ := url.Parse(referer)
p, _ := url.Parse(Config.siteURL)
if referer != "" && !sameOrigin(u, p) {
http.Redirect(w, r, Config.sitePath+fileName, 303)
2015-09-29 23:28:10 +00:00
return
}
}
w.Header().Set("Content-Security-Policy", Config.fileContentSecurityPolicy)
http.ServeFile(w, r, filePath)
}
2015-09-28 02:17:12 +00:00
2015-09-30 19:54:30 +00:00
func staticHandler(c web.C, w http.ResponseWriter, r *http.Request) {
path := r.URL.Path
if path[len(path)-1:] == "/" {
notFoundHandler(c, w, r)
return
} else {
2015-10-04 16:58:30 +00:00
if path == "/favicon.ico" {
2015-10-30 22:36:47 +00:00
path = Config.sitePath + "/static/images/favicon.gif"
2015-10-04 16:58:30 +00:00
}
2015-10-30 22:36:47 +00:00
filePath := strings.TrimPrefix(path, Config.sitePath+"static/")
file, err := staticBox.Open(filePath)
if err != nil {
notFoundHandler(c, w, r)
return
2015-09-30 19:54:30 +00:00
}
w.Header().Set("Etag", timeStartedStr)
w.Header().Set("Cache-Control", "max-age=86400")
http.ServeContent(w, r, filePath, timeStarted, file)
2015-09-30 19:54:30 +00:00
return
}
}
func checkFile(filename string) error {
filePath := path.Join(Config.filesDir, filename)
_, err := os.Stat(filePath)
if err != nil {
return NotFoundErr
}
expired, err := isFileExpired(filename)
if err != nil {
return err
2015-09-28 02:17:12 +00:00
}
2015-09-24 23:58:50 +00:00
if expired {
os.Remove(path.Join(Config.filesDir, filename))
os.Remove(path.Join(Config.metaDir, filename))
return NotFoundErr
}
return nil
2015-09-24 23:58:50 +00:00
}