mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
Search by type
Former-commit-id: 6d0ea8a6b661cef0a456c622d0a4b8fa6252f562 [formerly 135ecb5636bb5ced2eb4f21c104b6d34bc4d267f] [formerly c62017f660b5ee6acddab0e35a97d03a18e2668d [formerly a3447bf232
]]
Former-commit-id: ad0aaa54b887fdabed54127113fee389255b3621 [formerly 1aeda20fcdb5e6f172b8ce5f6df8e5585aeca9da]
Former-commit-id: 72c5bb017241c7f5fcfafd9aae7d79f0f527515a
This commit is contained in:
parent
38ef96b5f3
commit
4b2caeabd0
114
websockets.go
114
websockets.go
@ -2,10 +2,12 @@ package filemanager
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
"mime"
|
||||||
"net/http"
|
"net/http"
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
"regexp"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@ -135,14 +137,50 @@ func command(c *RequestContext, w http.ResponseWriter, r *http.Request) (int, er
|
|||||||
return 0, nil
|
return 0, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var (
|
||||||
|
typeRegexp = regexp.MustCompile(`type:(\w+)`)
|
||||||
|
)
|
||||||
|
|
||||||
|
type condition func(path string) bool
|
||||||
|
|
||||||
type searchOptions struct {
|
type searchOptions struct {
|
||||||
CaseInsensitive bool
|
CaseInsensitive bool
|
||||||
|
Conditions []condition
|
||||||
Terms []string
|
Terms []string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func extensionCondition(extension string) condition {
|
||||||
|
return func(path string) bool {
|
||||||
|
return filepath.Ext(path) == "."+extension
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func imageCondition(path string) bool {
|
||||||
|
extension := filepath.Ext(path)
|
||||||
|
mimetype := mime.TypeByExtension(extension)
|
||||||
|
|
||||||
|
return strings.HasPrefix(mimetype, "image")
|
||||||
|
}
|
||||||
|
|
||||||
|
func audioCondition(path string) bool {
|
||||||
|
extension := filepath.Ext(path)
|
||||||
|
mimetype := mime.TypeByExtension(extension)
|
||||||
|
|
||||||
|
return strings.HasPrefix(mimetype, "audio")
|
||||||
|
}
|
||||||
|
|
||||||
|
func videoCondition(path string) bool {
|
||||||
|
extension := filepath.Ext(path)
|
||||||
|
mimetype := mime.TypeByExtension(extension)
|
||||||
|
|
||||||
|
return strings.HasPrefix(mimetype, "video")
|
||||||
|
}
|
||||||
|
|
||||||
func parseSearch(value string) *searchOptions {
|
func parseSearch(value string) *searchOptions {
|
||||||
opts := &searchOptions{
|
opts := &searchOptions{
|
||||||
CaseInsensitive: strings.Contains(value, "case:insensitive"),
|
CaseInsensitive: strings.Contains(value, "case:insensitive"),
|
||||||
|
Conditions: []condition{},
|
||||||
|
Terms: []string{},
|
||||||
}
|
}
|
||||||
|
|
||||||
// removes the options from the value
|
// removes the options from the value
|
||||||
@ -150,10 +188,41 @@ func parseSearch(value string) *searchOptions {
|
|||||||
value = strings.Replace(value, "case:sensitive", "", -1)
|
value = strings.Replace(value, "case:sensitive", "", -1)
|
||||||
value = strings.TrimSpace(value)
|
value = strings.TrimSpace(value)
|
||||||
|
|
||||||
|
types := typeRegexp.FindAllStringSubmatch(value, -1)
|
||||||
|
for _, t := range types {
|
||||||
|
if len(t) == 1 {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
switch t[1] {
|
||||||
|
case "image":
|
||||||
|
opts.Conditions = append(opts.Conditions, imageCondition)
|
||||||
|
case "audio", "music":
|
||||||
|
opts.Conditions = append(opts.Conditions, audioCondition)
|
||||||
|
case "video":
|
||||||
|
opts.Conditions = append(opts.Conditions, videoCondition)
|
||||||
|
default:
|
||||||
|
opts.Conditions = append(opts.Conditions, extensionCondition(t[1]))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(types) > 0 {
|
||||||
|
// Remove the fields from the search value.
|
||||||
|
value = typeRegexp.ReplaceAllString(value, "")
|
||||||
|
}
|
||||||
|
|
||||||
|
// If it's canse insensitive, put everything in lowercase.
|
||||||
if opts.CaseInsensitive {
|
if opts.CaseInsensitive {
|
||||||
value = strings.ToLower(value)
|
value = strings.ToLower(value)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Remove the spaces from the search value.
|
||||||
|
value = strings.TrimSpace(value)
|
||||||
|
|
||||||
|
if value == "" {
|
||||||
|
return opts
|
||||||
|
}
|
||||||
|
|
||||||
// if the value starts with " and finishes what that character, we will
|
// if the value starts with " and finishes what that character, we will
|
||||||
// only search for that term
|
// only search for that term
|
||||||
if value[0] == '"' && value[len(value)-1] == '"' {
|
if value[0] == '"' && value[len(value)-1] == '"' {
|
||||||
@ -211,24 +280,45 @@ func search(c *RequestContext, w http.ResponseWriter, r *http.Request) (int, err
|
|||||||
path = strings.TrimPrefix(path, scope)
|
path = strings.TrimPrefix(path, scope)
|
||||||
path = strings.TrimPrefix(path, "/")
|
path = strings.TrimPrefix(path, "/")
|
||||||
path = strings.Replace(path, "\\", "/", -1)
|
path = strings.Replace(path, "\\", "/", -1)
|
||||||
is := false
|
|
||||||
|
|
||||||
for _, term := range search.Terms {
|
// Only execute if there are conditions to meet.
|
||||||
if is {
|
if len(search.Conditions) > 0 {
|
||||||
break
|
match := false
|
||||||
|
|
||||||
|
for _, t := range search.Conditions {
|
||||||
|
if t(path) {
|
||||||
|
match = true
|
||||||
|
break
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if strings.Contains(path, term) {
|
// If doesn't meet the condition, go to the next.
|
||||||
if !c.User.Allowed(path) {
|
if !match {
|
||||||
return nil
|
return nil
|
||||||
}
|
|
||||||
|
|
||||||
is = true
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if !is {
|
if len(search.Terms) > 0 {
|
||||||
return nil
|
is := false
|
||||||
|
|
||||||
|
// Checks if matches the terms and if it is allowed.
|
||||||
|
for _, term := range search.Terms {
|
||||||
|
if is {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
if strings.Contains(path, term) {
|
||||||
|
if !c.User.Allowed(path) {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
is = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if !is {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return conn.WriteMessage(websocket.TextMessage, []byte(path))
|
return conn.WriteMessage(websocket.TextMessage, []byte(path))
|
||||||
|
Loading…
Reference in New Issue
Block a user