ProfouzorsLinx/display.go

65 lines
1.4 KiB
Go
Raw Normal View History

2015-09-24 07:44:49 +02:00
package main
import (
"net/http"
"os"
"path"
"strings"
2015-09-30 01:00:16 +02:00
"time"
2015-09-24 07:44:49 +02:00
2015-09-29 03:41:07 +02:00
"bitbucket.org/taruti/mimemagic"
2015-09-30 01:00:16 +02:00
"github.com/dustin/go-humanize"
2015-09-24 07:44:49 +02: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 07:44:49 +02:00
if !fileExistsAndNotExpired(fileName) {
notFoundHandler(c, w, r)
2015-09-24 07:44:49 +02:00
return
}
2015-09-30 01:00:16 +02: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 03:41:07 +02:00
file, _ := os.Open(filePath)
header := make([]byte, 512)
file.Read(header)
file.Close()
2015-09-24 07:44:49 +02:00
2015-09-29 03:41:07 +02:00
mimetype := mimemagic.Match("", header)
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-30 01:00:16 +02:00
"size": sizeHuman,
"expiry": expiryHuman,
2015-09-24 07:44:49 +02:00
}, w)
if err != nil {
oopsHandler(c, w, r)
2015-09-24 07:44:49 +02:00
}
}