-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinit.go
45 lines (39 loc) · 1.27 KB
/
init.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
/**********************************************
** @Des: This file ...
** @Author: yongze.chen
** @Date: 2017-09-08 00:18:02
** @Last Modified by: yongze.chen
** @Last Modified time: 2017-09-16 17:26:48
***********************************************/
package models
import (
"net/url"
"github.com/astaxie/beego"
"github.com/astaxie/beego/orm"
_ "github.com/go-sql-driver/mysql"
)
func Init() {
dbhost := beego.AppConfig.String("db.host")
dbport := beego.AppConfig.String("db.port")
dbuser := beego.AppConfig.String("db.user")
dbpassword := beego.AppConfig.String("db.password")
dbname := beego.AppConfig.String("db.name")
timezone := beego.AppConfig.String("db.timezone")
if dbport == "" {
dbport = "3306"
}
dsn := dbuser + ":" + dbpassword + "@tcp(" + dbhost + ":" + dbport + ")/" + dbname + "?charset=utf8"
if timezone != "" {
dsn = dsn + "&loc=" + url.QueryEscape(timezone)
}
orm.RegisterDataBase("default", "mysql", dsn)
orm.RegisterModel(new(Auth), new(Role), new(RoleAuth), new(Admin),
new(Group), new(Env), new(Code), new(ApiSource), new(ApiDetail), new(ApiPublic), new(Template))
if beego.AppConfig.String("runmode") == "dev" {
orm.Debug = true
}
}
// 表名字处理
func TableName(name string) string {
return beego.AppConfig.String("db.prefix") + name
}