-
Notifications
You must be signed in to change notification settings - Fork 0
/
modules.go
92 lines (79 loc) · 2.45 KB
/
modules.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
package main
import (
"io/ioutil"
"os"
"log"
"net/http"
"github.com/WheatleyHDD/BetterThanGhostlyBot/botmodule"
"github.com/WheatleyHDD/BetterThanGhostlyBot/globals"
"github.com/yuin/gopher-lua"
"github.com/cjoudrey/gluahttp"
"github.com/layeh/gopher-json"
"github.com/felipejfc/gluahttpscrape"
//d "github.com/SevereCloud/vksdk/v2/api"
)
func LoadModules() {
// Загружаем список модулей в папке
files := readDirUtil("modules")
for _, mod := range files {
// Работаем с каждой папкой по отдельности
// Проверяем папку на наличие стартового файла
if hasFile("modules/" + mod.Name(), "init.lua") {
// Кешируем наш модуль
L := lua.NewState()
L.PreloadModule("bot", botmodule.Loader)
L.PreloadModule("http", gluahttp.NewHttpModule(&http.Client{}).Loader)
L.PreloadModule("scrape", gluahttpscrape.NewHttpScrapeModule().Loader)
json.Preload(L)
if err := L.DoFile("modules/" + mod.Name() + "/init.lua"); err != nil {
panic(err)
}
globals.LoadedModules = append(globals.LoadedModules, L)
}
}
// Запускаем инициализацию
startInitFuncs()
}
func CloseModules() {
for _, L := range globals.LoadedModules {
// Закрываем каждый модуль
if err := L.CallByParam(lua.P{
Fn: L.GetGlobal("onClose"),
NRet: 0,
Protect: true,
}); err != nil {
log.Println(err)
}
L.Close()
}
}
func startInitFuncs() {
for _, L := range globals.LoadedModules {
if err := L.CallByParam(lua.P{
Fn: L.GetGlobal("onLoaded"),
NRet: 0,
Protect: true,
}); err != nil {
log.Println(err)
}
}
}
func hasFile(dir, file string) bool {
had := false
files := readDirUtil(dir)
for _, f := range files {
if f.Name() == file {
had = true
break
}
}
return had
}
func readDirUtil(dir string) []os.FileInfo {
files, err := ioutil.ReadDir(dir)
if err != nil {
// Если нихуя, то кидаем ошиб очку
log.Fatal(err) // Нихуя
}
return files
}