roulette/cmd/web.go

399 lines
8.1 KiB
Go
Raw Normal View History

2022-09-08 15:12:06 +00:00
/*
Copyright © 2022 Seednode <seednode@seedno.de>
*/
package cmd
import (
"fmt"
2022-09-08 15:12:06 +00:00
"io"
"log"
"math/rand"
2022-09-08 15:12:06 +00:00
"net/http"
2022-09-08 20:30:51 +00:00
"net/url"
2022-09-08 15:57:59 +00:00
"os"
"path/filepath"
"regexp"
2022-10-23 21:29:58 +00:00
"runtime"
2022-09-08 15:12:06 +00:00
"strconv"
"strings"
"time"
"github.com/yosssi/gohtml"
2022-09-08 15:12:06 +00:00
)
const (
LogDate string = `2006-01-02T15:04:05.000-07:00`
Prefix string = `/src`
RedirectStatusCode int = http.StatusSeeOther
)
type Filters struct {
Includes []string
Excludes []string
}
func (f *Filters) IsEmpty() bool {
return !(f.HasIncludes() && f.HasExcludes())
}
func (f *Filters) HasIncludes() bool {
return len(f.Includes) != 0
}
func (f *Filters) GetIncludes() string {
return strings.Join(f.Includes, ",")
}
func (f *Filters) HasExcludes() bool {
return len(f.Excludes) != 0
}
func (f *Filters) GetExcludes() string {
return strings.Join(f.Excludes, ",")
}
func notFound(w http.ResponseWriter, r *http.Request, filePath string) error {
startTime := time.Now()
if Verbose {
fmt.Printf("%v | Unavailable file %v requested by %v\n",
startTime.Format(LogDate),
filePath,
r.RemoteAddr,
)
}
w.WriteHeader(404)
w.Header().Add("Content-Type", "text/html")
var htmlBody strings.Builder
htmlBody.WriteString(`<!DOCTYPE html><html lang="en"><head>`)
htmlBody.WriteString(`<style>a{display:block;height:100%;width:100%;text-decoration:none;color:inherit;cursor:auto;}</style>`)
htmlBody.WriteString(`<title>Not Found</title></head>`)
htmlBody.WriteString(`<body><a href="/">404 page not found</a></body></html>`)
_, err := io.WriteString(w, gohtml.Format(htmlBody.String()))
if err != nil {
return err
}
return nil
}
func splitQueryParams(query string) []string {
if query == "" {
return []string{}
}
params := strings.Split(query, ",")
for i := 0; i < len(params); i++ {
params[i] = strings.ToLower(params[i])
}
return params
}
func generateQueryParams(filters *Filters, sortOrder, refreshInterval string) string {
var hasParams bool
var queryParams strings.Builder
queryParams.WriteString("?")
if Filter {
queryParams.WriteString("include=")
if filters.HasIncludes() {
queryParams.WriteString(filters.GetIncludes())
}
queryParams.WriteString("&exclude=")
if filters.HasExcludes() {
queryParams.WriteString(filters.GetExcludes())
}
hasParams = true
}
if Sort {
if hasParams {
queryParams.WriteString("&")
}
queryParams.WriteString(fmt.Sprintf("sort=%v", sortOrder))
hasParams = true
}
if hasParams {
queryParams.WriteString("&")
}
queryParams.WriteString(fmt.Sprintf("refresh=%v", refreshInterval))
return queryParams.String()
}
func stripQueryParams(u string) (string, error) {
uri, err := url.Parse(u)
if err != nil {
return "", err
}
uri.RawQuery = ""
escapedUri, err := url.QueryUnescape(uri.String())
if err != nil {
return "", err
}
if runtime.GOOS == "windows" {
return strings.TrimPrefix(escapedUri, "/"), nil
}
return escapedUri, nil
}
func generateFilePath(filePath string) string {
htmlBody := Prefix
2022-10-23 21:29:58 +00:00
if runtime.GOOS == "windows" {
htmlBody += "/"
2022-10-23 21:29:58 +00:00
}
htmlBody += filePath
2022-10-23 21:29:58 +00:00
return htmlBody
}
func refererToUri(referer string) string {
parts := strings.SplitAfterN(referer, "/", 4)
if len(parts) < 4 {
return ""
}
return "/" + parts[3]
}
func serveHtml(w http.ResponseWriter, r *http.Request, filePath string, dimensions *Dimensions, filters *Filters) error {
fileName := filepath.Base(filePath)
w.Header().Add("Content-Type", "text/html")
refreshInterval := r.URL.Query().Get("refresh")
if refreshInterval == "" {
refreshInterval = "0"
}
queryParams := generateQueryParams(filters, r.URL.Query().Get("sort"), refreshInterval)
var htmlBody strings.Builder
htmlBody.WriteString(`<!DOCTYPE html><html lang="en"><head>`)
htmlBody.WriteString(`<style>a{display:block;height:100%;width:100%;text-decoration:none;}`)
htmlBody.WriteString(`img{max-width:100%;max-height:97vh;object-fit:contain;}</style>`)
htmlBody.WriteString(fmt.Sprintf(`<title>%v (%vx%v)</title>`,
fileName,
dimensions.Width,
dimensions.Height))
htmlBody.WriteString(`</head><body>`)
htmlBody.WriteString(fmt.Sprintf(`<a href="/%v"><img src="%v" width="%v" height="%v" alt="Roulette selected: %v"></a>`,
queryParams,
generateFilePath(filePath),
dimensions.Width,
dimensions.Height,
fileName))
if refreshInterval != "0" {
r, err := strconv.Atoi(refreshInterval)
if err != nil {
return err
}
refreshTimer := strconv.Itoa(r * 1000)
htmlBody.WriteString(fmt.Sprintf(`<script>setTimeout(function(){window.location.href = '/%v';},%v);</script>`,
queryParams,
refreshTimer))
}
htmlBody.WriteString(`</body></html>`)
2022-09-09 00:11:07 +00:00
_, err := io.WriteString(w, gohtml.Format(htmlBody.String()))
if err != nil {
return err
}
2022-09-08 15:12:06 +00:00
return nil
2022-09-08 15:12:06 +00:00
}
func serveStaticFile(w http.ResponseWriter, r *http.Request, paths []string) error {
PrefixedFilePath, err := stripQueryParams(r.URL.Path)
if err != nil {
return err
}
filePath, err := filepath.EvalSymlinks(strings.TrimPrefix(PrefixedFilePath, Prefix))
2022-10-25 05:06:57 +00:00
if err != nil {
return err
}
if !pathIsValid(filePath, paths) {
notFound(w, r, filePath)
return nil
}
2022-09-08 15:12:06 +00:00
exists, err := fileExists(filePath)
if err != nil {
return err
}
if !exists {
notFound(w, r, filePath)
return nil
}
startTime := time.Now()
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 {
fmt.Printf("%v | Served %v (%v) to %v in %v\n",
startTime.Format(LogDate),
filePath,
humanReadableSize(len(buf)),
r.RemoteAddr,
time.Since(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)
}
}
}
func serveHtmlHandler(paths []string, re regexp.Regexp, fileCache *[]string) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
refererUri, err := stripQueryParams(refererToUri(r.Referer()))
if err != nil {
log.Fatal(err)
}
filters := Filters{}
filters.Includes = splitQueryParams(r.URL.Query().Get("include"))
filters.Excludes = splitQueryParams(r.URL.Query().Get("exclude"))
sortOrder := r.URL.Query().Get("sort")
refreshInterval := r.URL.Query().Get("refresh")
if refreshInterval == "" {
refreshInterval = "0"
}
if r.URL.Path == "/" {
var filePath string
var err error
if refererUri != "" {
filePath, err = getNextFile(refererUri, sortOrder, re)
if err != nil {
log.Fatal(err)
}
}
if filePath == "" {
filePath, err = getNewFile(paths, &filters, sortOrder, re, fileCache)
switch {
case err != nil && err == ErrNoImagesFound:
notFound(w, r, filePath)
return
case err != nil:
log.Fatal(err)
}
}
queryParams := generateQueryParams(&filters, sortOrder, refreshInterval)
2022-10-23 21:47:23 +00:00
newUrl := fmt.Sprintf("http://%v%v%v",
2022-10-23 21:29:58 +00:00
r.Host,
preparePath(filePath),
queryParams,
)
http.Redirect(w, r, newUrl, RedirectStatusCode)
} else {
2022-10-23 21:47:23 +00:00
filePath := r.URL.Path
if runtime.GOOS == "windows" {
filePath = strings.TrimPrefix(filePath, "/")
}
exists, err := fileExists(filePath)
if err != nil {
log.Fatal(err)
}
if !exists {
notFound(w, r, filePath)
return
}
image, err := isImage(filePath)
if err != nil {
log.Fatal(err)
}
if !image {
notFound(w, r, filePath)
return
}
dimensions, err := getImageDimensions(filePath)
if err != nil {
log.Fatal(err)
}
err = serveHtml(w, r, filePath, dimensions, &filters)
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) {}
func ServePage(args []string) error {
2022-10-25 05:06:57 +00:00
fmt.Printf("roulette v%v\n\n", Version)
2022-10-23 22:39:49 +00:00
paths, err := normalizePaths(args)
if err != nil {
return err
}
2022-09-08 20:30:51 +00:00
re := regexp.MustCompile(`(.+)([0-9]{3})(\..+)`)
rand.Seed(time.Now().UnixNano())
fileCache := []string{}
http.Handle("/", serveHtmlHandler(paths, *re, &fileCache))
http.Handle(Prefix+"/", http.StripPrefix(Prefix, serveStaticFileHandler(paths)))
2022-09-08 15:12:06 +00:00
http.HandleFunc("/favicon.ico", doNothing)
2022-10-18 21:54:01 +00:00
err = http.ListenAndServe(":"+strconv.FormatInt(int64(Port), 10), nil)
2022-09-16 19:45:54 +00:00
if err != nil {
return err
2022-09-16 19:45:54 +00:00
}
return nil
2022-09-08 15:12:06 +00:00
}