2015-09-25 01:58:50 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"os"
|
|
|
|
"path"
|
2015-09-30 01:28:10 +02:00
|
|
|
"strings"
|
2015-09-25 01:58:50 +02:00
|
|
|
|
|
|
|
"github.com/zenazn/goji/web"
|
|
|
|
)
|
|
|
|
|
|
|
|
func fileServeHandler(c web.C, w http.ResponseWriter, r *http.Request) {
|
2015-09-25 04:20:44 +02:00
|
|
|
fileName := c.URLParams["name"]
|
|
|
|
filePath := path.Join(Config.filesDir, fileName)
|
2015-09-25 01:58:50 +02:00
|
|
|
|
2015-09-29 05:46:43 +02:00
|
|
|
if !fileExistsAndNotExpired(fileName) {
|
2015-09-25 18:00:14 +02:00
|
|
|
notFoundHandler(c, w, r)
|
2015-09-25 01:58:50 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-09-30 01:28:10 +02:00
|
|
|
if !Config.allowHotlink {
|
|
|
|
referer := r.Header.Get("Referer")
|
|
|
|
if referer != "" && !strings.HasPrefix(referer, Config.siteURL) {
|
|
|
|
w.WriteHeader(403)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-28 06:25:57 +02:00
|
|
|
http.ServeFile(w, r, filePath)
|
|
|
|
}
|
2015-09-28 04:17:12 +02:00
|
|
|
|
2015-09-30 21:54:30 +02: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 18:58:30 +02:00
|
|
|
if path == "/favicon.ico" {
|
|
|
|
path = "/static/images/favicon.gif"
|
|
|
|
}
|
|
|
|
|
2015-09-30 21:54:30 +02:00
|
|
|
filePath := strings.TrimPrefix(path, "/static/")
|
|
|
|
file, err := staticBox.Open(filePath)
|
|
|
|
if err != nil {
|
2015-10-04 18:47:20 +02:00
|
|
|
notFoundHandler(c, w, r)
|
2015-09-30 21:54:30 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-10-01 16:32:59 +02:00
|
|
|
w.Header().Set("Etag", timeStartedStr)
|
|
|
|
w.Header().Set("Cache-Control", "max-age=86400")
|
2015-09-30 21:54:30 +02:00
|
|
|
http.ServeContent(w, r, filePath, timeStarted, file)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-28 06:25:57 +02:00
|
|
|
func fileExistsAndNotExpired(filename string) bool {
|
|
|
|
filePath := path.Join(Config.filesDir, filename)
|
|
|
|
|
|
|
|
_, err := os.Stat(filePath)
|
|
|
|
if err != nil {
|
|
|
|
return false
|
2015-09-28 04:17:12 +02:00
|
|
|
}
|
2015-09-25 01:58:50 +02:00
|
|
|
|
2015-09-28 06:25:57 +02:00
|
|
|
if isFileExpired(filename) {
|
|
|
|
os.Remove(path.Join(Config.filesDir, filename))
|
|
|
|
os.Remove(path.Join(Config.metaDir, filename))
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
2015-09-25 01:58:50 +02:00
|
|
|
}
|