roulette/cmd/web.go

210 lines
3.9 KiB
Go
Raw Normal View History

2022-09-08 15:12:06 +00:00
/*
Copyright © 2022 Seednode <seednode@seedno.de>
*/
package cmd
import (
"errors"
"fmt"
2022-09-08 15:12:06 +00:00
"io"
"log"
"net/http"
2022-09-08 20:30:51 +00:00
"net/url"
2022-09-08 15:57:59 +00:00
"os"
"path/filepath"
2022-09-08 15:12:06 +00:00
"strconv"
"strings"
"time"
2022-09-08 15:12:06 +00:00
)
const LOGDATE string = "2006-01-02T15:04:05.000000000-07:00"
const PREFIX string = "/src"
func refererToUri(referer string) string {
parts := strings.SplitAfterN(referer, "/", 4)
if len(parts) < 4 {
return ""
}
return "/" + parts[3]
}
2022-09-16 19:45:54 +00:00
func serveHtml(w http.ResponseWriter, r http.Request, filePath string) error {
fileName := filepath.Base(filePath)
w.Header().Add("Content-Type", "text/html")
htmlBody := `<html lang="en">
2022-09-08 15:12:06 +00:00
<head>
2022-09-08 20:30:51 +00:00
<style>img{max-width:100%;max-height:97vh;height:auto;}</style>
<title>`
htmlBody += fileName
htmlBody += `</title>
2022-09-08 15:12:06 +00:00
</head>
<body>
<a href="/"><img src="`
htmlBody += PREFIX + filePath
htmlBody += `"></img></a>
2022-09-09 00:11:07 +00:00
</body>
</html>`
_, err := io.WriteString(w, htmlBody)
if err != nil {
return err
}
2022-09-08 15:12:06 +00:00
return nil
2022-09-08 15:12:06 +00:00
}
2022-09-09 19:14:54 +00:00
func serveStaticFile(w http.ResponseWriter, r http.Request, paths []string) error {
request := r.RequestURI
prefixedFilePath, err := url.QueryUnescape(request)
2022-09-08 15:12:06 +00:00
if err != nil {
return err
2022-09-08 15:12:06 +00:00
}
filePath := strings.TrimPrefix(prefixedFilePath, PREFIX)
var matchesPrefix = false
for i := 0; i < len(paths); i++ {
if strings.HasPrefix(filePath, paths[i]) {
matchesPrefix = true
}
}
if matchesPrefix == false {
if Verbose {
fmt.Printf("%v Failed to serve file outside specified path(s): %v", time.Now().Format(LOGDATE), filePath)
}
2022-09-09 19:14:54 +00:00
http.NotFound(w, &r)
return nil
}
2022-09-08 15:12:06 +00:00
_, err = os.Stat(filePath)
if errors.Is(err, os.ErrNotExist) {
if Verbose {
fmt.Printf("%v Failed to serve non-existent file: %v", time.Now().Format(LOGDATE), filePath)
}
2022-09-09 19:14:54 +00:00
http.NotFound(w, &r)
return nil
} else if !errors.Is(err, os.ErrNotExist) && err != nil {
return err
}
var startTime time.Time
if Verbose {
startTime = time.Now()
2022-09-12 01:05:55 +00:00
fmt.Printf("%v Serving file: %v", startTime.Format(LOGDATE), filePath)
}
buf, err := os.ReadFile(filePath)
2022-09-08 15:12:06 +00:00
if err != nil {
return err
2022-09-08 15:12:06 +00:00
}
w.Write(buf)
if Verbose {
2022-09-12 01:48:52 +00:00
fmt.Printf(" (Finished in %v)\n", time.Now().Sub(startTime).Round(time.Microsecond))
}
return nil
2022-09-08 15:12:06 +00:00
}
func serveStaticFileHandler(paths []string) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
err := serveStaticFile(w, *r, paths)
if err != nil {
log.Fatal(err)
}
}
}
2022-09-16 19:45:54 +00:00
func serveHtmlHandler(paths []string) http.HandlerFunc {
2022-09-08 15:12:06 +00:00
return func(w http.ResponseWriter, r *http.Request) {
2022-09-08 20:30:51 +00:00
if r.RequestURI == "/" {
var filePath string
var err error
if Successive {
refererUri := refererToUri(r.Referer())
if refererUri != "" {
if Verbose {
fmt.Printf("Referer is %v\n", refererUri)
}
f, err := url.QueryUnescape(refererUri)
if err != nil {
log.Fatal(err)
}
filePath, err = getNextFile(f)
if err != nil {
log.Fatal(err)
}
}
}
if filePath == "" {
filePath, err = pickFile(paths)
if err != nil {
log.Fatal(err)
}
2022-09-08 20:30:51 +00:00
}
newUrl := r.URL.Host + filePath
http.Redirect(w, r, newUrl, http.StatusSeeOther)
} else {
filePath, err := url.QueryUnescape(r.RequestURI)
2022-09-08 20:30:51 +00:00
if err != nil {
log.Fatal(err)
2022-09-08 20:30:51 +00:00
}
isImage, err := checkIfImage(filePath)
if err != nil {
http.NotFound(w, r)
}
if isImage {
2022-09-16 19:45:54 +00:00
err := serveHtml(w, *r, filePath)
if err != nil {
log.Fatal(err)
}
}
2022-09-08 20:30:51 +00:00
}
2022-09-08 15:12:06 +00:00
}
}
func doNothing(http.ResponseWriter, *http.Request) {}
2022-09-08 15:57:59 +00:00
func ServePage(args []string) {
paths, err := normalizePaths(args)
if err != nil {
log.Fatal(err)
}
2022-09-08 20:30:51 +00:00
for _, i := range paths {
fmt.Println("Paths: " + i)
}
2022-09-16 19:45:54 +00:00
http.HandleFunc("/", serveHtmlHandler(paths))
http.Handle(PREFIX+"/", http.StripPrefix(PREFIX, serveStaticFileHandler(paths)))
2022-09-08 15:12:06 +00:00
http.HandleFunc("/favicon.ico", doNothing)
port := strconv.Itoa(Port)
2022-09-16 19:45:54 +00:00
err = http.ListenAndServe(":"+port, nil)
if err != nil {
log.Fatal(err)
}
2022-09-08 15:12:06 +00:00
}