summaryrefslogtreecommitdiff
path: root/app/app.go
diff options
context:
space:
mode:
authorgabek <gabek@noreply@mills.io>2022-08-25 23:17:24 +0000
committerJames Mills <james@mills.io>2022-08-25 23:17:24 +0000
commit1791533e0eae20edcec453d319a9ec0d8db063e8 (patch)
tree1f7f5f1e3a29cb137b44123f812cc22426093f16 /app/app.go
parented8964ee7a606cf0e8ca5d6ffcf695f0eb9854c8 (diff)
Optionally require auth for the /upload endpoint (#23)
Reviewed-on: https://git.mills.io/prologic/tube/pulls/23 Co-authored-by: gabek <gabek@noreply@mills.io> Co-committed-by: gabek <gabek@noreply@mills.io>
Diffstat (limited to 'app/app.go')
-rw-r--r--app/app.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/app.go b/app/app.go
index aed83c6..f726e83 100644
--- a/app/app.go
+++ b/app/app.go
@@ -14,9 +14,11 @@ import (
"sort"
"strings"
+ "git.mills.io/prologic/tube/app/middleware"
"git.mills.io/prologic/tube/importers"
"git.mills.io/prologic/tube/media"
"git.mills.io/prologic/tube/utils"
+
rice "github.com/GeertJohan/go.rice"
"github.com/dustin/go-humanize"
"github.com/fsnotify/fsnotify"
@@ -95,9 +97,11 @@ func NewApp(cfg *Config) (*App, error) {
a.Templates.Add("import", importTemplate)
// Setup Router
+ authPassword := os.Getenv("auth_password")
+
r := mux.NewRouter().StrictSlash(true)
r.HandleFunc("/", a.indexHandler).Methods("GET", "OPTIONS")
- r.HandleFunc("/upload", a.uploadHandler).Methods("GET", "OPTIONS", "POST")
+ r.HandleFunc("/upload", middleware.OptionallyRequireAdminAuth(a.uploadHandler, authPassword)).Methods("GET", "OPTIONS", "POST")
r.HandleFunc("/import", a.importHandler).Methods("GET", "OPTIONS", "POST")
r.HandleFunc("/v/{id}.mp4", a.videoHandler).Methods("GET")
r.HandleFunc("/v/{prefix}/{id}.mp4", a.videoHandler).Methods("GET")