Skip to content

Commit ed149be

Browse files
authored
feat(index): add disable index option for storages (#7730)
1 parent 040dc14 commit ed149be

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

internal/model/storage.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
package model
22

3-
import "time"
3+
import (
4+
"time"
5+
)
46

57
type Storage struct {
68
ID uint `json:"id" gorm:"primaryKey"` // unique key
@@ -13,6 +15,7 @@ type Storage struct {
1315
Remark string `json:"remark"`
1416
Modified time.Time `json:"modified"`
1517
Disabled bool `json:"disabled"` // if disabled
18+
DisableIndex bool `json:"disable_index"`
1619
EnableSign bool `json:"enable_sign"`
1720
Sort
1821
Proxy

internal/op/driver.go

+6
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,12 @@ func getMainItems(config driver.Config) []driver.Item {
133133
Type: conf.TypeSelect,
134134
Options: "front,back",
135135
})
136+
items = append(items, driver.Item{
137+
Name: "disable_index",
138+
Type: conf.TypeBool,
139+
Default: "false",
140+
Required: true,
141+
})
136142
items = append(items, driver.Item{
137143
Name: "enable_sign",
138144
Type: conf.TypeBool,

internal/search/build.go

+5
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,11 @@ func BuildIndex(ctx context.Context, indexPaths, ignorePaths []string, maxDepth
157157
return filepath.SkipDir
158158
}
159159
}
160+
if storage, _, err := op.GetStorageAndActualPath(indexPath); err == nil {
161+
if storage.GetStorage().DisableIndex {
162+
return filepath.SkipDir
163+
}
164+
}
160165
// ignore root
161166
if indexPath == "/" {
162167
return nil

0 commit comments

Comments
 (0)