feat: add custom page handling for most media format
I haven't gotten text to work yet
This commit is contained in:
parent
44902c63b1
commit
9a440bf147
6
abyss.go
6
abyss.go
@ -87,16 +87,16 @@ func setupHandlers(mux *http.ServeMux, app *Application) {
|
|||||||
"/tree/",
|
"/tree/",
|
||||||
http.StripPrefix(
|
http.StripPrefix(
|
||||||
"/tree",
|
"/tree",
|
||||||
app.basicAuth(app.fileListingHandler),
|
BasicAuth(app.fileListingHandler, app),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
mux.HandleFunc("/last", app.lastUploadedHandler)
|
mux.HandleFunc("/last", app.lastUploadedHandler)
|
||||||
|
|
||||||
mux.HandleFunc("/test", app.displayFile)
|
mux.HandleFunc("/files/", app.fileHandler)
|
||||||
|
|
||||||
if app.authText == "yes" {
|
if app.authText == "yes" {
|
||||||
mux.HandleFunc("/upload", app.basicAuth(app.uploadHandler))
|
mux.HandleFunc("/upload", BasicAuth(app.uploadHandler, app))
|
||||||
slog.Warn("text uploading through the browser will be restricted")
|
slog.Warn("text uploading through the browser will be restricted")
|
||||||
} else {
|
} else {
|
||||||
mux.HandleFunc("/upload", app.uploadHandler)
|
mux.HandleFunc("/upload", app.uploadHandler)
|
||||||
|
@ -9,21 +9,34 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
var extensions = map[string]string{
|
var extensions = map[string]string{
|
||||||
".sh": "text",
|
".mp4": "video", ".mkv": "video", ".webm": "video",
|
||||||
".mp4": "video",
|
|
||||||
".pdf": "pdf",
|
".pdf": "pdf",
|
||||||
".txt": "text",
|
|
||||||
".png": "image",
|
".png": "image", ".jpg": "image", ".jpeg": "image", ".webp": "image",
|
||||||
".jpg": "image",
|
|
||||||
".json": "text",
|
".sh": "text", ".bash": "text", ".zsh": "text",
|
||||||
|
".bat": "text", ".cmd": "text", ".ps1": "text",
|
||||||
|
".ini": "text", ".cfg": "text", ".conf": "text",
|
||||||
|
".toml": "text", ".yml": "text", ".yaml": "text",
|
||||||
|
".c": "text", ".cpp": "text", ".h": "text",
|
||||||
|
".go": "text", ".py": "text", ".js": "text",
|
||||||
|
".ts": "text", ".html": "text", ".htm": "text",
|
||||||
|
".xml": "text", ".css": "text", ".java": "text",
|
||||||
|
".rs": "text", ".rb": "text", ".php": "text",
|
||||||
|
".pl": "text", ".sql": "text", ".md": "text",
|
||||||
|
".log": "text", ".txt": "text", ".csv": "text",
|
||||||
|
".json": "text", ".env": "text", ".sum": "text",
|
||||||
|
".gitignore": "text", ".dockerfile": "text", ".Makefile": "text",
|
||||||
|
".rst": "text",
|
||||||
}
|
}
|
||||||
|
|
||||||
func displayFile(app *Application, file string, w http.ResponseWriter) {
|
func DisplayFile(app *Application, file string, w http.ResponseWriter) {
|
||||||
tmpl := template.Must(template.ParseFiles("templates/files.html"))
|
tmpl := template.Must(template.ParseFiles("templates/files.html"))
|
||||||
|
|
||||||
fileInfo := FileInfo{
|
fileInfo := FileInfo{
|
||||||
Name: file,
|
Name: file,
|
||||||
Path: app.url,
|
Path: filepath.Join(app.url, file),
|
||||||
Type: getType(file),
|
Type: getType(file),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
89
handlers.go
89
handlers.go
@ -1,8 +1,6 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"crypto/sha256"
|
|
||||||
"crypto/subtle"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"html/template"
|
"html/template"
|
||||||
"io"
|
"io"
|
||||||
@ -26,19 +24,6 @@ type Application struct {
|
|||||||
lastUploadedFile string
|
lastUploadedFile string
|
||||||
}
|
}
|
||||||
|
|
||||||
type FileInfo struct {
|
|
||||||
Name string
|
|
||||||
Path string
|
|
||||||
Size int64
|
|
||||||
FormattedSize string
|
|
||||||
Type string
|
|
||||||
}
|
|
||||||
|
|
||||||
type TemplateData struct {
|
|
||||||
Files []FileInfo
|
|
||||||
URL string
|
|
||||||
}
|
|
||||||
|
|
||||||
func (app *Application) fileListingHandler(w http.ResponseWriter, r *http.Request) {
|
func (app *Application) fileListingHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
dir := app.filesDir + r.URL.Path
|
dir := app.filesDir + r.URL.Path
|
||||||
|
|
||||||
@ -75,6 +60,20 @@ func (app *Application) fileListingHandler(w http.ResponseWriter, r *http.Reques
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (app *Application) fileHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
|
path := fmt.Sprintf(".%s", filepath.Clean(r.URL.Path))
|
||||||
|
|
||||||
|
if !filepath.IsLocal(path) {
|
||||||
|
http.Error(w, "Wrong url", http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if fileInfo, err := os.Stat(path); err == nil && !fileInfo.IsDir() {
|
||||||
|
http.ServeFile(w, r, path)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func (app *Application) indexHandler(w http.ResponseWriter, r *http.Request) {
|
func (app *Application) indexHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
if r.Method == http.MethodPost {
|
if r.Method == http.MethodPost {
|
||||||
app.uploadHandler(w, r)
|
app.uploadHandler(w, r)
|
||||||
@ -90,38 +89,7 @@ func (app *Application) indexHandler(w http.ResponseWriter, r *http.Request) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if fileInfo, err := os.Stat(path); err == nil && !fileInfo.IsDir() {
|
if fileInfo, err := os.Stat(path); err == nil && !fileInfo.IsDir() {
|
||||||
ext := filepath.Ext(path)
|
DisplayFile(app, "/"+path, w)
|
||||||
|
|
||||||
textExtensions := map[string]bool{
|
|
||||||
".sh": true, ".bash": true, ".zsh": true,
|
|
||||||
".bat": true, ".cmd": true, ".ps1": true,
|
|
||||||
".ini": true, ".cfg": true, ".conf": true,
|
|
||||||
".toml": true, ".yml": true, ".yaml": true,
|
|
||||||
".c": true, ".cpp": true, ".h": true,
|
|
||||||
".go": true, ".py": true, ".js": true,
|
|
||||||
".ts": true, ".html": true, ".htm": true,
|
|
||||||
".xml": true, ".css": true, ".java": true,
|
|
||||||
".rs": true, ".rb": true, ".php": true,
|
|
||||||
".pl": true, ".sql": true, ".md": true,
|
|
||||||
".log": true, ".txt": true, ".csv": true,
|
|
||||||
".json": true, ".env": true, ".sum": true,
|
|
||||||
".gitignore": true, ".dockerfile": true, ".Makefile": true,
|
|
||||||
".rst": true,
|
|
||||||
}
|
|
||||||
|
|
||||||
videoExtensions := map[string]bool{
|
|
||||||
".mkv": true,
|
|
||||||
}
|
|
||||||
|
|
||||||
if textExtensions[ext] {
|
|
||||||
w.Header().Set("Content-Type", "text/plain; charset=utf-8")
|
|
||||||
}
|
|
||||||
|
|
||||||
if videoExtensions[ext] {
|
|
||||||
w.Header().Set("Content-Type", "video/mp4")
|
|
||||||
}
|
|
||||||
|
|
||||||
http.ServeFile(w, r, path)
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -151,33 +119,6 @@ func (app *Application) uploadHandler(w http.ResponseWriter, r *http.Request) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (app *Application) basicAuth(next http.HandlerFunc) http.HandlerFunc {
|
|
||||||
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
||||||
username, password, ok := r.BasicAuth()
|
|
||||||
if ok {
|
|
||||||
// hash password received
|
|
||||||
usernameHash := sha256.Sum256([]byte(username))
|
|
||||||
passwordHash := sha256.Sum256([]byte(password))
|
|
||||||
|
|
||||||
// hash our password
|
|
||||||
expectedUsernameHash := sha256.Sum256([]byte(app.auth.username))
|
|
||||||
expectedPasswordHash := sha256.Sum256([]byte(app.auth.password))
|
|
||||||
|
|
||||||
// compare hashes
|
|
||||||
usernameMatch := (subtle.ConstantTimeCompare(usernameHash[:], expectedUsernameHash[:]) == 1)
|
|
||||||
passwordMatch := (subtle.ConstantTimeCompare(passwordHash[:], expectedPasswordHash[:]) == 1)
|
|
||||||
|
|
||||||
if usernameMatch && passwordMatch {
|
|
||||||
next.ServeHTTP(w, r)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
w.Header().Set("WWW-Authenticate", `Basic realm="restricted", charset="UTF-8`)
|
|
||||||
http.Error(w, "Unauthorized", http.StatusUnauthorized)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
func (app *Application) formHandler(w http.ResponseWriter, r *http.Request) {
|
func (app *Application) formHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
content := r.FormValue("content")
|
content := r.FormValue("content")
|
||||||
|
|
||||||
|
43
helpers.go
43
helpers.go
@ -2,6 +2,8 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"crypto/md5"
|
"crypto/md5"
|
||||||
|
"crypto/sha256"
|
||||||
|
"crypto/subtle"
|
||||||
"encoding/hex"
|
"encoding/hex"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
@ -9,6 +11,20 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type FileInfo struct {
|
||||||
|
Name string
|
||||||
|
Path string
|
||||||
|
Size int64
|
||||||
|
FormattedSize string
|
||||||
|
Type string
|
||||||
|
Content string
|
||||||
|
}
|
||||||
|
|
||||||
|
type TemplateData struct {
|
||||||
|
Files []FileInfo
|
||||||
|
URL string
|
||||||
|
}
|
||||||
|
|
||||||
func CheckAuth(r *http.Request, key string) bool {
|
func CheckAuth(r *http.Request, key string) bool {
|
||||||
return r.Header.Get("X-Auth") == key
|
return r.Header.Get("X-Auth") == key
|
||||||
}
|
}
|
||||||
@ -49,3 +65,30 @@ func SaveFile(name string, file io.Reader) error {
|
|||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func BasicAuth(next http.HandlerFunc, app *Application) http.HandlerFunc {
|
||||||
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
username, password, ok := r.BasicAuth()
|
||||||
|
if ok {
|
||||||
|
// hash password received
|
||||||
|
usernameHash := sha256.Sum256([]byte(username))
|
||||||
|
passwordHash := sha256.Sum256([]byte(password))
|
||||||
|
|
||||||
|
// hash our password
|
||||||
|
expectedUsernameHash := sha256.Sum256([]byte(app.auth.username))
|
||||||
|
expectedPasswordHash := sha256.Sum256([]byte(app.auth.password))
|
||||||
|
|
||||||
|
// compare hashes
|
||||||
|
usernameMatch := (subtle.ConstantTimeCompare(usernameHash[:], expectedUsernameHash[:]) == 1)
|
||||||
|
passwordMatch := (subtle.ConstantTimeCompare(passwordHash[:], expectedPasswordHash[:]) == 1)
|
||||||
|
|
||||||
|
if usernameMatch && passwordMatch {
|
||||||
|
next.ServeHTTP(w, r)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
w.Header().Set("WWW-Authenticate", `Basic realm="restricted", charset="UTF-8`)
|
||||||
|
http.Error(w, "Unauthorized", http.StatusUnauthorized)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
@ -83,15 +83,15 @@
|
|||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<header>{{.Path}}/{{.Name}}</header>
|
<header>{{.Path}}</header>
|
||||||
<div class="content">
|
<div class="content">
|
||||||
{{if eq .Type "image"}}
|
{{if eq .Type "image"}}
|
||||||
<img src="/{{.Name}}" alt="Image" />
|
<img src="{{.Name}}" alt="Image" />
|
||||||
{{else if eq .Type "pdf"}}
|
{{else if eq .Type "pdf"}}
|
||||||
<embed src="/{{.Name}}" type="application/pdf" class="pdf-embed" />
|
<embed src="{{.Name}}" type="application/pdf" class="pdf-embed" />
|
||||||
{{else if eq .Type "video"}}
|
{{else if eq .Type "video"}}
|
||||||
<video controls>
|
<video controls>
|
||||||
<source src="/{{.Name}}" type="video/mp4" />
|
<source src="{{.Name}}" type="video/mp4" />
|
||||||
Your browser does not support the video tag.
|
Your browser does not support the video tag.
|
||||||
</video>
|
</video>
|
||||||
{{else if eq .Type "text"}}
|
{{else if eq .Type "text"}}
|
||||||
|
Loading…
Reference in New Issue
Block a user