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) {
|
2015-09-25 04:20:44 +02:00
|
|
|
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) {
|
2015-09-25 18:00:14 +02:00
|
|
|
notFoundHandler(c, w, r)
|
2015-09-25 01:58:50 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-09-28 04:17:12 +02:00
|
|
|
expired, expErr := isFileExpired(fileName)
|
|
|
|
|
|
|
|
if expErr != nil {
|
|
|
|
// Error reading metadata, pretend it's expired
|
|
|
|
notFoundHandler(c, w, r)
|
|
|
|
// TODO log error internally
|
|
|
|
return
|
|
|
|
} else if expired {
|
|
|
|
notFoundHandler(c, w, r)
|
|
|
|
// TODO delete the file
|
|
|
|
}
|
2015-09-25 01:58:50 +02:00
|
|
|
|
2015-09-25 04:20:44 +02:00
|
|
|
http.ServeFile(w, r, filePath)
|
2015-09-25 01:58:50 +02:00
|
|
|
}
|