@@ -11,8 +11,10 @@ import (
11
11
"github.com/alist-org/alist/v3/internal/db"
12
12
"github.com/alist-org/alist/v3/internal/fs"
13
13
"github.com/alist-org/alist/v3/internal/model"
14
+ "github.com/alist-org/alist/v3/internal/op"
14
15
"github.com/alist-org/alist/v3/pkg/mq"
15
16
"github.com/alist-org/alist/v3/pkg/utils"
17
+ mapset "github.com/deckarep/golang-set/v2"
16
18
log "github.com/sirupsen/logrus"
17
19
)
18
20
22
24
)
23
25
24
26
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
- }
36
27
var (
28
+ err error
37
29
objCount uint64 = 0
38
30
fi model.Obj
39
31
)
@@ -154,3 +146,73 @@ func BuildIndex(ctx context.Context, indexPaths, ignorePaths []string, maxDepth
154
146
func Clear (ctx context.Context ) error {
155
147
return instance .Clear (ctx )
156
148
}
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
+ }
0 commit comments