Allow toggling of page refreshInterval
This commit is contained in:
parent
a94b7e208d
commit
99ec1d7ebd
19
cmd/root.go
19
cmd/root.go
|
@ -6,13 +6,12 @@ package cmd
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"log"
|
"log"
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
ReleaseVersion string = "0.82.0"
|
ReleaseVersion string = "0.83.0"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
@ -33,7 +32,7 @@ var (
|
||||||
Prefix string
|
Prefix string
|
||||||
Profile bool
|
Profile bool
|
||||||
Recursive bool
|
Recursive bool
|
||||||
RefreshInterval string
|
RefreshInterval bool
|
||||||
Russian bool
|
Russian bool
|
||||||
Sorting bool
|
Sorting bool
|
||||||
Text bool
|
Text bool
|
||||||
|
@ -45,16 +44,6 @@ var (
|
||||||
Use: "roulette <path> [path]...",
|
Use: "roulette <path> [path]...",
|
||||||
Short: "Serves random media from the specified directories.",
|
Short: "Serves random media from the specified directories.",
|
||||||
Args: cobra.MinimumNArgs(1),
|
Args: cobra.MinimumNArgs(1),
|
||||||
PreRunE: func(cmd *cobra.Command, args []string) error {
|
|
||||||
if RefreshInterval != "" {
|
|
||||||
interval, err := time.ParseDuration(RefreshInterval)
|
|
||||||
if err != nil || interval < 500*time.Millisecond {
|
|
||||||
return ErrIncorrectRefreshInterval
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
},
|
|
||||||
RunE: func(cmd *cobra.Command, args []string) error {
|
RunE: func(cmd *cobra.Command, args []string) error {
|
||||||
err := ServePage(args)
|
err := ServePage(args)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -88,10 +77,10 @@ func init() {
|
||||||
rootCmd.Flags().Uint32Var(&MinimumFileCount, "minimum-files", 1, "skip directories with file counts below this value")
|
rootCmd.Flags().Uint32Var(&MinimumFileCount, "minimum-files", 1, "skip directories with file counts below this value")
|
||||||
rootCmd.Flags().Uint32Var(&PageLength, "page-length", 0, "pagination length for statistics and debug pages")
|
rootCmd.Flags().Uint32Var(&PageLength, "page-length", 0, "pagination length for statistics and debug pages")
|
||||||
rootCmd.Flags().Uint16VarP(&Port, "port", "p", 8080, "port to listen on")
|
rootCmd.Flags().Uint16VarP(&Port, "port", "p", 8080, "port to listen on")
|
||||||
rootCmd.Flags().StringVar(&Prefix, "prefix", "", "path with which to prefix all listeners (for reverse proxying)")
|
rootCmd.Flags().StringVar(&Prefix, "prefix", "/", "root path for http handlers (for reverse proxying)")
|
||||||
rootCmd.Flags().BoolVar(&Profile, "profile", false, "register net/http/pprof handlers")
|
rootCmd.Flags().BoolVar(&Profile, "profile", false, "register net/http/pprof handlers")
|
||||||
rootCmd.Flags().BoolVarP(&Recursive, "recursive", "r", false, "recurse into subdirectories")
|
rootCmd.Flags().BoolVarP(&Recursive, "recursive", "r", false, "recurse into subdirectories")
|
||||||
rootCmd.Flags().StringVar(&RefreshInterval, "refresh-interval", "", "force refresh interval equal to this duration (minimum 500ms)")
|
rootCmd.Flags().BoolVar(&RefreshInterval, "refresh-interval", false, "enable automatic page refresh via query parameter")
|
||||||
rootCmd.Flags().BoolVar(&Russian, "russian", false, "remove selected images after serving")
|
rootCmd.Flags().BoolVar(&Russian, "russian", false, "remove selected images after serving")
|
||||||
rootCmd.Flags().BoolVarP(&Sorting, "sort", "s", false, "enable sorting")
|
rootCmd.Flags().BoolVarP(&Sorting, "sort", "s", false, "enable sorting")
|
||||||
rootCmd.Flags().BoolVar(&Text, "text", false, "enable support for text files")
|
rootCmd.Flags().BoolVar(&Text, "text", false, "enable support for text files")
|
||||||
|
|
28
cmd/uri.go
28
cmd/uri.go
|
@ -14,18 +14,12 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
func refreshInterval(r *http.Request) (int64, string) {
|
func refreshInterval(r *http.Request) (int64, string) {
|
||||||
var interval string
|
interval := r.URL.Query().Get("refresh")
|
||||||
|
|
||||||
if RefreshInterval == "" {
|
|
||||||
interval = r.URL.Query().Get("refresh")
|
|
||||||
} else {
|
|
||||||
interval = RefreshInterval
|
|
||||||
}
|
|
||||||
|
|
||||||
duration, err := time.ParseDuration(interval)
|
duration, err := time.ParseDuration(interval)
|
||||||
|
|
||||||
switch {
|
switch {
|
||||||
case err != nil || duration == 0:
|
case err != nil || duration == 0 || !RefreshInterval:
|
||||||
return 0, "0ms"
|
return 0, "0ms"
|
||||||
case duration < 500*time.Millisecond:
|
case duration < 500*time.Millisecond:
|
||||||
return 500, "500ms"
|
return 500, "500ms"
|
||||||
|
@ -92,12 +86,20 @@ func generateQueryParams(filters *filters, sortOrder, refreshInterval string) st
|
||||||
hasParams = true
|
hasParams = true
|
||||||
}
|
}
|
||||||
|
|
||||||
if hasParams {
|
if RefreshInterval {
|
||||||
queryParams.WriteString("&")
|
if hasParams {
|
||||||
}
|
queryParams.WriteString("&")
|
||||||
queryParams.WriteString(fmt.Sprintf("refresh=%s", refreshInterval))
|
}
|
||||||
|
queryParams.WriteString(fmt.Sprintf("refresh=%s", refreshInterval))
|
||||||
|
|
||||||
return queryParams.String()
|
hasParams = true
|
||||||
|
}
|
||||||
|
|
||||||
|
if hasParams {
|
||||||
|
return queryParams.String()
|
||||||
|
}
|
||||||
|
|
||||||
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
func stripQueryParams(request string) (string, error) {
|
func stripQueryParams(request string) (string, error) {
|
||||||
|
|
10
cmd/web.go
10
cmd/web.go
|
@ -243,7 +243,7 @@ func serveMedia(paths []string, regexes *regexes, formats *types.Types) httprout
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
fileUri := Prefix + "/" + generateFileUri(path)
|
fileUri := Prefix + generateFileUri(path)
|
||||||
|
|
||||||
fileName := filepath.Base(path)
|
fileName := filepath.Base(path)
|
||||||
|
|
||||||
|
@ -385,9 +385,13 @@ func ServePage(args []string) error {
|
||||||
|
|
||||||
mux.PanicHandler = serverErrorHandler()
|
mux.PanicHandler = serverErrorHandler()
|
||||||
|
|
||||||
Prefix = strings.TrimSuffix(Prefix, "/")
|
if !strings.HasSuffix(Prefix, "/") {
|
||||||
|
Prefix = Prefix + "/"
|
||||||
|
}
|
||||||
|
|
||||||
register(mux, Prefix+"/", serveRoot(paths, regexes, cache, formats))
|
register(mux, Prefix, serveRoot(paths, regexes, cache, formats))
|
||||||
|
|
||||||
|
Prefix = strings.TrimSuffix(Prefix, "/")
|
||||||
|
|
||||||
if Prefix != "" {
|
if Prefix != "" {
|
||||||
register(mux, "/", redirectRoot())
|
register(mux, "/", redirectRoot())
|
||||||
|
|
Loading…
Reference in New Issue