2017-04-21 18:20:35 +08:00
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
2017-05-11 13:39:34 +08:00
|
|
|
"encoding/gob"
|
2017-04-21 18:20:35 +08:00
|
|
|
"fmt"
|
|
|
|
"net/url"
|
2017-04-30 22:13:12 +08:00
|
|
|
"os"
|
2017-05-11 13:39:34 +08:00
|
|
|
"time"
|
2017-04-21 18:20:35 +08:00
|
|
|
|
2017-06-02 16:08:14 +08:00
|
|
|
"flag"
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
|
2017-04-21 18:20:35 +08:00
|
|
|
"github.com/astaxie/beego"
|
|
|
|
"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"
|
2017-06-02 16:08:14 +08:00
|
|
|
"github.com/lifei6671/godoc/commands/migrate"
|
2017-05-11 13:39:34 +08:00
|
|
|
"github.com/lifei6671/godoc/conf"
|
|
|
|
"github.com/lifei6671/godoc/models"
|
2017-06-02 16:08:14 +08:00
|
|
|
"github.com/lifei6671/godoc/utils"
|
|
|
|
"log"
|
2017-06-02 16:29:31 +08:00
|
|
|
"encoding/json"
|
2017-04-21 18:20:35 +08:00
|
|
|
)
|
|
|
|
|
2017-06-02 16:08:14 +08:00
|
|
|
var (
|
|
|
|
ConfigurationFile = "./conf/app.conf"
|
|
|
|
WorkingDirectory = "./"
|
|
|
|
LogFile = "./logs"
|
|
|
|
)
|
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() {
|
2017-05-20 09:52:18 +08:00
|
|
|
adapter := beego.AppConfig.String("db_adapter")
|
2017-04-21 18:20:35 +08:00
|
|
|
|
2017-05-20 09:52:18 +08:00
|
|
|
if adapter == "mysql" {
|
|
|
|
host := beego.AppConfig.String("db_host")
|
|
|
|
database := beego.AppConfig.String("db_database")
|
|
|
|
username := beego.AppConfig.String("db_username")
|
|
|
|
password := beego.AppConfig.String("db_password")
|
|
|
|
timezone := beego.AppConfig.String("timezone")
|
2017-04-21 18:20:35 +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
|
|
|
|
2017-05-20 09:52:18 +08:00
|
|
|
orm.RegisterDataBase("default", "mysql", dataSource)
|
|
|
|
|
|
|
|
location, err := time.LoadLocation(timezone)
|
|
|
|
if err == nil {
|
|
|
|
orm.DefaultTimeLoc = location
|
|
|
|
} else {
|
2017-06-02 16:08:14 +08:00
|
|
|
log.Fatalln(err)
|
2017-05-20 09:52:18 +08:00
|
|
|
}
|
2017-06-02 16:08:14 +08:00
|
|
|
} else if adapter == "sqlite3" {
|
2017-05-20 09:52:18 +08:00
|
|
|
database := beego.AppConfig.String("db_database")
|
2017-06-05 12:23:01 +08:00
|
|
|
if strings.HasPrefix(database,"./") {
|
|
|
|
database = filepath.Join(WorkingDirectory,string(database[1:]))
|
|
|
|
}
|
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
|
|
|
|
2017-05-20 09:52:18 +08:00
|
|
|
orm.RegisterDataBase("default", "sqlite3", database)
|
|
|
|
}
|
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-04-21 18:20:35 +08:00
|
|
|
)
|
2017-05-27 17:53:35 +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)
|
|
|
|
logs.Async()
|
2017-04-29 21:28:09 +08:00
|
|
|
|
2017-06-02 16:08:14 +08:00
|
|
|
logPath := filepath.Join(log, "log.log")
|
|
|
|
|
|
|
|
if _, err := os.Stat(logPath); os.IsNotExist(err) {
|
2017-05-04 10:35:56 +08:00
|
|
|
|
2017-06-02 16:08:14 +08:00
|
|
|
os.MkdirAll(log, 0777)
|
|
|
|
|
|
|
|
if f, err := os.Create(logPath); err == nil {
|
2017-05-01 16:17:26 +08:00
|
|
|
f.Close()
|
2017-06-02 16:29:31 +08:00
|
|
|
config := make(map[string]interface{},1)
|
|
|
|
|
|
|
|
config["filename"] = logPath
|
|
|
|
|
|
|
|
b,_ := json.Marshal(config)
|
|
|
|
|
|
|
|
beego.SetLogger("file", string(b))
|
2017-05-01 16:17:26 +08:00
|
|
|
}
|
|
|
|
}
|
2017-05-01 17:17:04 +08:00
|
|
|
|
2017-04-29 21:28:09 +08:00
|
|
|
beego.SetLogFuncCall(true)
|
|
|
|
beego.BeeLogger.Async()
|
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" {
|
|
|
|
ResolveCommand(os.Args[2:])
|
|
|
|
CheckUpdate()
|
|
|
|
} else if len(os.Args) >= 2 && os.Args[1] == "migrate" {
|
|
|
|
ResolveCommand(os.Args[2:])
|
|
|
|
migrate.RunMigration()
|
|
|
|
}
|
2017-04-21 18:20:35 +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", "")
|
|
|
|
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
|
|
|
})
|
2017-05-12 10:45:40 +08:00
|
|
|
|
|
|
|
beego.AddFuncMap("cdnjs", func(p string) string {
|
2017-06-02 16:08:14 +08:00
|
|
|
cdn := beego.AppConfig.DefaultString("cdnjs", "")
|
|
|
|
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
|
|
|
})
|
|
|
|
beego.AddFuncMap("cdncss", func(p string) string {
|
|
|
|
cdn := beego.AppConfig.DefaultString("cdncss", "")
|
|
|
|
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
|
|
|
})
|
2017-05-12 10:45:40 +08:00
|
|
|
beego.AddFuncMap("cdnimg", func(p string) string {
|
2017-06-02 16:08:14 +08:00
|
|
|
cdn := beego.AppConfig.DefaultString("cdnimg", "")
|
|
|
|
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
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func ResolveCommand(args []string) {
|
|
|
|
flagSet := flag.NewFlagSet("MinDoc command: ", flag.ExitOnError)
|
|
|
|
flagSet.StringVar(&ConfigurationFile, "config", "", "MinDoc configuration file.")
|
|
|
|
flagSet.StringVar(&WorkingDirectory, "dir", "", "MinDoc working directory.")
|
|
|
|
flagSet.StringVar(&LogFile, "log", "", "MinDoc log file path.")
|
|
|
|
|
|
|
|
flagSet.Parse(args)
|
|
|
|
|
|
|
|
|
|
|
|
if WorkingDirectory == "" {
|
|
|
|
if p, err := filepath.Abs(os.Args[0]); err == nil {
|
|
|
|
WorkingDirectory = filepath.Dir(p)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if LogFile == "" {
|
|
|
|
LogFile = filepath.Join(WorkingDirectory,"logs")
|
|
|
|
}
|
|
|
|
if ConfigurationFile == "" {
|
|
|
|
ConfigurationFile = filepath.Join(WorkingDirectory,"conf","app.conf")
|
|
|
|
config := filepath.Join(WorkingDirectory,"conf","app.conf.example")
|
|
|
|
if !utils.FileExists(ConfigurationFile) && utils.FileExists(config){
|
2017-06-02 16:20:28 +08:00
|
|
|
utils.CopyFile(ConfigurationFile,config)
|
2017-06-02 16:08:14 +08:00
|
|
|
}
|
|
|
|
}
|
2017-06-05 11:37:22 +08:00
|
|
|
gocaptcha.ReadFonts(filepath.Join(WorkingDirectory,"static","fonts"), ".ttf")
|
2017-06-02 16:08:14 +08:00
|
|
|
|
|
|
|
err := beego.LoadAppConfig("ini", ConfigurationFile)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
log.Println("An error occurred:", err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
uploads := filepath.Join(WorkingDirectory, "uploads")
|
|
|
|
|
|
|
|
os.MkdirAll(uploads,0666)
|
|
|
|
|
|
|
|
beego.BConfig.WebConfig.StaticDir["/static"] = filepath.Join(WorkingDirectory, "static")
|
|
|
|
beego.BConfig.WebConfig.StaticDir["/uploads"] = uploads
|
|
|
|
beego.BConfig.WebConfig.ViewsPath = filepath.Join(WorkingDirectory, "views")
|
|
|
|
|
|
|
|
fonts := filepath.Join(WorkingDirectory, "static", "fonts")
|
|
|
|
|
|
|
|
if !utils.FileExists(fonts) {
|
|
|
|
log.Fatal("Font path not exist.")
|
|
|
|
}
|
|
|
|
gocaptcha.ReadFonts(filepath.Join(WorkingDirectory, "static", "fonts"), ".ttf")
|
|
|
|
|
|
|
|
RegisterDataBase()
|
|
|
|
RegisterModel()
|
|
|
|
RegisterLogger(LogFile)
|
2017-04-30 22:13:12 +08:00
|
|
|
}
|
|
|
|
|
2017-05-11 13:39:34 +08:00
|
|
|
func init() {
|
2017-06-02 16:08:14 +08:00
|
|
|
|
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
|
|
|
|
|
|
|
if p,err := filepath.Abs(os.Args[0]);err == nil{
|
|
|
|
WorkingDirectory = filepath.Dir(p)
|
|
|
|
}
|
2017-05-11 13:39:34 +08:00
|
|
|
}
|