roulette/cmd/web.go

419 lines
7.9 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"
"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"
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, ",")
}
type appHandler func(http.ResponseWriter, *http.Request) error
func (fn appHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
if err := fn(w, r); err != nil {
http.Error(w, err.Error(), 500)
}
}
func notFound(w http.ResponseWriter, r *http.Request) error {
w.WriteHeader(404)
w.Header().Add("Content-Type", "text/html")
htmlBody := `<html lang="en">
<head>
<style>
a{display:block;height:100%;width:100%;text-decoration:none;color:inherit;cursor:auto;}
</style>
<title>
Not Found
</title>
</head>
<body>
<a href="/">404 page not found</a>
</body>
</html>`
_, err := io.WriteString(w, htmlBody)
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, error) {
refresh, err := strconv.Atoi(refreshInterval)
if err != nil {
return "", err
}
var hasParams bool
var queryParams string
if Filter || Sort || (refresh != 0) {
queryParams += "?"
}
if Filter {
queryParams += "include="
if filters.HasIncludes() {
queryParams += filters.GetIncludes()
}
queryParams += "&exclude="
if filters.HasExcludes() {
queryParams += filters.GetExcludes()
}
hasParams = true
}
if Sort {
if hasParams {
queryParams += "&"
}
queryParams += fmt.Sprintf("sort=%v", sortOrder)
hasParams = true
}
if refresh != 0 {
if hasParams {
queryParams += "&"
}
queryParams += fmt.Sprintf("refresh=%v", refresh)
}
return queryParams, nil
}
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, dimensions string, 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, err := generateQueryParams(filters, r.URL.Query().Get("sort"), refreshInterval)
htmlBody := `<html lang="en">
2022-09-08 15:12:06 +00:00
<head>
<style>
a{display:block;height:100%;width:100%;text-decoration:none}
img{max-width:100%;max-height:97vh;height:auto;}
</style>
<title>`
htmlBody += fmt.Sprintf("%v (%v)", fileName, dimensions)
htmlBody += `</title>
2022-09-08 15:12:06 +00:00
</head>
<body>
2022-11-10 03:25:04 +00:00
<a href="/`
htmlBody += queryParams
htmlBody += `"><img src="`
htmlBody += generateFilePath(filePath)
htmlBody += `"></img></a>`
if refreshInterval != "0" {
r, err := strconv.Atoi(refreshInterval)
if err != nil {
return err
}
refreshTimer := strconv.Itoa(r * 1000)
2022-11-10 03:25:04 +00:00
htmlBody += `
<script>
setTimeout(function(){
window.location.href = '`
htmlBody += fmt.Sprintf("/%v", queryParams)
htmlBody += `';
},`
htmlBody += fmt.Sprintf("%v);\n", refreshTimer)
2022-11-10 03:25:04 +00:00
htmlBody += ` </script>`
}
2022-11-10 03:25:04 +00:00
htmlBody += `
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
}
func serveStaticFile(w http.ResponseWriter, r *http.Request, paths []string) error {
prefixedFilePath, err := stripQueryParams(r.URL.Path)
if err != nil {
return err
}
2022-10-25 05:06:57 +00:00
filePath, err := filepath.EvalSymlinks(strings.TrimPrefix(prefixedFilePath, PREFIX))
if err != nil {
return err
}
if !pathIsValid(filePath, paths) {
notFound(w, r)
}
2022-09-08 15:12:06 +00:00
exists, err := fileExists(filePath)
if err != nil {
return err
}
if !exists {
notFound(w, r)
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) appHandler {
return func(w http.ResponseWriter, r *http.Request) error {
err := serveStaticFile(w, r, paths)
if err != nil {
return err
}
return nil
}
}
func serveHtmlHandler(paths []string, re regexp.Regexp, fileCache *[]string) appHandler {
return func(w http.ResponseWriter, r *http.Request) error {
refererUri, err := stripQueryParams(refererToUri(r.Referer()))
if err != nil {
return 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 {
return err
}
}
if filePath == "" {
filePath, err = getNewFile(paths, &filters, sortOrder, re, fileCache)
switch {
case err != nil && err == ErrNoImagesFound:
http.NotFound(w, r)
case err != nil:
return err
}
}
queryParams, err := generateQueryParams(&filters, sortOrder, refreshInterval)
if err != nil {
return err
}
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 {
return err
}
if !exists {
notFound(w, r)
}
image, err := isImage(filePath)
if err != nil {
return err
}
if !image {
notFound(w, r)
}
dimensions, err := getImageDimensions(filePath)
if err != nil {
return err
}
err = serveHtml(w, r, filePath, dimensions, &filters)
if err != nil {
return err
}
2022-09-08 20:30:51 +00:00
}
return nil
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))
2022-10-23 21:29:58 +00:00
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
}