linx-server/display.go

78 lines
1.7 KiB
Go
Raw Normal View History

2015-09-24 05:44:49 +00:00
package main
import (
"encoding/json"
2015-09-24 05:44:49 +00:00
"net/http"
"os"
"path"
"strconv"
2015-09-24 05:44:49 +00:00
"strings"
2015-09-29 23:00:16 +00:00
"time"
2015-09-24 05:44:49 +00:00
2015-09-29 01:41:07 +00:00
"bitbucket.org/taruti/mimemagic"
2015-09-29 23:00:16 +00:00
"github.com/dustin/go-humanize"
2015-09-24 05:44:49 +00:00
"github.com/flosch/pongo2"
"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 05:44:49 +00:00
if !fileExistsAndNotExpired(fileName) {
notFoundHandler(c, w, r)
2015-09-24 05:44:49 +00:00
return
}
2015-09-29 23:00:16 +00:00
expiry, _ := metadataGetExpiry(fileName)
var expiryHuman string
if expiry != 0 {
expiryHuman = humanize.RelTime(time.Now(), time.Unix(expiry, 0), "", "")
}
sizeHuman := humanize.Bytes(uint64(fileInfo.Size()))
2015-09-29 01:41:07 +00:00
file, _ := os.Open(filePath)
header := make([]byte, 512)
file.Read(header)
file.Close()
2015-09-24 05:44:49 +00:00
2015-09-29 01:41:07 +00:00
mimetype := mimemagic.Match("", header)
2015-09-24 05:44:49 +00:00
if strings.EqualFold("application/json", r.Header.Get("Accept")) {
js, _ := json.Marshal(map[string]string{
"filename": fileName,
"mimetype": mimetype,
"expiry": strconv.FormatInt(expiry, 10),
"size": strconv.FormatInt(fileInfo.Size(), 10),
})
w.Write(js)
return
}
2015-09-24 05:44:49 +00: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 03:07:15 +00:00
} else if strings.HasPrefix(mimetype, "audio/") {
tpl = Templates["display/audio.html"]
2015-09-28 03:07:15 +00:00
} else if mimetype == "application/pdf" {
tpl = Templates["display/pdf.html"]
2015-09-24 05:44:49 +00:00
} else {
tpl = Templates["display/file.html"]
2015-09-24 05:44:49 +00:00
}
err = tpl.ExecuteWriter(pongo2.Context{
"mime": mimetype,
"filename": fileName,
2015-09-29 23:00:16 +00:00
"size": sizeHuman,
"expiry": expiryHuman,
2015-09-24 05:44:49 +00:00
}, w)
if err != nil {
oopsHandler(c, w, r)
2015-09-24 05:44:49 +00:00
}
}