forked from YaoApp/yao
-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.go
42 lines (35 loc) · 841 Bytes
/
script.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package script
import (
"fmt"
"path/filepath"
"github.com/yaoapp/gou"
"github.com/yaoapp/kun/log"
"github.com/yaoapp/yao/config"
"github.com/yaoapp/yao/share"
)
// Load 加载共享库
func Load(cfg config.Config) error {
if share.BUILDIN {
return LoadBuildIn("scripts")
}
return LoadFrom(filepath.Join(cfg.Root, "scripts"))
}
// LoadBuildIn 从制品中读取
func LoadBuildIn(dir string) error {
return nil
}
// LoadFrom 从特定目录加载共享库
func LoadFrom(dir string) error {
if share.DirNotExists(dir) {
return fmt.Errorf("%s does not exists", dir)
}
// 加载共享脚本
err := share.Walk(dir, ".js", func(root, filename string) {
name := share.SpecName(root, filename)
err := gou.Yao.Load(filename, name)
if err != nil {
log.Error("加载脚本失败 %s", err.Error())
}
})
return err
}