107 lines
2.2 KiB
Go
107 lines
2.2 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"html/template"
|
|
"io/ioutil"
|
|
"log"
|
|
"net/http"
|
|
"path/filepath"
|
|
"strings"
|
|
)
|
|
|
|
var (
|
|
password = "hardcodedpassword"
|
|
lootPath = "Loot"
|
|
)
|
|
|
|
type PageData struct {
|
|
UIDs []string
|
|
Files []string
|
|
}
|
|
|
|
func main() {
|
|
http.HandleFunc("/", logMiddleware(loginHandler))
|
|
http.HandleFunc("/loot", logMiddleware(lootHandler))
|
|
http.HandleFunc("/logout", logMiddleware(logoutHandler))
|
|
http.HandleFunc("/files/", logMiddleware(fileHandler))
|
|
|
|
log.Fatal(http.ListenAndServe(":5647", nil))
|
|
fmt.Println("Server started")
|
|
}
|
|
|
|
func logMiddleware(next http.HandlerFunc) http.HandlerFunc {
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
log.Printf("[%s] %s %s\n", r.Method, r.RemoteAddr, r.URL.Path)
|
|
next(w, r)
|
|
}
|
|
}
|
|
|
|
func loginHandler(w http.ResponseWriter, r *http.Request) {
|
|
if r.Method != http.MethodPost {
|
|
renderTemplate(w, "login.html", nil)
|
|
return
|
|
}
|
|
|
|
if r.FormValue("password") == password {
|
|
http.Redirect(w, r, "/loot", http.StatusSeeOther)
|
|
return
|
|
}
|
|
|
|
renderTemplate(w, "login.html", "Incorrect password")
|
|
}
|
|
|
|
func lootHandler(w http.ResponseWriter, r *http.Request) {
|
|
if !isAuthenticated(r) {
|
|
http.Redirect(w, r, "/", http.StatusSeeOther)
|
|
return
|
|
}
|
|
|
|
uids, err := getDeviceUIDs()
|
|
if err != nil {
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
return
|
|
}
|
|
|
|
data := PageData{UIDs: uids}
|
|
renderTemplate(w, "loot.html", data)
|
|
}
|
|
|
|
func fileHandler(w http.ResponseWriter, r *http.Request) {
|
|
requestedPath := strings.TrimPrefix(r.URL.Path, "/files/")
|
|
filePath := filepath.Join(lootPath, requestedPath)
|
|
http.ServeFile(w, r, filePath)
|
|
}
|
|
|
|
func logoutHandler(w http.ResponseWriter, r *http.Request) {
|
|
http.Redirect(w, r, "/", http.StatusSeeOther)
|
|
}
|
|
|
|
func renderTemplate(w http.ResponseWriter, tmpl string, data interface{}) {
|
|
t, err := template.ParseFiles(tmpl)
|
|
if err != nil {
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
return
|
|
}
|
|
t.Execute(w, data)
|
|
}
|
|
|
|
func isAuthenticated(r *http.Request) bool {
|
|
return true
|
|
}
|
|
|
|
func getDeviceUIDs() ([]string, error) {
|
|
var uids []string
|
|
files, err := ioutil.ReadDir(lootPath)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
for _, file := range files {
|
|
if file.IsDir() {
|
|
uids = append(uids, file.Name())
|
|
}
|
|
}
|
|
return uids, nil
|
|
}
|
|
|