2020-02-10 13:10:59 +08:00
|
|
|
package explorer
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"github.com/HFO4/cloudreve/pkg/filesystem"
|
|
|
|
"github.com/HFO4/cloudreve/pkg/serializer"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ItemSearchService 文件搜索服务
|
|
|
|
type ItemSearchService struct {
|
|
|
|
Type string `uri:"type" binding:"required"`
|
|
|
|
Keywords string `uri:"keywords" binding:"required"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Search 执行搜索
|
|
|
|
func (service *ItemSearchService) Search(c *gin.Context) serializer.Response {
|
|
|
|
// 创建文件系统
|
|
|
|
fs, err := filesystem.NewFileSystemFromContext(c)
|
|
|
|
if err != nil {
|
|
|
|
return serializer.Err(serializer.CodePolicyNotAllowed, err.Error(), err)
|
|
|
|
}
|
|
|
|
defer fs.Recycle()
|
|
|
|
|
|
|
|
switch service.Type {
|
|
|
|
case "keywords":
|
2020-02-11 11:13:20 +08:00
|
|
|
return service.SearchKeywords(c, fs, "%"+service.Keywords+"%")
|
|
|
|
case "image":
|
|
|
|
return service.SearchKeywords(c, fs, "%.bmp", "%.flac", "%.iff", "%.png", "%.gif", "%.jpg", "%.jpge", "%.psd", "%.svg", "%.webp")
|
|
|
|
case "video":
|
|
|
|
return service.SearchKeywords(c, fs, "%.mp4", "%.flv", "%.avi", "%.wmv", "%.mkv", "%.rm", "%.rmvb", "%.mov", "%.ogv")
|
|
|
|
case "audio":
|
|
|
|
return service.SearchKeywords(c, fs, "%.mp3", "%.flac", "%.ape", "%.wav", "%.acc", "%.ogg", "%.midi", "%.mid")
|
|
|
|
case "doc":
|
|
|
|
return service.SearchKeywords(c, fs, "%.txt", "%.md", "%.pdf", "%.doc", "%.docx", "%.ppt", "%.pptx", "%.xls", "%.xlsx", "%.pub")
|
2020-02-10 13:10:59 +08:00
|
|
|
default:
|
|
|
|
return serializer.ParamErr("未知搜索类型", nil)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SearchKeywords 根据关键字搜索文件
|
2020-02-11 11:13:20 +08:00
|
|
|
func (service *ItemSearchService) SearchKeywords(c *gin.Context, fs *filesystem.FileSystem, keywords ...interface{}) serializer.Response {
|
2020-02-10 13:10:59 +08:00
|
|
|
// 上下文
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
// 获取子项目
|
2020-02-11 11:13:20 +08:00
|
|
|
objects, err := fs.Search(ctx, keywords...)
|
2020-02-10 13:10:59 +08:00
|
|
|
if err != nil {
|
|
|
|
return serializer.Err(serializer.CodeNotSet, err.Error(), err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return serializer.Response{
|
|
|
|
Code: 0,
|
|
|
|
Data: map[string]interface{}{
|
|
|
|
"parent": 0,
|
|
|
|
"objects": objects,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|