You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package invoker
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"github.com/cloudreve/Cloudreve/v3/pkg/util"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
type DBScript interface {
|
|
|
|
Run(ctx context.Context)
|
|
|
|
}
|
|
|
|
|
|
|
|
var availableScripts = make(map[string]DBScript)
|
|
|
|
|
|
|
|
func RunDBScript(name string, ctx context.Context) error {
|
|
|
|
if script, ok := availableScripts[name]; ok {
|
|
|
|
util.Log().Info("开始执行数据库脚本 [%s]", name)
|
|
|
|
script.Run(ctx)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Errorf("数据库脚本 [%s] 不存在", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
func Register(name string, script DBScript) {
|
|
|
|
availableScripts[name] = script
|
|
|
|
}
|
|
|
|
|
|
|
|
func ListPrefix(prefix string) []string {
|
|
|
|
var scripts []string
|
|
|
|
for name := range availableScripts {
|
|
|
|
if strings.HasPrefix(name, prefix) {
|
|
|
|
scripts = append(scripts, name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return scripts
|
|
|
|
}
|