ProfouzorsLinx/display.go

60 lines
1.3 KiB
Go
Raw Normal View History

2015-09-24 07:44:49 +02:00
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"]
filePath := path.Join(Config.filesDir, fileName)
fileInfo, err := os.Stat(filePath)
2015-09-24 07:44:49 +02:00
if !fileExistsAndNotExpired(fileName) {
notFoundHandler(c, w, r)
2015-09-24 07:44:49 +02:00
return
}
if err := magicmime.Open(magicmime.MAGIC_MIME_TYPE |
magicmime.MAGIC_SYMLINK |
magicmime.MAGIC_ERROR); err != nil {
oopsHandler(c, w, r)
2015-09-24 07:44:49 +02:00
}
defer magicmime.Close()
mimetype, err := magicmime.TypeByFile(filePath)
2015-09-24 07:44:49 +02:00
if err != nil {
oopsHandler(c, w, r)
2015-09-24 07:44:49 +02:00
}
var tpl *pongo2.Template
if strings.HasPrefix(mimetype, "image/") {
tpl = Templates["display/image.html"]
} else if strings.HasPrefix(mimetype, "video/") {
tpl = Templates["display/video.html"]
2015-09-28 05:07:15 +02:00
} else if strings.HasPrefix(mimetype, "audio/") {
tpl = Templates["display/audio.html"]
2015-09-28 05:07:15 +02:00
} else if mimetype == "application/pdf" {
tpl = Templates["display/pdf.html"]
2015-09-24 07:44:49 +02:00
} else {
tpl = Templates["display/file.html"]
2015-09-24 07:44:49 +02:00
}
err = tpl.ExecuteWriter(pongo2.Context{
"mime": mimetype,
"filename": fileName,
2015-09-24 07:44:49 +02:00
"size": fileInfo.Size(),
}, w)
if err != nil {
oopsHandler(c, w, r)
2015-09-24 07:44:49 +02:00
}
}