-
-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathscriptengine.go
133 lines (121 loc) · 2.59 KB
/
scriptengine.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
package decoder
import (
"bufio"
"bytes"
"crypto/md5"
"crypto/sha1"
"crypto/sha256"
"fmt"
"io"
"io/ioutil"
"os"
"path/filepath"
"strings"
"unicode"
"github.com/sipcapture/heplify-server/config"
)
// ScriptEngine interface
type ScriptEngine interface {
Run(hep *HEP) error
Close()
}
// NewScriptEngine returns a script interface
func NewScriptEngine() (ScriptEngine, error) {
switch strings.ToLower(config.Setting.ScriptEngine) {
case "lua":
return NewLuaEngine()
case "expr":
return NewExprEngine()
}
return nil, fmt.Errorf("unknown script engine %s", config.Setting.ScriptEngine)
}
func scanCode() ([]string, *bytes.Buffer, error) {
var files []string
buf := bytes.NewBuffer(nil)
path := config.Setting.ScriptFolder
if path != "" {
dir, err := ioutil.ReadDir(path)
if err != nil {
return nil, nil, err
}
for _, file := range dir {
if !file.IsDir() {
n := file.Name()
p := filepath.Join(path, n)
if strings.HasSuffix(n, ".lua") {
f, err := os.Open(p)
if err != nil {
return nil, nil, err
}
_, err = io.Copy(buf, f)
if err != nil {
return nil, nil, err
}
err = f.Close()
if err != nil {
return nil, nil, err
}
} else if strings.HasSuffix(n, ".expr") {
s, err := ioutil.ReadFile(p)
if err != nil {
return nil, nil, err
}
if len(s) > 4 {
files = append(files, string(s))
}
}
}
}
}
return files, buf, nil
}
func extractFunc(r io.Reader) []string {
var funcs []string
scanner := bufio.NewScanner(r)
for scanner.Scan() {
line := cutSpace(scanner.Text())
if strings.HasPrefix(line, "--") {
continue
}
if strings.HasPrefix(line, "function") {
if b, e := strings.Index(line, "("), strings.Index(line, ")"); b > -1 && e > -1 && b < e {
funcs = append(funcs, line[len("function"):e+1])
}
}
}
return funcs
}
func cutSpace(str string) string {
return strings.Map(func(r rune) rune {
if unicode.IsSpace(r) {
return -1
}
return r
}, str)
}
// HashString returns md5, sha1 or sha256 sum
func HashString(algo, s string) string {
switch algo {
case "md5":
return fmt.Sprintf("%x", md5.Sum([]byte(s)))
case "sha1":
return fmt.Sprintf("%x", sha1.Sum([]byte(s)))
case "sha256":
return fmt.Sprintf("%x", sha256.Sum256([]byte(s)))
}
return s
}
// HashTable is a simple kv store
func HashTable(op, key, val string) string {
switch op {
case "get":
if res := scriptCache.Get(nil, stb(key)); res != nil {
return string(res)
}
case "set":
scriptCache.Set(stb(key), stb(val))
case "del":
scriptCache.Del(stb(key))
}
return ""
}