ProfouzorsLinx/fileserve.go

39 lines
688 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)
2015-09-25 01:58:50 +02:00
2015-09-29 05:46:43 +02:00
if !fileExistsAndNotExpired(fileName) {
notFoundHandler(c, w, r)
2015-09-25 01:58:50 +02:00
return
}
http.ServeFile(w, r, filePath)
}
2015-09-28 04:17:12 +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
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
}