ProfouzorsLinx/display.go

131 lines
3.2 KiB
Go
Raw Normal View History

2015-09-24 07:44:49 +02:00
package main
import (
"encoding/json"
2015-09-30 18:06:23 +02:00
"io/ioutil"
2015-09-24 07:44:49 +02:00
"net/http"
"os"
"path"
2015-09-30 18:06:23 +02:00
"path/filepath"
"strconv"
2015-09-24 07:44:49 +02:00
"strings"
2015-09-30 01:00:16 +02:00
"time"
2015-09-24 07:44:49 +02:00
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"
2015-10-07 21:00:42 +02:00
"github.com/microcosm-cc/bluemonday"
"github.com/russross/blackfriday"
2015-09-24 07:44:49 +02:00
"github.com/zenazn/goji/web"
)
const maxDisplayFileSizeBytes = 1024 * 512
2015-09-24 07:44:49 +02:00
func fileDisplayHandler(c web.C, w http.ResponseWriter, r *http.Request) {
fileName := c.URLParams["name"]
filePath := path.Join(Config.filesDir, fileName)
2015-09-24 07:44:49 +02:00
err := checkFile(fileName)
if err == NotFoundErr {
notFoundHandler(c, w, r)
2015-09-24 07:44:49 +02:00
return
}
metadata, err := metadataRead(fileName)
if err != nil {
oopsHandler(c, w, r, RespAUTO, "Corrupt metadata.")
return
}
2015-09-30 01:00:16 +02:00
var expiryHuman string
if metadata.Expiry != neverExpire {
expiryHuman = humanize.RelTime(time.Now(), metadata.Expiry, "", "")
2015-09-30 01:00:16 +02:00
}
sizeHuman := humanize.Bytes(uint64(metadata.Size))
2015-09-30 18:06:23 +02:00
extra := make(map[string]string)
2015-10-15 18:24:23 +02:00
lines := []string{}
2015-09-30 01:00:16 +02:00
2015-09-29 03:41:07 +02:00
file, _ := os.Open(filePath)
defer file.Close()
2015-09-29 03:41:07 +02:00
header := make([]byte, 512)
file.Read(header)
2015-09-24 07:44:49 +02:00
2015-09-30 18:06:23 +02:00
extension := strings.TrimPrefix(filepath.Ext(fileName), ".")
2015-09-24 07:44:49 +02:00
if strings.EqualFold("application/json", r.Header.Get("Accept")) {
js, _ := json.Marshal(map[string]string{
"filename": fileName,
"expiry": strconv.FormatInt(metadata.Expiry.Unix(), 10),
"size": strconv.FormatInt(metadata.Size, 10),
"mimetype": metadata.Mimetype,
"sha256sum": metadata.Sha256sum,
})
w.Write(js)
return
}
2015-09-24 07:44:49 +02:00
var tpl *pongo2.Template
if strings.HasPrefix(metadata.Mimetype, "image/") {
tpl = Templates["display/image.html"]
} else if strings.HasPrefix(metadata.Mimetype, "video/") {
tpl = Templates["display/video.html"]
} else if strings.HasPrefix(metadata.Mimetype, "audio/") {
tpl = Templates["display/audio.html"]
} else if metadata.Mimetype == "application/pdf" {
tpl = Templates["display/pdf.html"]
2015-11-12 07:04:05 +01:00
} else if strings.HasPrefix(metadata.Mimetype, "text/") || supportedBinExtension(extension) {
if metadata.Size < maxDisplayFileSizeBytes {
2015-09-30 18:06:23 +02:00
bytes, err := ioutil.ReadFile(filePath)
if err == nil {
2015-09-30 18:06:23 +02:00
extra["extension"] = extension
extra["lang_hl"], extra["lang_ace"] = extensionToHlAndAceLangs(extension)
extra["contents"] = string(bytes)
tpl = Templates["display/bin.html"]
}
}
2015-10-15 18:24:23 +02:00
} else if extension == "story" {
if metadata.Size < maxDisplayFileSizeBytes {
bytes, err := ioutil.ReadFile(filePath)
if err == nil {
extra["contents"] = string(bytes)
lines = strings.Split(extra["contents"], "\n")
tpl = Templates["display/story.html"]
}
}
2015-10-07 21:00:42 +02:00
} else if extension == "md" {
if metadata.Size < maxDisplayFileSizeBytes {
2015-10-07 21:00:42 +02:00
bytes, err := ioutil.ReadFile(filePath)
if err == nil {
2015-10-07 21:00:42 +02:00
unsafe := blackfriday.MarkdownCommon(bytes)
html := bluemonday.UGCPolicy().SanitizeBytes(unsafe)
extra["contents"] = string(html)
tpl = Templates["display/md.html"]
}
}
}
2015-10-07 21:00:42 +02:00
// Catch other files
if tpl == nil {
tpl = Templates["display/file.html"]
2015-09-24 07:44:49 +02:00
}
err = tpl.ExecuteWriter(pongo2.Context{
"mime": metadata.Mimetype,
"filename": fileName,
2015-09-30 01:00:16 +02:00
"size": sizeHuman,
"expiry": expiryHuman,
2015-09-30 18:06:23 +02:00
"extra": extra,
2015-10-15 18:24:23 +02:00
"lines": lines,
"files": metadata.ArchiveFiles,
2015-09-24 07:44:49 +02:00
}, w)
if err != nil {
2015-10-04 18:47:20 +02:00
oopsHandler(c, w, r, RespHTML, "")
2015-09-24 07:44:49 +02:00
}
}