2017-04-21 18:20:35 +08:00
|
|
|
|
package commands
|
|
|
|
|
|
|
|
|
|
import (
|
2017-05-11 13:39:34 +08:00
|
|
|
|
"encoding/gob"
|
2018-03-24 17:24:02 +08:00
|
|
|
|
"flag"
|
2017-04-21 18:20:35 +08:00
|
|
|
|
"fmt"
|
2018-03-24 17:24:02 +08:00
|
|
|
|
"log"
|
2017-04-21 18:20:35 +08:00
|
|
|
|
"net/url"
|
2017-04-30 22:13:12 +08:00
|
|
|
|
"os"
|
2017-06-02 16:08:14 +08:00
|
|
|
|
"path/filepath"
|
|
|
|
|
"strings"
|
2018-03-24 17:24:02 +08:00
|
|
|
|
"time"
|
2017-06-02 16:08:14 +08:00
|
|
|
|
|
2018-01-26 17:17:38 +08:00
|
|
|
|
"encoding/json"
|
2018-03-24 17:24:02 +08:00
|
|
|
|
|
2017-04-21 18:20:35 +08:00
|
|
|
|
"github.com/astaxie/beego"
|
2018-03-24 17:24:02 +08:00
|
|
|
|
beegoCache "github.com/astaxie/beego/cache"
|
|
|
|
|
_ "github.com/astaxie/beego/cache/memcache"
|
|
|
|
|
_ "github.com/astaxie/beego/cache/redis"
|
2017-04-21 18:20:35 +08:00
|
|
|
|
"github.com/astaxie/beego/logs"
|
2017-05-11 13:39:34 +08:00
|
|
|
|
"github.com/astaxie/beego/orm"
|
2017-05-01 12:15:55 +08:00
|
|
|
|
"github.com/lifei6671/gocaptcha"
|
2018-03-24 17:24:02 +08:00
|
|
|
|
"github.com/lifei6671/mindoc/cache"
|
2017-06-14 09:23:29 +08:00
|
|
|
|
"github.com/lifei6671/mindoc/conf"
|
|
|
|
|
"github.com/lifei6671/mindoc/models"
|
2018-03-24 17:24:02 +08:00
|
|
|
|
"github.com/lifei6671/mindoc/utils/filetil"
|
2018-07-25 14:46:56 +08:00
|
|
|
|
"github.com/astaxie/beego/cache/redis"
|
2017-06-02 16:08:14 +08:00
|
|
|
|
)
|
2017-05-27 17:53:35 +08:00
|
|
|
|
|
2017-04-21 18:20:35 +08:00
|
|
|
|
// RegisterDataBase 注册数据库
|
2017-05-11 13:39:34 +08:00
|
|
|
|
func RegisterDataBase() {
|
2018-02-27 17:20:42 +08:00
|
|
|
|
beego.Info("正在初始化数据库配置.")
|
2017-05-20 09:52:18 +08:00
|
|
|
|
adapter := beego.AppConfig.String("db_adapter")
|
2017-04-21 18:20:35 +08:00
|
|
|
|
|
2018-08-10 17:59:34 +08:00
|
|
|
|
if strings.EqualFold(adapter, "mysql") {
|
2017-05-20 09:52:18 +08:00
|
|
|
|
host := beego.AppConfig.String("db_host")
|
|
|
|
|
database := beego.AppConfig.String("db_database")
|
|
|
|
|
username := beego.AppConfig.String("db_username")
|
|
|
|
|
password := beego.AppConfig.String("db_password")
|
2018-03-22 16:42:34 +08:00
|
|
|
|
|
2018-03-23 17:50:10 +08:00
|
|
|
|
timezone := beego.AppConfig.String("timezone")
|
|
|
|
|
location, err := time.LoadLocation(timezone)
|
|
|
|
|
if err == nil {
|
|
|
|
|
orm.DefaultTimeLoc = location
|
|
|
|
|
} else {
|
2018-08-13 15:04:52 +08:00
|
|
|
|
beego.Error("加载时区配置信息失败,请检查是否存在 ZONEINFO 环境变量->", err)
|
2018-03-23 17:50:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-20 09:52:18 +08:00
|
|
|
|
port := beego.AppConfig.String("db_port")
|
2017-04-21 18:20:35 +08:00
|
|
|
|
|
2017-05-20 09:52:18 +08:00
|
|
|
|
dataSource := fmt.Sprintf("%s:%s@tcp(%s:%s)/%s?charset=utf8mb4&parseTime=true&loc=%s", username, password, host, port, database, url.QueryEscape(timezone))
|
2017-04-21 18:20:35 +08:00
|
|
|
|
|
2018-03-23 17:50:10 +08:00
|
|
|
|
if err := orm.RegisterDataBase("default", "mysql", dataSource); err != nil {
|
2018-08-07 17:19:56 +08:00
|
|
|
|
beego.Error("注册默认数据库失败->", err)
|
2018-02-27 17:20:42 +08:00
|
|
|
|
os.Exit(1)
|
|
|
|
|
}
|
2018-08-10 17:59:34 +08:00
|
|
|
|
} else if strings.EqualFold(adapter, "sqlite3") {
|
2018-03-23 17:50:10 +08:00
|
|
|
|
orm.DefaultTimeLoc = time.UTC
|
2017-05-20 09:52:18 +08:00
|
|
|
|
database := beego.AppConfig.String("db_database")
|
2018-01-26 17:17:38 +08:00
|
|
|
|
if strings.HasPrefix(database, "./") {
|
|
|
|
|
database = filepath.Join(conf.WorkingDirectory, string(database[1:]))
|
2017-06-05 12:23:01 +08:00
|
|
|
|
}
|
2017-06-05 13:55:07 +08:00
|
|
|
|
|
2017-06-02 09:27:13 +08:00
|
|
|
|
dbPath := filepath.Dir(database)
|
2017-06-02 16:08:14 +08:00
|
|
|
|
os.MkdirAll(dbPath, 0777)
|
2017-04-21 18:20:35 +08:00
|
|
|
|
|
2018-02-27 17:20:42 +08:00
|
|
|
|
err := orm.RegisterDataBase("default", "sqlite3", database)
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
2018-08-07 17:19:56 +08:00
|
|
|
|
beego.Error("注册默认数据库失败->", err)
|
2018-02-27 17:20:42 +08:00
|
|
|
|
}
|
2018-03-24 17:24:02 +08:00
|
|
|
|
} else {
|
2018-02-27 17:20:42 +08:00
|
|
|
|
beego.Error("不支持的数据库类型.")
|
|
|
|
|
os.Exit(1)
|
2017-05-20 09:52:18 +08:00
|
|
|
|
}
|
2018-02-27 17:20:42 +08:00
|
|
|
|
beego.Info("数据库初始化完成.")
|
2017-04-21 18:20:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// RegisterModel 注册Model
|
2017-05-11 13:39:34 +08:00
|
|
|
|
func RegisterModel() {
|
2017-04-24 18:25:17 +08:00
|
|
|
|
orm.RegisterModelWithPrefix(conf.GetDatabasePrefix(),
|
2017-04-21 18:20:35 +08:00
|
|
|
|
new(models.Member),
|
|
|
|
|
new(models.Book),
|
|
|
|
|
new(models.Relationship),
|
|
|
|
|
new(models.Option),
|
|
|
|
|
new(models.Document),
|
2017-04-24 18:25:17 +08:00
|
|
|
|
new(models.Attachment),
|
|
|
|
|
new(models.Logger),
|
2017-05-03 14:22:05 +08:00
|
|
|
|
new(models.MemberToken),
|
2017-05-19 17:20:33 +08:00
|
|
|
|
new(models.DocumentHistory),
|
2017-05-27 17:53:35 +08:00
|
|
|
|
new(models.Migration),
|
2017-07-07 16:20:55 +08:00
|
|
|
|
new(models.Label),
|
2018-07-13 19:04:51 +08:00
|
|
|
|
new(models.Blog),
|
2018-08-13 19:05:49 +08:00
|
|
|
|
new(models.Template),
|
2017-04-21 18:20:35 +08:00
|
|
|
|
)
|
2018-07-25 14:46:56 +08:00
|
|
|
|
gob.Register(models.Blog{})
|
|
|
|
|
gob.Register(models.Document{})
|
2018-08-13 19:05:49 +08:00
|
|
|
|
gob.Register(models.Template{})
|
2018-02-28 16:29:26 +08:00
|
|
|
|
//migrate.RegisterMigration()
|
2017-04-21 18:20:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// RegisterLogger 注册日志
|
2017-06-02 16:08:14 +08:00
|
|
|
|
func RegisterLogger(log string) {
|
2017-04-21 18:20:35 +08:00
|
|
|
|
|
2017-04-29 21:28:09 +08:00
|
|
|
|
logs.SetLogFuncCall(true)
|
2017-04-21 18:20:35 +08:00
|
|
|
|
logs.SetLogger("console")
|
|
|
|
|
logs.EnableFuncCallDepth(true)
|
2017-04-29 21:28:09 +08:00
|
|
|
|
|
2018-07-25 14:46:56 +08:00
|
|
|
|
if beego.AppConfig.DefaultBool("log_is_async", true) {
|
|
|
|
|
logs.Async(1e3)
|
|
|
|
|
}
|
|
|
|
|
if log == "" {
|
2018-08-13 15:04:52 +08:00
|
|
|
|
logPath,err := filepath.Abs(beego.AppConfig.DefaultString("log_path",conf.WorkingDir("runtime","logs")))
|
|
|
|
|
if err == nil {
|
|
|
|
|
log = logPath
|
|
|
|
|
}else{
|
|
|
|
|
log = conf.WorkingDir("runtime","logs")
|
|
|
|
|
}
|
2018-07-25 14:46:56 +08:00
|
|
|
|
}
|
2017-06-02 16:08:14 +08:00
|
|
|
|
|
2018-07-25 14:46:56 +08:00
|
|
|
|
logPath := filepath.Join(log, "log.log")
|
2017-05-04 10:35:56 +08:00
|
|
|
|
|
2018-07-25 14:46:56 +08:00
|
|
|
|
if _, err := os.Stat(log); os.IsNotExist(err) {
|
2017-06-02 16:08:14 +08:00
|
|
|
|
os.MkdirAll(log, 0777)
|
2018-07-25 14:46:56 +08:00
|
|
|
|
}
|
2017-06-02 16:08:14 +08:00
|
|
|
|
|
2018-07-25 14:46:56 +08:00
|
|
|
|
config := make(map[string]interface{}, 1)
|
2017-06-02 16:29:31 +08:00
|
|
|
|
|
2018-07-25 14:46:56 +08:00
|
|
|
|
config["filename"] = logPath
|
|
|
|
|
config["perm"] = "0755"
|
|
|
|
|
config["rotate"] = true
|
2017-06-02 16:29:31 +08:00
|
|
|
|
|
2018-07-25 14:46:56 +08:00
|
|
|
|
if maxLines := beego.AppConfig.DefaultInt("log_maxlines", 1000000); maxLines > 0 {
|
|
|
|
|
config["maxLines"] = maxLines
|
|
|
|
|
}
|
|
|
|
|
if maxSize := beego.AppConfig.DefaultInt("log_maxsize", 1<<28); maxSize > 0 {
|
|
|
|
|
config["maxsize"] = maxSize
|
|
|
|
|
}
|
|
|
|
|
if !beego.AppConfig.DefaultBool("log_daily", true) {
|
|
|
|
|
config["daily"] = false
|
|
|
|
|
}
|
|
|
|
|
if maxDays := beego.AppConfig.DefaultInt("log_maxdays", 7); maxDays > 0 {
|
|
|
|
|
config["maxdays"] = maxDays
|
|
|
|
|
}
|
|
|
|
|
if level := beego.AppConfig.DefaultString("log_level", "Trace"); level != "" {
|
|
|
|
|
switch level {
|
|
|
|
|
case "Emergency":
|
|
|
|
|
config["level"] = beego.LevelEmergency;break
|
|
|
|
|
case "Alert":
|
|
|
|
|
config["level"] = beego.LevelAlert;break
|
|
|
|
|
case "Critical":
|
|
|
|
|
config["level"] = beego.LevelCritical;break
|
|
|
|
|
case "Error":
|
|
|
|
|
config["level"] = beego.LevelError; break
|
|
|
|
|
case "Warning":
|
|
|
|
|
config["level"] = beego.LevelWarning; break
|
|
|
|
|
case "Notice":
|
|
|
|
|
config["level"] = beego.LevelNotice; break
|
|
|
|
|
case "Informational":
|
|
|
|
|
config["level"] = beego.LevelInformational;break
|
|
|
|
|
case "Debug":
|
|
|
|
|
config["level"] = beego.LevelDebug;break
|
2017-05-01 16:17:26 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-07-25 14:46:56 +08:00
|
|
|
|
b, err := json.Marshal(config);
|
|
|
|
|
if err != nil {
|
|
|
|
|
beego.Error("初始化文件日志时出错 ->",err)
|
|
|
|
|
beego.SetLogger("file", `{"filename":"`+ logPath + `"}`)
|
|
|
|
|
}else{
|
|
|
|
|
beego.SetLogger(logs.AdapterFile, string(b))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2017-05-01 17:17:04 +08:00
|
|
|
|
|
2017-04-29 21:28:09 +08:00
|
|
|
|
beego.SetLogFuncCall(true)
|
2017-04-21 18:20:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// RunCommand 注册orm命令行工具
|
|
|
|
|
func RegisterCommand() {
|
|
|
|
|
|
2017-06-02 16:08:14 +08:00
|
|
|
|
if len(os.Args) >= 2 && os.Args[1] == "install" {
|
|
|
|
|
ResolveCommand(os.Args[2:])
|
|
|
|
|
Install()
|
|
|
|
|
} else if len(os.Args) >= 2 && os.Args[1] == "version" {
|
|
|
|
|
CheckUpdate()
|
2018-02-28 16:29:26 +08:00
|
|
|
|
os.Exit(0)
|
2017-06-02 16:08:14 +08:00
|
|
|
|
}
|
2018-07-11 18:06:02 +08:00
|
|
|
|
|
2017-04-21 18:20:35 +08:00
|
|
|
|
}
|
2018-03-13 14:14:56 +08:00
|
|
|
|
|
2018-02-27 17:20:42 +08:00
|
|
|
|
//注册模板函数
|
2017-05-11 13:39:34 +08:00
|
|
|
|
func RegisterFunction() {
|
|
|
|
|
beego.AddFuncMap("config", models.GetOptionValue)
|
2017-05-12 10:45:40 +08:00
|
|
|
|
|
|
|
|
|
beego.AddFuncMap("cdn", func(p string) string {
|
2017-06-02 16:08:14 +08:00
|
|
|
|
cdn := beego.AppConfig.DefaultString("cdn", "")
|
2018-01-26 17:17:38 +08:00
|
|
|
|
if strings.HasPrefix(p, "http://") || strings.HasPrefix(p, "https://") {
|
2018-01-18 19:54:05 +08:00
|
|
|
|
return p
|
|
|
|
|
}
|
2018-03-13 14:14:56 +08:00
|
|
|
|
//如果没有设置cdn,则使用baseURL拼接
|
|
|
|
|
if cdn == "" {
|
2018-03-24 17:24:02 +08:00
|
|
|
|
baseUrl := beego.AppConfig.DefaultString("baseurl", "")
|
2017-05-12 10:45:40 +08:00
|
|
|
|
|
2018-03-24 17:24:02 +08:00
|
|
|
|
if strings.HasPrefix(p, "/") && strings.HasSuffix(baseUrl, "/") {
|
2018-03-13 14:14:56 +08:00
|
|
|
|
return baseUrl + p[1:]
|
|
|
|
|
}
|
2018-03-24 17:24:02 +08:00
|
|
|
|
if !strings.HasPrefix(p, "/") && !strings.HasSuffix(baseUrl, "/") {
|
2018-03-13 14:14:56 +08:00
|
|
|
|
return baseUrl + "/" + p
|
|
|
|
|
}
|
2018-03-24 17:24:02 +08:00
|
|
|
|
return baseUrl + p
|
2018-01-18 19:54:05 +08:00
|
|
|
|
}
|
2017-06-02 16:08:14 +08:00
|
|
|
|
if strings.HasPrefix(p, "/") && strings.HasSuffix(cdn, "/") {
|
2017-05-12 10:45:40 +08:00
|
|
|
|
return cdn + string(p[1:])
|
|
|
|
|
}
|
2017-06-02 16:08:14 +08:00
|
|
|
|
if !strings.HasPrefix(p, "/") && !strings.HasSuffix(cdn, "/") {
|
2017-05-12 10:45:40 +08:00
|
|
|
|
return cdn + "/" + p
|
|
|
|
|
}
|
|
|
|
|
return cdn + p
|
2017-06-02 16:08:14 +08:00
|
|
|
|
})
|
2018-03-13 14:14:56 +08:00
|
|
|
|
|
2018-03-24 17:24:02 +08:00
|
|
|
|
beego.AddFuncMap("cdnjs", conf.URLForWithCdnJs)
|
|
|
|
|
beego.AddFuncMap("cdncss", conf.URLForWithCdnCss)
|
2018-03-13 19:20:50 +08:00
|
|
|
|
beego.AddFuncMap("cdnimg", conf.URLForWithCdnImage)
|
2018-03-13 14:14:56 +08:00
|
|
|
|
//重写url生成,支持配置域名以及域名前缀
|
2018-03-13 19:20:50 +08:00
|
|
|
|
beego.AddFuncMap("urlfor", conf.URLFor)
|
2018-03-24 17:24:02 +08:00
|
|
|
|
beego.AddFuncMap("date_format", func(t time.Time, format string) string {
|
2018-03-23 10:00:36 +08:00
|
|
|
|
return t.Local().Format(format)
|
|
|
|
|
})
|
2017-06-02 16:08:14 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-02-27 17:20:42 +08:00
|
|
|
|
//解析命令
|
2017-06-02 16:08:14 +08:00
|
|
|
|
func ResolveCommand(args []string) {
|
|
|
|
|
flagSet := flag.NewFlagSet("MinDoc command: ", flag.ExitOnError)
|
2018-01-26 17:17:38 +08:00
|
|
|
|
flagSet.StringVar(&conf.ConfigurationFile, "config", "", "MinDoc configuration file.")
|
|
|
|
|
flagSet.StringVar(&conf.WorkingDirectory, "dir", "", "MinDoc working directory.")
|
|
|
|
|
flagSet.StringVar(&conf.LogFile, "log", "", "MinDoc log file path.")
|
2017-06-02 16:08:14 +08:00
|
|
|
|
|
|
|
|
|
flagSet.Parse(args)
|
|
|
|
|
|
2018-01-26 17:17:38 +08:00
|
|
|
|
if conf.WorkingDirectory == "" {
|
2017-06-02 16:08:14 +08:00
|
|
|
|
if p, err := filepath.Abs(os.Args[0]); err == nil {
|
2018-01-26 17:17:38 +08:00
|
|
|
|
conf.WorkingDirectory = filepath.Dir(p)
|
2017-06-02 16:08:14 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-08-13 15:04:52 +08:00
|
|
|
|
|
2018-01-26 17:17:38 +08:00
|
|
|
|
if conf.ConfigurationFile == "" {
|
2018-07-11 14:18:27 +08:00
|
|
|
|
conf.ConfigurationFile = conf.WorkingDir( "conf", "app.conf")
|
|
|
|
|
config := conf.WorkingDir("conf", "app.conf.example")
|
2018-03-24 17:24:02 +08:00
|
|
|
|
if !filetil.FileExists(conf.ConfigurationFile) && filetil.FileExists(config) {
|
|
|
|
|
filetil.CopyFile(conf.ConfigurationFile, config)
|
2017-06-02 16:08:14 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-07-11 14:18:27 +08:00
|
|
|
|
if err := gocaptcha.ReadFonts(conf.WorkingDir( "static", "fonts"), ".ttf");err != nil {
|
|
|
|
|
log.Fatal("读取字体文件时出错 -> ",err)
|
|
|
|
|
}
|
2017-06-02 16:08:14 +08:00
|
|
|
|
|
2018-07-11 14:18:27 +08:00
|
|
|
|
if err := beego.LoadAppConfig("ini", conf.ConfigurationFile);err != nil {
|
|
|
|
|
log.Fatal("An error occurred:", err)
|
2017-06-02 16:08:14 +08:00
|
|
|
|
}
|
2018-08-13 15:04:52 +08:00
|
|
|
|
if conf.LogFile == "" {
|
|
|
|
|
logPath,err := filepath.Abs(beego.AppConfig.DefaultString("log_path",conf.WorkingDir("runtime","logs")))
|
|
|
|
|
if err == nil {
|
|
|
|
|
conf.LogFile = logPath
|
|
|
|
|
}else{
|
|
|
|
|
conf.LogFile = conf.WorkingDir("runtime","logs")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-07 17:19:56 +08:00
|
|
|
|
conf.AutoLoadDelay = beego.AppConfig.DefaultInt("config_auto_delay",0)
|
2018-07-11 14:18:27 +08:00
|
|
|
|
uploads := conf.WorkingDir("uploads")
|
2017-06-02 16:08:14 +08:00
|
|
|
|
|
2018-01-26 17:17:38 +08:00
|
|
|
|
os.MkdirAll(uploads, 0666)
|
2017-06-02 16:08:14 +08:00
|
|
|
|
|
2018-01-26 17:17:38 +08:00
|
|
|
|
beego.BConfig.WebConfig.StaticDir["/static"] = filepath.Join(conf.WorkingDirectory, "static")
|
2017-06-02 16:08:14 +08:00
|
|
|
|
beego.BConfig.WebConfig.StaticDir["/uploads"] = uploads
|
2018-07-11 14:18:27 +08:00
|
|
|
|
beego.BConfig.WebConfig.ViewsPath = conf.WorkingDir("views")
|
2017-06-02 16:08:14 +08:00
|
|
|
|
|
2018-07-11 14:18:27 +08:00
|
|
|
|
fonts := conf.WorkingDir("static", "fonts")
|
2017-06-02 16:08:14 +08:00
|
|
|
|
|
2018-03-24 17:24:02 +08:00
|
|
|
|
if !filetil.FileExists(fonts) {
|
2017-06-02 16:08:14 +08:00
|
|
|
|
log.Fatal("Font path not exist.")
|
|
|
|
|
}
|
2018-01-26 17:17:38 +08:00
|
|
|
|
gocaptcha.ReadFonts(filepath.Join(conf.WorkingDirectory, "static", "fonts"), ".ttf")
|
2017-06-02 16:08:14 +08:00
|
|
|
|
|
|
|
|
|
RegisterDataBase()
|
2018-02-27 17:20:42 +08:00
|
|
|
|
RegisterCache()
|
2017-06-02 16:08:14 +08:00
|
|
|
|
RegisterModel()
|
2018-01-26 17:17:38 +08:00
|
|
|
|
RegisterLogger(conf.LogFile)
|
2018-07-10 19:13:33 +08:00
|
|
|
|
|
|
|
|
|
ModifyPassword()
|
|
|
|
|
|
2017-04-30 22:13:12 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-02-27 17:20:42 +08:00
|
|
|
|
//注册缓存管道
|
2018-03-24 17:24:02 +08:00
|
|
|
|
func RegisterCache() {
|
|
|
|
|
isOpenCache := beego.AppConfig.DefaultBool("cache", false)
|
2018-02-27 17:20:42 +08:00
|
|
|
|
if !isOpenCache {
|
|
|
|
|
cache.Init(&cache.NullCache{})
|
2018-08-13 15:04:52 +08:00
|
|
|
|
return
|
2018-02-27 17:20:42 +08:00
|
|
|
|
}
|
|
|
|
|
beego.Info("正常初始化缓存配置.")
|
|
|
|
|
cacheProvider := beego.AppConfig.String("cache_provider")
|
|
|
|
|
if cacheProvider == "file" {
|
2018-03-24 17:24:02 +08:00
|
|
|
|
cacheFilePath := beego.AppConfig.DefaultString("cache_file_path", "./runtime/cache/")
|
2018-02-27 17:20:42 +08:00
|
|
|
|
if strings.HasPrefix(cacheFilePath, "./") {
|
|
|
|
|
cacheFilePath = filepath.Join(conf.WorkingDirectory, string(cacheFilePath[1:]))
|
|
|
|
|
}
|
|
|
|
|
fileCache := beegoCache.NewFileCache()
|
2018-03-01 10:12:31 +08:00
|
|
|
|
|
2018-03-24 17:24:02 +08:00
|
|
|
|
fileConfig := make(map[string]string, 0)
|
2018-03-01 10:12:31 +08:00
|
|
|
|
|
2018-03-24 17:24:02 +08:00
|
|
|
|
fileConfig["CachePath"] = cacheFilePath
|
|
|
|
|
fileConfig["DirectoryLevel"] = beego.AppConfig.DefaultString("cache_file_dir_level", "2")
|
|
|
|
|
fileConfig["EmbedExpiry"] = beego.AppConfig.DefaultString("cache_file_expiry", "120")
|
|
|
|
|
fileConfig["FileSuffix"] = beego.AppConfig.DefaultString("cache_file_suffix", ".bin")
|
2018-03-01 10:12:31 +08:00
|
|
|
|
|
2018-03-24 17:24:02 +08:00
|
|
|
|
bc, err := json.Marshal(&fileConfig)
|
2018-03-01 10:12:31 +08:00
|
|
|
|
if err != nil {
|
2018-06-11 16:26:06 +08:00
|
|
|
|
beego.Error("初始化file缓存失败:", err)
|
2018-03-01 10:12:31 +08:00
|
|
|
|
os.Exit(1)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fileCache.StartAndGC(string(bc))
|
2018-02-27 17:20:42 +08:00
|
|
|
|
|
|
|
|
|
cache.Init(fileCache)
|
2018-03-01 10:12:31 +08:00
|
|
|
|
|
2018-03-24 17:24:02 +08:00
|
|
|
|
} else if cacheProvider == "memory" {
|
|
|
|
|
cacheInterval := beego.AppConfig.DefaultInt("cache_memory_interval", 60)
|
2018-02-27 17:20:42 +08:00
|
|
|
|
memory := beegoCache.NewMemoryCache()
|
|
|
|
|
beegoCache.DefaultEvery = cacheInterval
|
|
|
|
|
cache.Init(memory)
|
2018-03-24 17:24:02 +08:00
|
|
|
|
} else if cacheProvider == "redis" {
|
2018-07-25 14:46:56 +08:00
|
|
|
|
//设置Redis前缀
|
|
|
|
|
if key := beego.AppConfig.DefaultString("cache_redis_prefix",""); key != "" {
|
|
|
|
|
redis.DefaultKey = key
|
|
|
|
|
}
|
2018-03-24 17:24:02 +08:00
|
|
|
|
var redisConfig struct {
|
|
|
|
|
Conn string `json:"conn"`
|
2018-02-27 17:20:42 +08:00
|
|
|
|
Password string `json:"password"`
|
2018-03-24 17:24:02 +08:00
|
|
|
|
DbNum int `json:"dbNum"`
|
2018-02-27 17:20:42 +08:00
|
|
|
|
}
|
|
|
|
|
redisConfig.DbNum = 0
|
2018-03-24 17:24:02 +08:00
|
|
|
|
redisConfig.Conn = beego.AppConfig.DefaultString("cache_redis_host", "")
|
|
|
|
|
if pwd := beego.AppConfig.DefaultString("cache_redis_password", ""); pwd != "" {
|
2018-02-27 17:20:42 +08:00
|
|
|
|
redisConfig.Password = pwd
|
|
|
|
|
}
|
2018-03-24 17:24:02 +08:00
|
|
|
|
if dbNum := beego.AppConfig.DefaultInt("cache_redis_db", 0); dbNum > 0 {
|
2018-02-27 17:20:42 +08:00
|
|
|
|
redisConfig.DbNum = dbNum
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-24 17:24:02 +08:00
|
|
|
|
bc, err := json.Marshal(&redisConfig)
|
2018-02-27 17:20:42 +08:00
|
|
|
|
if err != nil {
|
2018-03-24 17:24:02 +08:00
|
|
|
|
beego.Error("初始化Redis缓存失败:", err)
|
2018-02-27 17:20:42 +08:00
|
|
|
|
os.Exit(1)
|
|
|
|
|
}
|
2018-03-24 17:24:02 +08:00
|
|
|
|
redisCache, err := beegoCache.NewCache("redis", string(bc))
|
2018-02-27 17:20:42 +08:00
|
|
|
|
|
|
|
|
|
if err != nil {
|
2018-03-24 17:24:02 +08:00
|
|
|
|
beego.Error("初始化Redis缓存失败:", err)
|
2018-02-27 17:20:42 +08:00
|
|
|
|
os.Exit(1)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cache.Init(redisCache)
|
2018-03-24 17:24:02 +08:00
|
|
|
|
} else if cacheProvider == "memcache" {
|
2018-02-27 17:20:42 +08:00
|
|
|
|
|
2018-03-24 17:24:02 +08:00
|
|
|
|
var memcacheConfig struct {
|
2018-02-27 17:20:42 +08:00
|
|
|
|
Conn string `json:"conn"`
|
|
|
|
|
}
|
2018-03-24 17:24:02 +08:00
|
|
|
|
memcacheConfig.Conn = beego.AppConfig.DefaultString("cache_memcache_host", "")
|
2018-02-27 17:20:42 +08:00
|
|
|
|
|
2018-03-24 17:24:02 +08:00
|
|
|
|
bc, err := json.Marshal(&memcacheConfig)
|
2018-02-27 17:20:42 +08:00
|
|
|
|
if err != nil {
|
2018-08-13 15:04:52 +08:00
|
|
|
|
beego.Error("初始化 Redis 缓存失败 ->", err)
|
2018-02-27 17:20:42 +08:00
|
|
|
|
os.Exit(1)
|
|
|
|
|
}
|
2018-03-24 17:24:02 +08:00
|
|
|
|
memcache, err := beegoCache.NewCache("memcache", string(bc))
|
2018-02-27 17:20:42 +08:00
|
|
|
|
|
|
|
|
|
if err != nil {
|
2018-08-13 15:04:52 +08:00
|
|
|
|
beego.Error("初始化 Memcache 缓存失败 ->", err)
|
2018-02-27 17:20:42 +08:00
|
|
|
|
os.Exit(1)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cache.Init(memcache)
|
|
|
|
|
|
2018-03-24 17:24:02 +08:00
|
|
|
|
} else {
|
2018-02-27 17:20:42 +08:00
|
|
|
|
cache.Init(&cache.NullCache{})
|
2018-07-25 14:46:56 +08:00
|
|
|
|
beego.Warn("不支持的缓存管道,缓存将禁用 ->" ,cacheProvider)
|
2018-02-27 17:20:42 +08:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
beego.Info("缓存初始化完成.")
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-07 17:19:56 +08:00
|
|
|
|
//自动加载配置文件.修改了监听端口号和数据库配置无法自动生效.
|
|
|
|
|
func RegisterAutoLoadConfig() {
|
|
|
|
|
if conf.AutoLoadDelay > 0 {
|
|
|
|
|
ticker := time.NewTicker(time.Second * time.Duration(conf.AutoLoadDelay))
|
|
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
|
f,err := os.Stat(conf.ConfigurationFile)
|
|
|
|
|
if err != nil {
|
|
|
|
|
beego.Error("读取配置文件时出错 ->",err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
modTime := f.ModTime()
|
|
|
|
|
for {
|
|
|
|
|
select {
|
|
|
|
|
case <-ticker.C:
|
|
|
|
|
f,err := os.Stat(conf.ConfigurationFile)
|
|
|
|
|
if err != nil {
|
|
|
|
|
beego.Error("读取配置文件时出错 ->",err)
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
if modTime != f.ModTime() {
|
|
|
|
|
if err := beego.LoadAppConfig("ini", conf.ConfigurationFile); err != nil {
|
2018-08-13 15:04:52 +08:00
|
|
|
|
beego.Error("An error occurred ->", err)
|
2018-08-07 17:19:56 +08:00
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
modTime = f.ModTime()
|
2018-08-13 15:04:52 +08:00
|
|
|
|
RegisterCache()
|
|
|
|
|
|
|
|
|
|
RegisterLogger("")
|
2018-08-07 17:19:56 +08:00
|
|
|
|
beego.Info("配置文件已加载")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-11 13:39:34 +08:00
|
|
|
|
func init() {
|
2017-06-02 16:08:14 +08:00
|
|
|
|
|
2018-03-24 17:24:02 +08:00
|
|
|
|
if configPath, err := filepath.Abs(conf.ConfigurationFile); err == nil {
|
2018-01-26 17:17:38 +08:00
|
|
|
|
conf.ConfigurationFile = configPath
|
|
|
|
|
}
|
2017-05-01 12:15:55 +08:00
|
|
|
|
gocaptcha.ReadFonts("./static/fonts", ".ttf")
|
2017-04-30 22:13:12 +08:00
|
|
|
|
gob.Register(models.Member{})
|
2017-06-02 16:08:14 +08:00
|
|
|
|
|
2018-01-26 17:17:38 +08:00
|
|
|
|
if p, err := filepath.Abs(os.Args[0]); err == nil {
|
|
|
|
|
conf.WorkingDirectory = filepath.Dir(p)
|
2017-06-02 16:08:14 +08:00
|
|
|
|
}
|
2017-05-11 13:39:34 +08:00
|
|
|
|
}
|