55 lines
1.2 KiB
Go
55 lines
1.2 KiB
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
"os"
|
||
|
"path"
|
||
|
"strings"
|
||
|
|
||
|
"github.com/flosch/pongo2"
|
||
|
"github.com/rakyll/magicmime"
|
||
|
"github.com/zenazn/goji/web"
|
||
|
)
|
||
|
|
||
|
func fileDisplayHandler(c web.C, w http.ResponseWriter, r *http.Request) {
|
||
|
filename := c.URLParams["name"]
|
||
|
absPath := path.Join(Config.filesDir, filename)
|
||
|
fileInfo, err := os.Stat(absPath)
|
||
|
|
||
|
if os.IsNotExist(err) {
|
||
|
http.Error(w, http.StatusText(404), 404)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
if err := magicmime.Open(magicmime.MAGIC_MIME_TYPE |
|
||
|
magicmime.MAGIC_SYMLINK |
|
||
|
magicmime.MAGIC_ERROR); err != nil {
|
||
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||
|
}
|
||
|
defer magicmime.Close()
|
||
|
|
||
|
mimetype, err := magicmime.TypeByFile(absPath)
|
||
|
if err != nil {
|
||
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||
|
}
|
||
|
|
||
|
var tpl *pongo2.Template
|
||
|
|
||
|
if strings.HasPrefix(mimetype, "image/") {
|
||
|
tpl = pongo2.Must(pongo2.FromCache("templates/display/image.html"))
|
||
|
} else {
|
||
|
tpl = pongo2.Must(pongo2.FromCache("templates/display/file.html"))
|
||
|
}
|
||
|
|
||
|
err = tpl.ExecuteWriter(pongo2.Context{
|
||
|
"mime": mimetype,
|
||
|
"sitename": Config.siteName,
|
||
|
"filename": filename,
|
||
|
"size": fileInfo.Size(),
|
||
|
}, w)
|
||
|
|
||
|
if err != nil {
|
||
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||
|
}
|
||
|
}
|