update
This commit is contained in:
@@ -1,9 +1,4 @@
|
|||||||
# im:
|
# im:
|
||||||
# - type: qq
|
|
||||||
# masters:
|
|
||||||
# - 10000
|
|
||||||
# groups:
|
|
||||||
# - 100000000
|
|
||||||
# - type: tg
|
# - type: tg
|
||||||
# token: xxxxx
|
# token: xxxxx
|
||||||
# masters:
|
# masters:
|
||||||
@@ -1,11 +1,13 @@
|
|||||||
package core
|
package core
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"io"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
|
||||||
"github.com/astaxie/beego/logs"
|
"github.com/astaxie/beego/logs"
|
||||||
|
"github.com/beego/beego/v2/adapter/httplib"
|
||||||
"github.com/cdle/sillyGirl/im"
|
"github.com/cdle/sillyGirl/im"
|
||||||
"gopkg.in/yaml.v2"
|
"gopkg.in/yaml.v2"
|
||||||
)
|
)
|
||||||
@@ -20,6 +22,25 @@ var ExecPath, _ = filepath.Abs(filepath.Dir(os.Args[0]))
|
|||||||
var Config Yaml
|
var Config Yaml
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
confDir := ExecPath + "/conf"
|
||||||
|
if _, err := os.Stat(confDir); err != nil {
|
||||||
|
os.MkdirAll(confDir, os.ModePerm)
|
||||||
|
}
|
||||||
|
for _, name := range []string{"app.conf", "config.yaml", "reply.php"} {
|
||||||
|
f, err := os.OpenFile(ExecPath+"/conf/"+name, os.O_RDWR|os.O_CREATE, 0777)
|
||||||
|
if err != nil {
|
||||||
|
logs.Warn(err)
|
||||||
|
}
|
||||||
|
s, _ := ioutil.ReadAll(f)
|
||||||
|
if len(s) == 0 {
|
||||||
|
logs.Info("下载配置%s", name)
|
||||||
|
r, err := httplib.Get("https://ghproxy.com/" + "https://raw.githubusercontent.com/cdle/xdd/main/conf/demo_" + name).Response()
|
||||||
|
if err == nil {
|
||||||
|
io.Copy(f, r.Body)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
f.Close()
|
||||||
|
}
|
||||||
content, err := ioutil.ReadFile(ExecPath + "/conf/config.yaml")
|
content, err := ioutil.ReadFile(ExecPath + "/conf/config.yaml")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logs.Warn("解析config.yaml读取错误: %v", err)
|
logs.Warn("解析config.yaml读取错误: %v", err)
|
||||||
@@ -27,6 +48,7 @@ func init() {
|
|||||||
if yaml.Unmarshal(content, &Config) != nil {
|
if yaml.Unmarshal(content, &Config) != nil {
|
||||||
logs.Warn("解析config.yaml出错: %v", err)
|
logs.Warn("解析config.yaml出错: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
InitReplies()
|
InitReplies()
|
||||||
initToHandleMessage()
|
initToHandleMessage()
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user