Added query param support for filtering
This commit is contained in:
parent
ed1ecfd278
commit
5b8bec54e8
105
cmd/files.go
105
cmd/files.go
|
@ -18,11 +18,24 @@ import (
|
||||||
"github.com/h2non/filetype"
|
"github.com/h2non/filetype"
|
||||||
)
|
)
|
||||||
|
|
||||||
func containsCaseIntensitive(a string, b string) bool {
|
var (
|
||||||
return strings.Contains(
|
ErrNoImagesFound = fmt.Errorf("no supported image formats found")
|
||||||
strings.ToLower(a),
|
)
|
||||||
strings.ToLower(b),
|
|
||||||
)
|
func appendPaths(paths []string, path, filter string) ([]string, error) {
|
||||||
|
absolutePath, err := filepath.Abs(path)
|
||||||
|
if err != nil {
|
||||||
|
return paths, err
|
||||||
|
}
|
||||||
|
|
||||||
|
switch {
|
||||||
|
case filter != "" && strings.Contains(path, filter):
|
||||||
|
paths = append(paths, absolutePath)
|
||||||
|
case filter == "":
|
||||||
|
paths = append(paths, absolutePath)
|
||||||
|
}
|
||||||
|
|
||||||
|
return paths, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func getFirstFile(path string) (string, error) {
|
func getFirstFile(path string) (string, error) {
|
||||||
|
@ -111,28 +124,32 @@ func checkIfImage(path string) (bool, error) {
|
||||||
return false, nil
|
return false, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func getFiles(path string) ([]string, error) {
|
func getFiles(path, filter string) ([]string, error) {
|
||||||
var paths []string
|
var paths []string
|
||||||
|
|
||||||
err := filepath.WalkDir(path, func(p string, info os.DirEntry, err error) error {
|
err := filepath.WalkDir(path, func(p string, info os.DirEntry, err error) error {
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
switch {
|
switch {
|
||||||
case info.IsDir() && p != path:
|
case !Recursive && info.IsDir() && p != path:
|
||||||
return filepath.SkipDir
|
return filepath.SkipDir
|
||||||
case Filter != "":
|
case Filter != "" && !info.IsDir():
|
||||||
absolutePath, err := filepath.Abs(p)
|
paths, err = appendPaths(paths, p, Filter)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
case filter != "" && !info.IsDir():
|
||||||
if containsCaseIntensitive(p, Filter) {
|
paths, err = appendPaths(paths, p, filter)
|
||||||
paths = append(paths, absolutePath)
|
if err != nil {
|
||||||
|
return err
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
absolutePath, err := filepath.Abs(p)
|
paths, err = appendPaths(paths, p, "")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
paths = append(paths, absolutePath)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return err
|
return err
|
||||||
|
@ -144,64 +161,24 @@ func getFiles(path string) ([]string, error) {
|
||||||
return paths, nil
|
return paths, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func getFilesRecursive(path string) ([]string, error) {
|
func getFileList(paths []string, filter string) ([]string, error) {
|
||||||
var paths []string
|
|
||||||
|
|
||||||
err := filepath.WalkDir(path, func(p string, info os.DirEntry, err error) error {
|
|
||||||
switch {
|
|
||||||
case Filter != "" && !info.IsDir():
|
|
||||||
absolutePath, err := filepath.Abs(p)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
if containsCaseIntensitive(p, Filter) {
|
|
||||||
paths = append(paths, absolutePath)
|
|
||||||
}
|
|
||||||
case Filter == "" && !info.IsDir():
|
|
||||||
absolutePath, err := filepath.Abs(p)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
paths = append(paths, absolutePath)
|
|
||||||
}
|
|
||||||
|
|
||||||
return err
|
|
||||||
})
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
return paths, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func getFileList(paths []string) ([]string, error) {
|
|
||||||
fileList := []string{}
|
fileList := []string{}
|
||||||
|
|
||||||
for i := 0; i < len(paths); i++ {
|
for i := 0; i < len(paths); i++ {
|
||||||
if Recursive {
|
|
||||||
f, err := getFilesRecursive(paths[i])
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
fileList = append(fileList, f...)
|
f, err := getFiles(paths[i], filter)
|
||||||
} else {
|
if err != nil {
|
||||||
f, err := getFiles(paths[i])
|
return nil, err
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
fileList = append(fileList, f...)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fileList = append(fileList, f...)
|
||||||
}
|
}
|
||||||
|
|
||||||
return fileList, nil
|
return fileList, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func pickFile(args []string) (string, error) {
|
func pickFile(args []string, filter string) (string, error) {
|
||||||
fileList, err := getFileList(args)
|
fileList, err := getFileList(args, filter)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
|
@ -221,9 +198,7 @@ func pickFile(args []string) (string, error) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
err = errors.New("no images found")
|
return "", ErrNoImagesFound
|
||||||
|
|
||||||
return "", err
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func normalizePaths(args []string) ([]string, error) {
|
func normalizePaths(args []string) ([]string, error) {
|
||||||
|
|
|
@ -10,7 +10,7 @@ import (
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
)
|
)
|
||||||
|
|
||||||
var Version = "0.9.0"
|
var Version = "0.10.0"
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
rootCmd.AddCommand(versionCmd)
|
rootCmd.AddCommand(versionCmd)
|
||||||
|
|
66
cmd/web.go
66
cmd/web.go
|
@ -22,6 +22,15 @@ const LOGDATE string = "2006-01-02T15:04:05.000000000-07:00"
|
||||||
|
|
||||||
const PREFIX string = "/src"
|
const PREFIX string = "/src"
|
||||||
|
|
||||||
|
func stripQueryParam(inUrl string) string {
|
||||||
|
u, err := url.Parse(inUrl)
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
u.RawQuery = ""
|
||||||
|
return u.String()
|
||||||
|
}
|
||||||
|
|
||||||
func refererToUri(referer string) string {
|
func refererToUri(referer string) string {
|
||||||
parts := strings.SplitAfterN(referer, "/", 4)
|
parts := strings.SplitAfterN(referer, "/", 4)
|
||||||
|
|
||||||
|
@ -44,8 +53,8 @@ func serveHtml(w http.ResponseWriter, r http.Request, filePath string) error {
|
||||||
htmlBody += fileName
|
htmlBody += fileName
|
||||||
htmlBody += `</title>
|
htmlBody += `</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>`
|
||||||
<a href="/"><img src="`
|
htmlBody += fmt.Sprintf(`"<a href="/?filter=%v"><img src="`, r.URL.Query().Get("filter"))
|
||||||
htmlBody += PREFIX + filePath
|
htmlBody += PREFIX + filePath
|
||||||
htmlBody += `"></img></a>
|
htmlBody += `"></img></a>
|
||||||
</body>
|
</body>
|
||||||
|
@ -60,11 +69,13 @@ func serveHtml(w http.ResponseWriter, r http.Request, filePath string) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
func serveStaticFile(w http.ResponseWriter, r http.Request, paths []string) error {
|
func serveStaticFile(w http.ResponseWriter, r http.Request, paths []string) error {
|
||||||
prefixedFilePath, err := url.QueryUnescape(r.RequestURI)
|
prefixedFilePath, err := url.QueryUnescape(stripQueryParam(r.URL.Path))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fmt.Println("Prefixed file path is " + prefixedFilePath)
|
||||||
|
|
||||||
filePath := strings.TrimPrefix(prefixedFilePath, PREFIX)
|
filePath := strings.TrimPrefix(prefixedFilePath, PREFIX)
|
||||||
|
|
||||||
var matchesPrefix = false
|
var matchesPrefix = false
|
||||||
|
@ -75,7 +86,7 @@ func serveStaticFile(w http.ResponseWriter, r http.Request, paths []string) erro
|
||||||
}
|
}
|
||||||
if !matchesPrefix {
|
if !matchesPrefix {
|
||||||
if Verbose {
|
if Verbose {
|
||||||
fmt.Printf("%v Failed to serve file outside specified path(s): %v", time.Now().Format(LOGDATE), filePath)
|
fmt.Printf("%v Failed to serve file outside specified path(s): %v\n", time.Now().Format(LOGDATE), filePath)
|
||||||
}
|
}
|
||||||
|
|
||||||
http.NotFound(w, &r)
|
http.NotFound(w, &r)
|
||||||
|
@ -86,7 +97,7 @@ func serveStaticFile(w http.ResponseWriter, r http.Request, paths []string) erro
|
||||||
_, err = os.Stat(filePath)
|
_, err = os.Stat(filePath)
|
||||||
if errors.Is(err, os.ErrNotExist) {
|
if errors.Is(err, os.ErrNotExist) {
|
||||||
if Verbose {
|
if Verbose {
|
||||||
fmt.Printf("%v Failed to serve non-existent file: %v", time.Now().Format(LOGDATE), filePath)
|
fmt.Printf("%v Failed to serve non-existent file: %v\n", time.Now().Format(LOGDATE), filePath)
|
||||||
}
|
}
|
||||||
|
|
||||||
http.NotFound(w, &r)
|
http.NotFound(w, &r)
|
||||||
|
@ -127,10 +138,12 @@ func serveStaticFileHandler(paths []string) http.HandlerFunc {
|
||||||
|
|
||||||
func serveHtmlHandler(paths []string) http.HandlerFunc {
|
func serveHtmlHandler(paths []string) http.HandlerFunc {
|
||||||
return func(w http.ResponseWriter, r *http.Request) {
|
return func(w http.ResponseWriter, r *http.Request) {
|
||||||
refererUri := refererToUri(r.Referer())
|
refererUri := stripQueryParam(refererToUri(r.Referer()))
|
||||||
|
|
||||||
|
filter := r.URL.Query().Get("filter")
|
||||||
|
|
||||||
switch {
|
switch {
|
||||||
case r.RequestURI == "/" && Successive && refererUri != "":
|
case r.URL.Path == "/" && Successive && refererUri != "":
|
||||||
query, err := url.QueryUnescape(refererUri)
|
query, err := url.QueryUnescape(refererUri)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
|
@ -142,8 +155,12 @@ func serveHtmlHandler(paths []string) http.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
if filePath == "" {
|
if filePath == "" {
|
||||||
filePath, err = pickFile(paths)
|
filePath, err = pickFile(paths, filter)
|
||||||
if err != nil {
|
switch {
|
||||||
|
case err != nil && err == ErrNoImagesFound:
|
||||||
|
http.NotFound(w, r)
|
||||||
|
return
|
||||||
|
case err != nil:
|
||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -153,11 +170,15 @@ func serveHtmlHandler(paths []string) http.HandlerFunc {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
newUrl := r.URL.Host + filePath
|
newUrl := fmt.Sprintf("%v%v?filter=%v", r.URL.Host, filePath, filter)
|
||||||
http.Redirect(w, r, newUrl, http.StatusSeeOther)
|
http.Redirect(w, r, newUrl, http.StatusSeeOther)
|
||||||
case r.RequestURI == "/" && Successive && refererUri == "":
|
case r.URL.Path == "/" && Successive && refererUri == "":
|
||||||
filePath, err := pickFile(paths)
|
filePath, err := pickFile(paths, filter)
|
||||||
if err != nil {
|
switch {
|
||||||
|
case err != nil && err == ErrNoImagesFound:
|
||||||
|
http.NotFound(w, r)
|
||||||
|
return
|
||||||
|
case err != nil:
|
||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -166,21 +187,22 @@ func serveHtmlHandler(paths []string) http.HandlerFunc {
|
||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
newUrl := r.URL.Host + filePath
|
newUrl := fmt.Sprintf("%v%v?filter=%v", r.URL.Host, filePath, filter)
|
||||||
http.Redirect(w, r, newUrl, http.StatusSeeOther)
|
http.Redirect(w, r, newUrl, http.StatusSeeOther)
|
||||||
case r.RequestURI == "/":
|
case r.URL.Path == "/":
|
||||||
filePath, err := pickFile(paths)
|
filePath, err := pickFile(paths, filter)
|
||||||
if err != nil {
|
switch {
|
||||||
|
case err != nil && err == ErrNoImagesFound:
|
||||||
|
http.NotFound(w, r)
|
||||||
|
return
|
||||||
|
case err != nil:
|
||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
newUrl := r.URL.Host + filePath
|
newUrl := fmt.Sprintf("%v%v?filter=%v", r.URL.Host, filePath, filter)
|
||||||
http.Redirect(w, r, newUrl, http.StatusSeeOther)
|
http.Redirect(w, r, newUrl, http.StatusSeeOther)
|
||||||
default:
|
default:
|
||||||
filePath, err := url.QueryUnescape(r.RequestURI)
|
filePath := r.URL.Path
|
||||||
if err != nil {
|
|
||||||
log.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
isImage, err := checkIfImage(filePath)
|
isImage, err := checkIfImage(filePath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in New Issue