Skip to content

Commit bf8b6f4

Browse files
committed
feat: customize ignore paths of indexes
1 parent bd33c20 commit bf8b6f4

File tree

7 files changed

+120
-89
lines changed

7 files changed

+120
-89
lines changed

internal/bootstrap/data/setting.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,8 @@ func InitialSettings() []model.SettingItem {
131131

132132
// single settings
133133
{Key: conf.Token, Value: token, Type: conf.TypeString, Group: model.SINGLE, Flag: model.PRIVATE},
134-
{Key: conf.SearchIndex, Value: "none", Type: conf.TypeSelect, Options: "database,bleve,none", Group: model.SINGLE},
134+
{Key: conf.SearchIndex, Value: "none", Type: conf.TypeSelect, Options: "database,bleve,none", Group: model.INDEX},
135+
{Key: conf.IgnorePaths, Value: "", Type: conf.TypeText, Group: model.INDEX, Flag: model.PRIVATE, Help: `one path per line`},
135136
{Key: conf.IndexProgress, Value: "{}", Type: conf.TypeText, Group: model.SINGLE, Flag: model.PRIVATE},
136137
}
137138
if flags.Dev {

internal/conf/const.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,10 @@ const (
4141
PrivacyRegs = "privacy_regs"
4242
OcrApi = "ocr_api"
4343
FilenameCharMapping = "filename_char_mapping"
44-
SearchIndex = "search_index"
44+
45+
// index
46+
SearchIndex = "search_index"
47+
IgnorePaths = "ignore_paths"
4548

4649
// aria2
4750
Aria2Uri = "aria2_uri"

internal/model/setting.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
package model
22

33
const (
4-
SITE = iota
4+
SINGLE = iota
5+
SITE
56
STYLE
67
PREVIEW
78
GLOBAL
8-
SINGLE
99
ARIA2
10+
INDEX
1011
)
1112

1213
const (

internal/search/build.go

+73-11
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ import (
1111
"github.com/alist-org/alist/v3/internal/db"
1212
"github.com/alist-org/alist/v3/internal/fs"
1313
"github.com/alist-org/alist/v3/internal/model"
14+
"github.com/alist-org/alist/v3/internal/op"
1415
"github.com/alist-org/alist/v3/pkg/mq"
1516
"github.com/alist-org/alist/v3/pkg/utils"
17+
mapset "github.com/deckarep/golang-set/v2"
1618
log "github.com/sirupsen/logrus"
1719
)
1820

@@ -22,18 +24,8 @@ var (
2224
)
2325

2426
func BuildIndex(ctx context.Context, indexPaths, ignorePaths []string, maxDepth int, count bool) error {
25-
storages, err := db.GetEnabledStorages()
26-
if err != nil {
27-
return err
28-
}
29-
var skipDrivers = []string{"AList V2", "AList V3"}
30-
for _, storage := range storages {
31-
if utils.SliceContains(skipDrivers, storage.Driver) {
32-
// TODO: request for indexing permission
33-
ignorePaths = append(ignorePaths, storage.MountPath)
34-
}
35-
}
3627
var (
28+
err error
3729
objCount uint64 = 0
3830
fi model.Obj
3931
)
@@ -154,3 +146,73 @@ func BuildIndex(ctx context.Context, indexPaths, ignorePaths []string, maxDepth
154146
func Clear(ctx context.Context) error {
155147
return instance.Clear(ctx)
156148
}
149+
150+
func Update(parent string, objs []model.Obj) {
151+
if instance == nil || !instance.Config().AutoUpdate || Running.Load() {
152+
return
153+
}
154+
ignorePaths, err := GetIgnorePaths()
155+
if err != nil {
156+
log.Errorf("update search index error while get ignore paths: %+v", err)
157+
return
158+
}
159+
if isIgnorePath(parent, ignorePaths) {
160+
return
161+
}
162+
ctx := context.Background()
163+
// only update when index have built
164+
progress, err := Progress()
165+
if err != nil {
166+
log.Errorf("update search index error while get progress: %+v", err)
167+
return
168+
}
169+
if !progress.IsDone {
170+
return
171+
}
172+
nodes, err := instance.Get(ctx, parent)
173+
if err != nil {
174+
log.Errorf("update search index error while get nodes: %+v", err)
175+
return
176+
}
177+
now := mapset.NewSet[string]()
178+
for i := range objs {
179+
now.Add(objs[i].GetName())
180+
}
181+
old := mapset.NewSet[string]()
182+
for i := range nodes {
183+
old.Add(nodes[i].Name)
184+
}
185+
// delete data that no longer exists
186+
toDelete := old.Difference(now)
187+
toAdd := now.Difference(old)
188+
for i := range nodes {
189+
if toDelete.Contains(nodes[i].Name) {
190+
err = instance.Del(ctx, path.Join(parent, nodes[i].Name))
191+
if err != nil {
192+
log.Errorf("update search index error while del old node: %+v", err)
193+
return
194+
}
195+
}
196+
}
197+
for i := range objs {
198+
if toAdd.Contains(objs[i].GetName()) {
199+
err = Index(ctx, parent, objs[i])
200+
if err != nil {
201+
log.Errorf("update search index error while index new node: %+v", err)
202+
return
203+
}
204+
// build index if it's a folder
205+
if objs[i].IsDir() {
206+
err = BuildIndex(ctx, []string{path.Join(parent, objs[i].GetName())}, ignorePaths, -1, false)
207+
if err != nil {
208+
log.Errorf("update search index error while build index: %+v", err)
209+
return
210+
}
211+
}
212+
}
213+
}
214+
}
215+
216+
func init() {
217+
op.RegisterObjsUpdateHook(Update)
218+
}

internal/search/update.go

-73
This file was deleted.

internal/search/progress.go internal/search/util.go

+31
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
package search
22

33
import (
4+
"strings"
5+
46
"github.com/alist-org/alist/v3/internal/conf"
57
"github.com/alist-org/alist/v3/internal/db"
68
"github.com/alist-org/alist/v3/internal/model"
@@ -32,3 +34,32 @@ func WriteProgress(progress *model.IndexProgress) {
3234
log.Errorf("save progress error: %+v", err)
3335
}
3436
}
37+
38+
func GetIgnorePaths() ([]string, error) {
39+
storages, err := db.GetEnabledStorages()
40+
if err != nil {
41+
return nil, err
42+
}
43+
ignorePaths := make([]string, 0)
44+
var skipDrivers = []string{"AList V2", "AList V3"}
45+
for _, storage := range storages {
46+
if utils.SliceContains(skipDrivers, storage.Driver) {
47+
// TODO: request for indexing permission
48+
ignorePaths = append(ignorePaths, storage.MountPath)
49+
}
50+
}
51+
customIgnorePaths := setting.GetStr(conf.IgnorePaths)
52+
if customIgnorePaths != "" {
53+
ignorePaths = append(ignorePaths, strings.Split(customIgnorePaths, "\n")...)
54+
}
55+
return ignorePaths, nil
56+
}
57+
58+
func isIgnorePath(path string, ignorePaths []string) bool {
59+
for _, ignorePath := range ignorePaths {
60+
if strings.HasPrefix(path, ignorePath) {
61+
return true
62+
}
63+
}
64+
return false
65+
}

server/handles/index.go

+7-1
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,20 @@ func BuildIndex(c *gin.Context) {
2525
common.ErrorStrResp(c, "index is running", 400)
2626
return
2727
}
28+
ignorePaths, err := search.GetIgnorePaths()
29+
if err != nil {
30+
common.ErrorResp(c, err, 500)
31+
return
32+
}
33+
ignorePaths = append(ignorePaths, req.IgnorePaths...)
2834
go func() {
2935
ctx := context.Background()
3036
err := search.Clear(ctx)
3137
if err != nil {
3238
log.Errorf("clear index error: %+v", err)
3339
return
3440
}
35-
err = search.BuildIndex(context.Background(), req.Paths, req.IgnorePaths, req.MaxDepth, true)
41+
err = search.BuildIndex(context.Background(), req.Paths, ignorePaths, req.MaxDepth, true)
3642
if err != nil {
3743
log.Errorf("build index error: %+v", err)
3844
}

0 commit comments

Comments
 (0)