* refactor:separate the setting method from the db package to the op package and add the cache * refactor:separate the meta method from the db package to the op package * fix:setting not load database data * refactor:separate the user method from the db package to the op package * refactor:remove user JoinPath error * fix:op package user cache * refactor:fs package list method * fix:tile virtual paths (close #2743) * Revert "refactor:remove user JoinPath error" This reverts commit 4e20daaf9e700da047000d4fd4900abbe05c3848. * clean path directly may lead to unknown behavior * fix: The path of the meta passed in must be prefix of reqPath * chore: rename all virtualPath to mountPath * fix: `getStoragesByPath` and `GetStorageVirtualFilesByPath` is_sub_path: /a/b isn't subpath of /a/bc * fix: don't save setting if hook error Co-authored-by: Noah Hsu <i@nn.ci>
99 lines
2.5 KiB
Go
99 lines
2.5 KiB
Go
package op
|
|
|
|
import (
|
|
"regexp"
|
|
"strings"
|
|
|
|
"github.com/alist-org/alist/v3/internal/conf"
|
|
"github.com/alist-org/alist/v3/internal/model"
|
|
"github.com/alist-org/alist/v3/pkg/utils"
|
|
"github.com/pkg/errors"
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
// Obj
|
|
type ObjsUpdateHook = func(parent string, objs []model.Obj)
|
|
|
|
var (
|
|
objsUpdateHooks = make([]ObjsUpdateHook, 0)
|
|
)
|
|
|
|
func RegisterObjsUpdateHook(hook ObjsUpdateHook) {
|
|
objsUpdateHooks = append(objsUpdateHooks, hook)
|
|
}
|
|
|
|
func HandleObjsUpdateHook(parent string, objs []model.Obj) {
|
|
for _, hook := range objsUpdateHooks {
|
|
hook(parent, objs)
|
|
}
|
|
}
|
|
|
|
// Setting
|
|
type SettingItemHook func(item *model.SettingItem) error
|
|
|
|
var settingItemHooks = map[string]SettingItemHook{
|
|
conf.VideoTypes: func(item *model.SettingItem) error {
|
|
conf.TypesMap[conf.VideoTypes] = strings.Split(item.Value, ",")
|
|
return nil
|
|
},
|
|
conf.AudioTypes: func(item *model.SettingItem) error {
|
|
conf.TypesMap[conf.AudioTypes] = strings.Split(item.Value, ",")
|
|
return nil
|
|
},
|
|
conf.ImageTypes: func(item *model.SettingItem) error {
|
|
conf.TypesMap[conf.ImageTypes] = strings.Split(item.Value, ",")
|
|
return nil
|
|
},
|
|
conf.TextTypes: func(item *model.SettingItem) error {
|
|
conf.TypesMap[conf.TextTypes] = strings.Split(item.Value, ",")
|
|
return nil
|
|
},
|
|
conf.ProxyTypes: func(item *model.SettingItem) error {
|
|
conf.TypesMap[conf.ProxyTypes] = strings.Split(item.Value, ",")
|
|
return nil
|
|
},
|
|
|
|
conf.PrivacyRegs: func(item *model.SettingItem) error {
|
|
regStrs := strings.Split(item.Value, "\n")
|
|
regs := make([]*regexp.Regexp, 0, len(regStrs))
|
|
for _, regStr := range regStrs {
|
|
reg, err := regexp.Compile(regStr)
|
|
if err != nil {
|
|
return errors.WithStack(err)
|
|
}
|
|
regs = append(regs, reg)
|
|
}
|
|
conf.PrivacyReg = regs
|
|
return nil
|
|
},
|
|
conf.FilenameCharMapping: func(item *model.SettingItem) error {
|
|
err := utils.Json.UnmarshalFromString(item.Value, &conf.FilenameCharMap)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
log.Debugf("filename char mapping: %+v", conf.FilenameCharMap)
|
|
return nil
|
|
},
|
|
}
|
|
|
|
func RegisterSettingItemHook(key string, hook SettingItemHook) {
|
|
settingItemHooks[key] = hook
|
|
}
|
|
|
|
func HandleSettingItemHook(item *model.SettingItem) (hasHook bool, err error) {
|
|
if hook, ok := settingItemHooks[item.Key]; ok {
|
|
return true, hook(item)
|
|
}
|
|
return false, nil
|
|
}
|
|
|
|
//func HandleSettingItemsHook(items []model.SettingItem) (err error) {
|
|
// for i := 0; i < len(items); i++ {
|
|
// _, err = HandleSettingItemHook(&items[i])
|
|
// if err != nil {
|
|
// return err
|
|
// }
|
|
// }
|
|
// return nil
|
|
//}
|