Compare commits
69 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 77753a123f | |||
| 2c9d475a45 | |||
| 3540209b26 | |||
| 797681d76c | |||
| 0ec83f9a95 | |||
| ec798bd624 | |||
| 6b57201e59 | |||
| 4e35dfe6ed | |||
| 970bdb0157 | |||
| d656faf915 | |||
| 2ecc70288e | |||
| ce95cdc021 | |||
| 22130c7afe | |||
| d85c65faef | |||
| c9f33eefec | |||
| 1826e76a34 | |||
| b9a6b7af22 | |||
| 95bfea4feb | |||
| e4bb8ac94a | |||
| d7a49bf56d | |||
| 3d1a1670cc | |||
| 7de6a79611 | |||
| 83198b39cb | |||
| db0724f09b | |||
| c1b013c926 | |||
| 40bc84ea3d | |||
| e977a97013 | |||
| 9330f7f5ea | |||
| d20bcc162c | |||
| b48ad793da | |||
| 3754734130 | |||
| 918b88332b | |||
| 9ba182d65c | |||
| 8cf54ce25b | |||
| 22d00739ff | |||
| 3b2a317d2b | |||
| afa9b173ba | |||
| 53f24c033c | |||
| 1ffcaaef8e | |||
| 62ba00270a | |||
| fe31335cf5 | |||
| b709b58fef | |||
| 76b220aa5d | |||
| dbf8f91696 | |||
| 335e8730da | |||
| cbed318832 | |||
| 31a6568cbe | |||
| 2aa86361e1 | |||
| 2a21dad90a | |||
| bae9f60012 | |||
| 79d1189803 | |||
| c3d0c8921b | |||
| 1da98a058b | |||
| 152386c5a0 | |||
| 5e2845d3a1 | |||
| bab49c9a66 | |||
| 1d3bfcaee5 | |||
| a37a33321f | |||
| 48042ecce4 | |||
| 5d8227d8bb | |||
| 38d3d77c59 | |||
| fec195b3a1 | |||
| 5945ed64c6 | |||
| ce515d991a | |||
| cb04dc6c34 | |||
| 17905c2d21 | |||
| b7c243823a | |||
| ebea14c74f | |||
| 2e65138222 |
+89
-61
@@ -20,8 +20,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type Application struct {
|
type Application struct {
|
||||||
*code.MakeCode
|
MakeCodeRouter map[string]*code.MakeCode
|
||||||
MakeCodeRouter Router
|
|
||||||
MethodRouter
|
MethodRouter
|
||||||
Router
|
Router
|
||||||
ContextBase
|
ContextBase
|
||||||
@@ -71,7 +70,13 @@ func (that *Application) Run(router Router) {
|
|||||||
that.Router = Router{}
|
that.Router = Router{}
|
||||||
}
|
}
|
||||||
for k, v := range router {
|
for k, v := range router {
|
||||||
that.Router[k] = v
|
if that.Router[k] == nil {
|
||||||
|
that.Router[k] = v
|
||||||
|
}
|
||||||
|
|
||||||
|
for k1, v1 := range v {
|
||||||
|
that.Router[k][k1] = v1
|
||||||
|
}
|
||||||
}
|
}
|
||||||
//重新设置MethodRouter//直达路由
|
//重新设置MethodRouter//直达路由
|
||||||
that.MethodRouter = MethodRouter{}
|
that.MethodRouter = MethodRouter{}
|
||||||
@@ -257,8 +262,8 @@ func (that *Application) SetConfig(configPath ...string) {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// SetConnectListener 连接判断,返回true继续传输至控制层,false则停止传输
|
// SetConnectListener 连接判断,返回false继续传输至控制层,true则停止传输
|
||||||
func (that *Application) SetConnectListener(lis func(that *Context) bool) {
|
func (that *Application) SetConnectListener(lis func(that *Context) (isFinished bool)) {
|
||||||
that.connectListener = append(that.connectListener, lis)
|
that.connectListener = append(that.connectListener, lis)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -359,14 +364,13 @@ func (that *Application) handler(w http.ResponseWriter, req *http.Request) {
|
|||||||
|
|
||||||
//访问拦截true继续false暂停
|
//访问拦截true继续false暂停
|
||||||
connectListenerLen := len(that.connectListener)
|
connectListenerLen := len(that.connectListener)
|
||||||
if connectListenerLen != 0 {
|
|
||||||
for i := 0; i < connectListenerLen; i++ {
|
|
||||||
|
|
||||||
if !that.connectListener[i](&context) {
|
for i := connectListenerLen - 1; i >= 0; i-- {
|
||||||
|
|
||||||
context.View()
|
if that.connectListener[i](&context) {
|
||||||
return
|
|
||||||
}
|
context.View()
|
||||||
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -526,45 +530,65 @@ func (that *Application) crossDomain(context *Context, sessionId string) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//Init 初始化application
|
//Init 初始化application
|
||||||
func Init(config string) Application {
|
func Init(config string) *Application {
|
||||||
appIns := Application{}
|
appIns := Application{}
|
||||||
//手动模式,
|
//手动模式,
|
||||||
appIns.SetConfig(config)
|
appIns.SetConfig(config)
|
||||||
|
|
||||||
SetDB(&appIns)
|
SetDB(&appIns)
|
||||||
appIns.SetCache()
|
appIns.SetCache()
|
||||||
appIns.MakeCode = &code.MakeCode{}
|
codeConfig := appIns.Config.GetSlice("codeConfig")
|
||||||
codeConfig := appIns.Config.GetMap("codeConfig")
|
|
||||||
appIns.MakeCodeRouter = Router{}
|
|
||||||
if codeConfig != nil {
|
if codeConfig != nil {
|
||||||
|
|
||||||
for k, _ := range codeConfig {
|
for k, _ := range codeConfig {
|
||||||
if appIns.Config.GetInt("mode") == 2 {
|
codeMake := codeConfig.GetMap(k)
|
||||||
appIns.MakeCode.Db2JSON(k, codeConfig.GetString(k), &appIns.Db, true)
|
if codeMake == nil {
|
||||||
appIns.MakeCodeRouter[k] = Proj{}
|
continue
|
||||||
} else if appIns.Config.GetInt("mode") == 3 {
|
}
|
||||||
appIns.MakeCode.Db2JSON(k, codeConfig.GetString(k), &appIns.Db, false)
|
//codeMake["table"] = k
|
||||||
appIns.MakeCodeRouter[k] = Proj{}
|
if appIns.MakeCodeRouter == nil {
|
||||||
|
appIns.MakeCodeRouter = map[string]*code.MakeCode{}
|
||||||
|
}
|
||||||
|
|
||||||
|
if codeMake.GetString("name") == "" {
|
||||||
|
codeMake["name"] = codeMake.GetString("table")
|
||||||
|
}
|
||||||
|
|
||||||
|
if appIns.Config.GetInt("mode") > 0 {
|
||||||
|
appIns.MakeCodeRouter[codeMake.GetString("name")] = &code.MakeCode{}
|
||||||
|
appIns.MakeCodeRouter[codeMake.GetString("name")].Db2JSON(&appIns.Db, codeMake)
|
||||||
} else {
|
} else {
|
||||||
appIns.MakeCode.Db2JSON(k, codeConfig.GetString(k), nil, false)
|
appIns.MakeCodeRouter[codeMake.GetString("name")] = &code.MakeCode{}
|
||||||
appIns.MakeCodeRouter[k] = Proj{}
|
appIns.MakeCodeRouter[codeMake.GetString("name")].Db2JSON(nil, codeMake)
|
||||||
}
|
}
|
||||||
//接入动态代码层
|
//接入动态代码层
|
||||||
if appIns.Router == nil {
|
if appIns.Router == nil {
|
||||||
appIns.Router = Router{}
|
appIns.Router = Router{}
|
||||||
}
|
}
|
||||||
appIns.Router[k] = TptProject
|
|
||||||
for k1, _ := range appIns.MakeCode.TableColumns {
|
//appIns.Router[codeMake.GetString("name")] = TptProject
|
||||||
appIns.Router[k][k1] = appIns.Router[k]["hotimeCommon"]
|
appIns.Router[codeMake.GetString("name")] = Proj{}
|
||||||
|
for k2, _ := range TptProject {
|
||||||
|
appIns.Router[codeMake.GetString("name")][k2] = Ctr{}
|
||||||
|
for k3, v3 := range TptProject[k2] {
|
||||||
|
appIns.Router[codeMake.GetString("name")][k2][k3] = v3
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
setMakeCodeLintener(k, &appIns)
|
for k1, _ := range appIns.MakeCodeRouter[codeMake.GetString("name")].TableColumns {
|
||||||
|
appIns.Router[codeMake.GetString("name")][k1] = appIns.Router[codeMake.GetString("name")]["hotimeCommon"]
|
||||||
|
}
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
setMakeCodeLintener(codeMake.GetString("name"), &appIns)
|
||||||
|
}()
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return appIns
|
return &appIns
|
||||||
}
|
}
|
||||||
|
|
||||||
// SetDB 智能数据库设置
|
// SetDB 智能数据库设置
|
||||||
@@ -625,83 +649,86 @@ func SetSqliteDB(appIns *Application, config Map) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func setMakeCodeLintener(name string, appIns *Application) {
|
func setMakeCodeLintener(name string, appIns *Application) {
|
||||||
appIns.SetConnectListener(func(context *Context) bool {
|
appIns.SetConnectListener(func(context *Context) (isFinished bool) {
|
||||||
if len(context.RouterString) < 2 || appIns.MakeCodeRouter[context.RouterString[0]] == nil {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
if len(context.RouterString) > 1 && context.RouterString[0] == name {
|
|
||||||
if context.RouterString[1] == "hotime" && context.RouterString[2] == "login" {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
if context.RouterString[1] == "hotime" && context.RouterString[2] == "logout" {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
if context.Session(name+"_id").Data == nil {
|
|
||||||
context.Display(2, "你还没有登录")
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
codeIns := appIns.MakeCodeRouter[name]
|
||||||
//文件上传接口
|
//文件上传接口
|
||||||
if len(context.RouterString) == 1 && context.RouterString[0] == "file" && context.Req.Method == "POST" {
|
if len(context.RouterString) == 1 && context.RouterString[0] == "file" && context.Req.Method == "POST" {
|
||||||
if context.Session(name+"_id").Data == nil {
|
if context.Session(codeIns.FileConfig.GetString("table")+"_id").Data == nil {
|
||||||
context.Display(2, "你还没有登录")
|
context.Display(2, "你还没有登录")
|
||||||
return false
|
return true
|
||||||
}
|
}
|
||||||
//读取网络文件
|
//读取网络文件
|
||||||
fi, fheader, err := context.Req.FormFile("file")
|
fi, fheader, err := context.Req.FormFile("file")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
context.Display(3, err)
|
context.Display(3, err)
|
||||||
return false
|
return true
|
||||||
|
|
||||||
}
|
}
|
||||||
filePath := context.Config.GetString("filePath")
|
filePath := context.Config.GetString("filePath")
|
||||||
if filePath == "" {
|
if filePath == "" {
|
||||||
filePath = "file/2006/01/02/"
|
filePath = "/file/2006/01/02/"
|
||||||
}
|
}
|
||||||
|
|
||||||
path := time.Now().Format(filePath)
|
path := time.Now().Format(filePath)
|
||||||
e := os.MkdirAll(context.Config.GetString("tpt")+"/"+path, os.ModeDir)
|
e := os.MkdirAll(context.Config.GetString("tpt")+path, os.ModeDir)
|
||||||
if e != nil {
|
if e != nil {
|
||||||
context.Display(3, e)
|
context.Display(3, e)
|
||||||
return false
|
return true
|
||||||
}
|
}
|
||||||
filePath = path + Md5(ObjToStr(RandX(100000, 9999999))) + fheader.Filename[strings.LastIndex(fheader.Filename, "."):]
|
filePath = path + Md5(ObjToStr(RandX(100000, 9999999))) + fheader.Filename[strings.LastIndex(fheader.Filename, "."):]
|
||||||
newFile, e := os.Create(context.Config.GetString("tpt") + "/" + filePath)
|
newFile, e := os.Create(context.Config.GetString("tpt") + filePath)
|
||||||
|
|
||||||
if e != nil {
|
if e != nil {
|
||||||
context.Display(3, e)
|
context.Display(3, e)
|
||||||
return false
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
_, e = io.Copy(newFile, fi)
|
_, e = io.Copy(newFile, fi)
|
||||||
|
|
||||||
if e != nil {
|
if e != nil {
|
||||||
context.Display(3, e)
|
context.Display(3, e)
|
||||||
return false
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
context.Display(0, filePath)
|
context.Display(0, filePath)
|
||||||
return false
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(context.RouterString) < 2 || appIns.MakeCodeRouter[context.RouterString[0]] == nil {
|
||||||
|
return isFinished
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(context.RouterString) > 1 && context.RouterString[0] == name {
|
||||||
|
if context.RouterString[1] == "hotime" && context.RouterString[2] == "login" {
|
||||||
|
return isFinished
|
||||||
|
}
|
||||||
|
if context.RouterString[1] == "hotime" && context.RouterString[2] == "logout" {
|
||||||
|
return isFinished
|
||||||
|
}
|
||||||
|
|
||||||
|
if context.Session(codeIns.FileConfig.GetString("table")+"_id").Data == nil {
|
||||||
|
context.Display(2, "你还没有登录")
|
||||||
|
return true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(context.RouterString) < 2 || len(context.RouterString) > 3 ||
|
if len(context.RouterString) < 2 || len(context.RouterString) > 3 ||
|
||||||
!(context.Router[context.RouterString[0]] != nil &&
|
!(context.Router[context.RouterString[0]] != nil &&
|
||||||
context.Router[context.RouterString[0]][context.RouterString[1]] != nil) {
|
context.Router[context.RouterString[0]][context.RouterString[1]] != nil) {
|
||||||
return true
|
return isFinished
|
||||||
}
|
}
|
||||||
//排除无效操作
|
//排除无效操作
|
||||||
if len(context.RouterString) == 2 &&
|
if len(context.RouterString) == 2 &&
|
||||||
context.Req.Method != "GET" &&
|
context.Req.Method != "GET" &&
|
||||||
context.Req.Method != "POST" {
|
context.Req.Method != "POST" {
|
||||||
return true
|
return isFinished
|
||||||
}
|
}
|
||||||
//列表检索
|
//列表检索
|
||||||
if len(context.RouterString) == 2 &&
|
if len(context.RouterString) == 2 &&
|
||||||
context.Req.Method == "GET" {
|
context.Req.Method == "GET" {
|
||||||
if context.Router[context.RouterString[0]][context.RouterString[1]]["search"] == nil {
|
if context.Router[context.RouterString[0]][context.RouterString[1]]["search"] == nil {
|
||||||
return true
|
return isFinished
|
||||||
}
|
}
|
||||||
context.Router[context.RouterString[0]][context.RouterString[1]]["search"](context)
|
context.Router[context.RouterString[0]][context.RouterString[1]]["search"](context)
|
||||||
}
|
}
|
||||||
@@ -715,14 +742,14 @@ func setMakeCodeLintener(name string, appIns *Application) {
|
|||||||
}
|
}
|
||||||
if len(context.RouterString) == 3 &&
|
if len(context.RouterString) == 3 &&
|
||||||
context.Req.Method == "POST" {
|
context.Req.Method == "POST" {
|
||||||
return true
|
return isFinished
|
||||||
}
|
}
|
||||||
//查询单条
|
//查询单条
|
||||||
if len(context.RouterString) == 3 &&
|
if len(context.RouterString) == 3 &&
|
||||||
context.Req.Method == "GET" {
|
context.Req.Method == "GET" {
|
||||||
|
|
||||||
if context.Router[context.RouterString[0]][context.RouterString[1]]["info"] == nil {
|
if context.Router[context.RouterString[0]][context.RouterString[1]]["info"] == nil {
|
||||||
return true
|
return isFinished
|
||||||
}
|
}
|
||||||
|
|
||||||
context.Router[context.RouterString[0]][context.RouterString[1]]["info"](context)
|
context.Router[context.RouterString[0]][context.RouterString[1]]["info"](context)
|
||||||
@@ -747,7 +774,8 @@ func setMakeCodeLintener(name string, appIns *Application) {
|
|||||||
|
|
||||||
context.Router[context.RouterString[0]][context.RouterString[1]]["remove"](context)
|
context.Router[context.RouterString[0]][context.RouterString[1]]["remove"](context)
|
||||||
}
|
}
|
||||||
|
|
||||||
context.View()
|
context.View()
|
||||||
return false
|
return true
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
Vendored
+9
-9
@@ -58,7 +58,7 @@ func (that *CacheDb) initDbTable() {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
_, e := that.Db.Exec("CREATE TABLE `" + that.Db.GetPrefix() + "cached` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `ckey` varchar(60) DEFAULT NULL, `cvalue` varchar(2000) DEFAULT NULL, `time` bigint(20) DEFAULT NULL, `endtime` bigint(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=198740 DEFAULT CHARSET=utf8")
|
_, e := that.Db.Exec("CREATE TABLE `" + that.Db.GetPrefix() + "cached` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `key` varchar(60) DEFAULT NULL, `value` varchar(2000) DEFAULT NULL, `time` bigint(20) DEFAULT NULL, `endtime` bigint(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=198740 DEFAULT CHARSET=utf8")
|
||||||
if e.GetError() == nil {
|
if e.GetError() == nil {
|
||||||
that.isInit = true
|
that.isInit = true
|
||||||
}
|
}
|
||||||
@@ -74,8 +74,8 @@ func (that *CacheDb) initDbTable() {
|
|||||||
}
|
}
|
||||||
_, e := that.Db.Exec(`CREATE TABLE "` + that.Db.GetPrefix() + `cached" (
|
_, e := that.Db.Exec(`CREATE TABLE "` + that.Db.GetPrefix() + `cached" (
|
||||||
"id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
|
"id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
|
||||||
"ckey" TEXT(60),
|
"key" TEXT(60),
|
||||||
"cvalue" TEXT(2000),
|
"value" TEXT(2000),
|
||||||
"time" integer,
|
"time" integer,
|
||||||
"endtime" integer
|
"endtime" integer
|
||||||
);`)
|
);`)
|
||||||
@@ -90,7 +90,7 @@ func (that *CacheDb) initDbTable() {
|
|||||||
//获取Cache键只能为string类型
|
//获取Cache键只能为string类型
|
||||||
func (that *CacheDb) get(key string) interface{} {
|
func (that *CacheDb) get(key string) interface{} {
|
||||||
|
|
||||||
cached := that.Db.Get("cached", "*", Map{"ckey": key})
|
cached := that.Db.Get("cached", "*", Map{"key": key})
|
||||||
|
|
||||||
if cached == nil {
|
if cached == nil {
|
||||||
return nil
|
return nil
|
||||||
@@ -103,7 +103,7 @@ func (that *CacheDb) get(key string) interface{} {
|
|||||||
}
|
}
|
||||||
|
|
||||||
data := Map{}
|
data := Map{}
|
||||||
data.JsonToMap(cached.GetString("cvalue"))
|
data.JsonToMap(cached.GetString("value"))
|
||||||
|
|
||||||
return data.Get("data")
|
return data.Get("data")
|
||||||
}
|
}
|
||||||
@@ -113,9 +113,9 @@ func (that *CacheDb) set(key string, value interface{}, tim int64) {
|
|||||||
|
|
||||||
bte, _ := json.Marshal(Map{"data": value})
|
bte, _ := json.Marshal(Map{"data": value})
|
||||||
|
|
||||||
num := that.Db.Update("cached", Map{"cvalue": string(bte), "time": time.Now().UnixNano(), "endtime": tim}, Map{"ckey": key})
|
num := that.Db.Update("cached", Map{"value": string(bte), "time": time.Now().UnixNano(), "endtime": tim}, Map{"key": key})
|
||||||
if num == int64(0) {
|
if num == int64(0) {
|
||||||
that.Db.Insert("cached", Map{"cvalue": string(bte), "time": time.Now().UnixNano(), "endtime": tim, "ckey": key})
|
that.Db.Insert("cached", Map{"value": string(bte), "time": time.Now().UnixNano(), "endtime": tim, "key": key})
|
||||||
}
|
}
|
||||||
|
|
||||||
//随机执行删除命令
|
//随机执行删除命令
|
||||||
@@ -130,10 +130,10 @@ func (that *CacheDb) delete(key string) {
|
|||||||
//如果通配删除
|
//如果通配删除
|
||||||
if del != -1 {
|
if del != -1 {
|
||||||
key = Substr(key, 0, del)
|
key = Substr(key, 0, del)
|
||||||
that.Db.Delete("cached", Map{"ckey": key + "%"})
|
that.Db.Delete("cached", Map{"key": key + "%"})
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
that.Db.Delete("cached", Map{"ckey": key})
|
that.Db.Delete("cached", Map{"key": key})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -11,8 +11,9 @@ var TptProject = Proj{
|
|||||||
"hotimeCommon": Ctr{
|
"hotimeCommon": Ctr{
|
||||||
"info": func(that *Context) {
|
"info": func(that *Context) {
|
||||||
hotimeName := that.RouterString[0]
|
hotimeName := that.RouterString[0]
|
||||||
data := that.Db.Get(hotimeName, "*", Map{"id": that.Session(hotimeName + "_id").ToCeilInt()})
|
fileConfig := that.MakeCodeRouter[hotimeName].FileConfig
|
||||||
str, inData := that.MakeCode.Info(that.RouterString[1], data, that.Db)
|
data := that.Db.Get(fileConfig.GetString("table"), "*", Map{"id": that.Session(fileConfig.GetString("table") + "_id").ToCeilInt()})
|
||||||
|
str, inData := that.MakeCodeRouter[hotimeName].Info(that.RouterString[1], data, that.Db)
|
||||||
where := Map{"id": that.RouterString[2]}
|
where := Map{"id": that.RouterString[2]}
|
||||||
|
|
||||||
if len(inData) == 1 {
|
if len(inData) == 1 {
|
||||||
@@ -31,19 +32,54 @@ var TptProject = Proj{
|
|||||||
}
|
}
|
||||||
|
|
||||||
for k, v := range re {
|
for k, v := range re {
|
||||||
column := that.MakeCode.TableColumns[that.RouterString[1]][k]
|
column := that.MakeCodeRouter[hotimeName].TableColumns[that.RouterString[1]][k]
|
||||||
if column == nil {
|
if column == nil {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
if (column["list"] == nil || column.GetBool("list")) && column.GetString("link") != "" {
|
if (column["list"] == nil || column.GetBool("list")) && column.GetString("link") != "" {
|
||||||
re[column.GetString("link")] = that.Db.Get(column.GetString("link"), "id,"+column.GetString("value"), Map{"id": v})
|
seStr := "id," + column.GetString("value")
|
||||||
|
if that.MakeCodeRouter[hotimeName].TableColumns[column.GetString("link")]["phone"] != nil {
|
||||||
|
seStr = seStr + ",phone"
|
||||||
|
}
|
||||||
|
|
||||||
|
link := strings.Replace(column.GetString("name"), "_id", "", -1)
|
||||||
|
if link == "parent" {
|
||||||
|
link = that.RouterString[1]
|
||||||
|
}
|
||||||
|
re[link] = that.Db.Get(column.GetString("link"), seStr, Map{"id": v})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//如果有table字段则代为link
|
||||||
|
if re["table"] != nil && re["table_id"] != nil {
|
||||||
|
|
||||||
|
column := that.MakeCodeRouter[hotimeName].TableColumns[that.RouterString[1]][re.GetString("table")]
|
||||||
|
v := re.GetCeilInt64("table_id")
|
||||||
|
|
||||||
|
seStr := "id," + column.GetString("value")
|
||||||
|
|
||||||
|
if that.MakeCodeRouter[hotimeName].TableColumns[column.GetString("link")]["phone"] != nil {
|
||||||
|
seStr = seStr + ",phone"
|
||||||
|
}
|
||||||
|
|
||||||
|
link := strings.Replace(column.GetString("name"), "_id", "", -1)
|
||||||
|
if link == "parent" {
|
||||||
|
link = that.RouterString[1]
|
||||||
|
}
|
||||||
|
re[link] = that.Db.Get(column.GetString("link"), seStr, Map{"id": v})
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
that.Display(0, re)
|
that.Display(0, re)
|
||||||
},
|
},
|
||||||
"add": func(that *Context) {
|
"add": func(that *Context) {
|
||||||
inData := that.MakeCode.Add(that.RouterString[1], that.Req)
|
that.Log = Map{"table": that.RouterString[1], "type": 1}
|
||||||
|
|
||||||
|
hotimeName := that.RouterString[0]
|
||||||
|
fileConfig := that.MakeCodeRouter[hotimeName].FileConfig
|
||||||
|
data := that.Db.Get(fileConfig.GetString("table"), "*", Map{"id": that.Session(fileConfig.GetString("table") + "_id").ToCeilInt()})
|
||||||
|
inData := that.MakeCodeRouter[hotimeName].Add(that.RouterString[1], data, that.Req)
|
||||||
if inData == nil {
|
if inData == nil {
|
||||||
that.Display(3, "请求参数不足")
|
that.Display(3, "请求参数不足")
|
||||||
return
|
return
|
||||||
@@ -64,11 +100,16 @@ var TptProject = Proj{
|
|||||||
inData["index"] = "," + ObjToStr(re) + ","
|
inData["index"] = "," + ObjToStr(re) + ","
|
||||||
that.Db.Update(that.RouterString[1], Map{"index": inData["index"]}, Map{"id": re})
|
that.Db.Update(that.RouterString[1], Map{"index": inData["index"]}, Map{"id": re})
|
||||||
}
|
}
|
||||||
|
that.Log["table_id"] = re
|
||||||
that.Display(0, re)
|
that.Display(0, re)
|
||||||
},
|
},
|
||||||
"update": func(that *Context) {
|
"update": func(that *Context) {
|
||||||
inData := that.MakeCode.Edit(that.RouterString[1], that.Req)
|
|
||||||
|
that.Log = Map{"table": that.RouterString[1], "type": 2, "table_id": that.RouterString[2]}
|
||||||
|
|
||||||
|
hotimeName := that.RouterString[0]
|
||||||
|
inData := that.MakeCodeRouter[hotimeName].Edit(that.RouterString[1], that.Req)
|
||||||
|
|
||||||
if inData == nil {
|
if inData == nil {
|
||||||
that.Display(3, "没有找到要更新的数据")
|
that.Display(3, "没有找到要更新的数据")
|
||||||
return
|
return
|
||||||
@@ -103,7 +144,9 @@ var TptProject = Proj{
|
|||||||
that.Display(0, re)
|
that.Display(0, re)
|
||||||
},
|
},
|
||||||
"remove": func(that *Context) {
|
"remove": func(that *Context) {
|
||||||
inData := that.MakeCode.Delete(that.RouterString[1], that.Req)
|
that.Log = Map{"table": that.RouterString[1], "type": 3, "table_id": that.RouterString[2]}
|
||||||
|
hotimeName := that.RouterString[0]
|
||||||
|
inData := that.MakeCodeRouter[hotimeName].Delete(that.RouterString[1], that.Req)
|
||||||
if inData == nil {
|
if inData == nil {
|
||||||
that.Display(3, "请求参数不足")
|
that.Display(3, "请求参数不足")
|
||||||
return
|
return
|
||||||
@@ -125,9 +168,11 @@ var TptProject = Proj{
|
|||||||
|
|
||||||
"search": func(that *Context) {
|
"search": func(that *Context) {
|
||||||
hotimeName := that.RouterString[0]
|
hotimeName := that.RouterString[0]
|
||||||
data := that.Db.Get(hotimeName, "*", Map{"id": that.Session(hotimeName + "_id").ToCeilInt()})
|
fileConfig := that.MakeCodeRouter[hotimeName].FileConfig
|
||||||
|
|
||||||
columnStr, leftJoin, where := that.MakeCode.Search(that.RouterString[1], data, that.Req, that.Db)
|
data := that.Db.Get(fileConfig.GetString("table"), "*", Map{"id": that.Session(fileConfig.GetString("table") + "_id").ToCeilInt()})
|
||||||
|
|
||||||
|
columnStr, leftJoin, where := that.MakeCodeRouter[hotimeName].Search(that.RouterString[1], data, that.Req, that.Db)
|
||||||
|
|
||||||
page := ObjToInt(that.Req.FormValue("page"))
|
page := ObjToInt(that.Req.FormValue("page"))
|
||||||
pageSize := ObjToInt(that.Req.FormValue("pageSize"))
|
pageSize := ObjToInt(that.Req.FormValue("pageSize"))
|
||||||
@@ -145,13 +190,30 @@ var TptProject = Proj{
|
|||||||
PageSelect(that.RouterString[1], leftJoin, columnStr, where)
|
PageSelect(that.RouterString[1], leftJoin, columnStr, where)
|
||||||
|
|
||||||
for _, v := range reData {
|
for _, v := range reData {
|
||||||
for k, _ := range v {
|
v.RangeSort(func(k string, v1 interface{}) (isEnd bool) {
|
||||||
column := that.MakeCode.TableColumns[that.RouterString[1]][k]
|
|
||||||
if column == nil {
|
//如果有table字段则代为link
|
||||||
continue
|
if v["table"] != nil && v["table_id"] != nil {
|
||||||
|
|
||||||
|
id := v.GetCeilInt64("table_id")
|
||||||
|
tableName := that.MakeCodeRouter[hotimeName].TableConfig.GetMap(v.GetString("table")).GetString("label")
|
||||||
|
v["table_table_name"] = strings.Replace(tableName, "管理", "", -1)
|
||||||
|
parentC := that.Db.Get(v.GetString("table"), "name", Map{"id": id})
|
||||||
|
v["table_table_id_name"] = ""
|
||||||
|
if parentC != nil {
|
||||||
|
v["table_table_id_name"] = parentC.GetString("name")
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if column["list"] != false && column["name"] == "parent_id" && column.GetString("link") != "" {
|
column := that.MakeCodeRouter[hotimeName].TableColumns[that.RouterString[1]][k]
|
||||||
|
|
||||||
|
if column == nil {
|
||||||
|
return isEnd
|
||||||
|
}
|
||||||
|
|
||||||
|
if (column["list"] == nil || column["list"] == true) && column["name"] == "parent_id" && column.GetString("link") != "" {
|
||||||
|
|
||||||
parentC := that.Db.Get(column.GetString("link"), column.GetString("value"), Map{"id": v.GetCeilInt(k)})
|
parentC := that.Db.Get(column.GetString("link"), column.GetString("value"), Map{"id": v.GetCeilInt(k)})
|
||||||
v[column.GetString("link")+"_"+column.GetString("name")+"_"+column.GetString("value")] = ""
|
v[column.GetString("link")+"_"+column.GetString("name")+"_"+column.GetString("value")] = ""
|
||||||
if parentC != nil {
|
if parentC != nil {
|
||||||
@@ -159,7 +221,8 @@ var TptProject = Proj{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
return isEnd
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
that.Display(0, Map{"count": count, "data": reData})
|
that.Display(0, Map{"count": count, "data": reData})
|
||||||
@@ -168,33 +231,39 @@ var TptProject = Proj{
|
|||||||
"hotime": Ctr{
|
"hotime": Ctr{
|
||||||
"login": func(that *Context) {
|
"login": func(that *Context) {
|
||||||
hotimeName := that.RouterString[0]
|
hotimeName := that.RouterString[0]
|
||||||
|
fileConfig := that.MakeCodeRouter[hotimeName].FileConfig
|
||||||
|
|
||||||
name := that.Req.FormValue("name")
|
name := that.Req.FormValue("name")
|
||||||
password := that.Req.FormValue("password")
|
password := that.Req.FormValue("password")
|
||||||
if name == "" || password == "" {
|
if name == "" || password == "" {
|
||||||
that.Display(3, "参数不足")
|
that.Display(3, "参数不足")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
user := that.Db.Get(hotimeName, "*", Map{"AND": Map{"OR": Map{"name": name, "phone": name}, "password": Md5(password)}})
|
user := that.Db.Get(fileConfig.GetString("table"), "*", Map{"AND": Map{"OR": Map{"name": name, "phone": name}, "password": Md5(password)}})
|
||||||
|
|
||||||
if user == nil {
|
if user == nil {
|
||||||
that.Display(5, "登录失败")
|
that.Display(5, "登录失败")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
that.Session(hotimeName+"_id", user.GetCeilInt("id"))
|
that.Session(fileConfig.GetString("table")+"_id", user.GetCeilInt("id"))
|
||||||
that.Session(hotimeName+"_name", name)
|
that.Session(fileConfig.GetString("table")+"_name", name)
|
||||||
delete(user, "password")
|
delete(user, "password")
|
||||||
that.Display(0, user)
|
that.Display(0, user)
|
||||||
},
|
},
|
||||||
"logout": func(that *Context) {
|
"logout": func(that *Context) {
|
||||||
hotimeName := that.RouterString[0]
|
hotimeName := that.RouterString[0]
|
||||||
that.Session(hotimeName+"_id", nil)
|
fileConfig := that.MakeCodeRouter[hotimeName].FileConfig
|
||||||
that.Session(hotimeName+"_name", nil)
|
that.Session(fileConfig.GetString("table")+"_id", nil)
|
||||||
|
that.Session(fileConfig.GetString("table")+"_name", nil)
|
||||||
that.Display(0, "退出登录成功")
|
that.Display(0, "退出登录成功")
|
||||||
},
|
},
|
||||||
"info": func(that *Context) {
|
"info": func(that *Context) {
|
||||||
hotimeName := that.RouterString[0]
|
hotimeName := that.RouterString[0]
|
||||||
data := that.Db.Get(hotimeName, "*", Map{"id": that.Session(hotimeName + "_id").ToCeilInt()})
|
fileConfig := that.MakeCodeRouter[hotimeName].FileConfig
|
||||||
str, inData := that.MakeCode.Info(hotimeName, data, that.Db)
|
|
||||||
where := Map{"id": that.Session(hotimeName + "_id").ToCeilInt()}
|
data := that.Db.Get(fileConfig.GetString("table"), "*", Map{"id": that.Session(fileConfig.GetString("table") + "_id").ToCeilInt()})
|
||||||
|
str, inData := that.MakeCodeRouter[hotimeName].Info(fileConfig.GetString("table"), data, that.Db)
|
||||||
|
where := Map{"id": that.Session(fileConfig.GetString("table") + "_id").ToCeilInt()}
|
||||||
if len(inData) == 1 {
|
if len(inData) == 1 {
|
||||||
inData["id"] = where["id"]
|
inData["id"] = where["id"]
|
||||||
where = Map{"AND": inData}
|
where = Map{"AND": inData}
|
||||||
@@ -202,13 +271,13 @@ var TptProject = Proj{
|
|||||||
where["OR"] = inData
|
where["OR"] = inData
|
||||||
where = Map{"AND": where}
|
where = Map{"AND": where}
|
||||||
}
|
}
|
||||||
re := that.Db.Get(hotimeName, str, where)
|
re := that.Db.Get(fileConfig.GetString("table"), str, where)
|
||||||
if re == nil {
|
if re == nil {
|
||||||
that.Display(4, "找不到对应信息")
|
that.Display(4, "找不到对应信息")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
for k, v := range re {
|
for k, v := range re {
|
||||||
column := that.MakeCode.TableColumns[hotimeName][k]
|
column := that.MakeCodeRouter[hotimeName].TableColumns[fileConfig.GetString("table")][k]
|
||||||
if column == nil {
|
if column == nil {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|||||||
+8
-3
@@ -64,6 +64,9 @@ var ColumnNameType = []ColumnShow{
|
|||||||
{"idcard", false, true, true, false, "", false},
|
{"idcard", false, true, true, false, "", false},
|
||||||
{"id", true, false, true, false, "", true},
|
{"id", true, false, true, false, "", true},
|
||||||
{"parent_id", true, true, true, false, "", true},
|
{"parent_id", true, true, true, false, "", true},
|
||||||
|
{"amount", true, true, true, false, "money", true},
|
||||||
|
{"content", false, false, false, false, "textArea", false},
|
||||||
|
{"info", false, true, true, false, "textArea", false},
|
||||||
//"sn"{true,true,true,""},
|
//"sn"{true,true,true,""},
|
||||||
{"status", true, true, true, false, "select", false},
|
{"status", true, true, true, false, "select", false},
|
||||||
{"state", true, true, true, false, "select", false},
|
{"state", true, true, true, false, "select", false},
|
||||||
@@ -78,7 +81,7 @@ var ColumnNameType = []ColumnShow{
|
|||||||
{"index", false, false, false, false, "index", false},
|
{"index", false, false, false, false, "index", false},
|
||||||
{"password", false, true, false, false, "password", false},
|
{"password", false, true, false, false, "password", false},
|
||||||
{"pwd", false, true, false, false, "password", false},
|
{"pwd", false, true, false, false, "password", false},
|
||||||
{"info", false, true, true, false, "", false},
|
|
||||||
{"version", false, false, false, false, "", false},
|
{"version", false, false, false, false, "", false},
|
||||||
{"seq", false, true, true, false, "", false},
|
{"seq", false, true, true, false, "", false},
|
||||||
{"sort", false, true, true, false, "", false},
|
{"sort", false, true, true, false, "", false},
|
||||||
@@ -86,7 +89,7 @@ var ColumnNameType = []ColumnShow{
|
|||||||
{"description", false, true, true, false, "", false},
|
{"description", false, true, true, false, "", false},
|
||||||
{"abstract", false, true, true, false, "", false},
|
{"abstract", false, true, true, false, "", false},
|
||||||
{"content", false, true, true, false, "", false},
|
{"content", false, true, true, false, "", false},
|
||||||
{"address", false, true, true, false, "", false},
|
{"address", true, true, true, false, "", false},
|
||||||
{"full_name", false, true, true, false, "", false},
|
{"full_name", false, true, true, false, "", false},
|
||||||
{"create_time", false, false, true, false, "time", true},
|
{"create_time", false, false, true, false, "time", true},
|
||||||
{"modify_time", true, false, true, false, "time", true},
|
{"modify_time", true, false, true, false, "time", true},
|
||||||
@@ -97,7 +100,9 @@ var ColumnNameType = []ColumnShow{
|
|||||||
{"file", false, true, true, false, "file", false},
|
{"file", false, true, true, false, "file", false},
|
||||||
{"age", false, true, true, false, "", false},
|
{"age", false, true, true, false, "", false},
|
||||||
{"email", false, true, true, false, "", false},
|
{"email", false, true, true, false, "", false},
|
||||||
{"time", true, true, true, true, "time", false},
|
{"time", true, true, true, false, "time", false},
|
||||||
{"level", false, false, true, false, "", false},
|
{"level", false, false, true, false, "", false},
|
||||||
{"rule", true, true, true, false, "form", false},
|
{"rule", true, true, true, false, "form", false},
|
||||||
|
{"table", true, false, true, false, "table", false},
|
||||||
|
{"table_id", true, false, true, false, "table_id", false},
|
||||||
}
|
}
|
||||||
|
|||||||
+173
-55
@@ -9,23 +9,26 @@ import (
|
|||||||
"net/http"
|
"net/http"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
"sort"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
type MakeCode struct {
|
type MakeCode struct {
|
||||||
|
FileConfig Map
|
||||||
IndexMenus Map
|
IndexMenus Map
|
||||||
TableConfig Map
|
TableConfig Map
|
||||||
TableColumns map[string]map[string]Map
|
TableColumns map[string]map[string]Map
|
||||||
SearchColumns map[string]map[string]Map
|
SearchColumns map[string]map[string]Map
|
||||||
Config Map
|
Config Map
|
||||||
|
RuleConfig []Map
|
||||||
Error
|
Error
|
||||||
}
|
}
|
||||||
|
|
||||||
func (that *MakeCode) Db2JSON(name string, path string, db *db.HoTimeDB, makeCode bool) {
|
func (that *MakeCode) Db2JSON(db *db.HoTimeDB, config Map) {
|
||||||
isMake := false
|
isMake := false
|
||||||
idSlice := Slice{}
|
idSlice := Slice{}
|
||||||
|
that.FileConfig = config
|
||||||
if that.TableColumns == nil {
|
if that.TableColumns == nil {
|
||||||
that.TableColumns = make(map[string]map[string]Map)
|
that.TableColumns = make(map[string]map[string]Map)
|
||||||
}
|
}
|
||||||
@@ -34,20 +37,48 @@ func (that *MakeCode) Db2JSON(name string, path string, db *db.HoTimeDB, makeCod
|
|||||||
}
|
}
|
||||||
|
|
||||||
//加载配置文件
|
//加载配置文件
|
||||||
btes, err := ioutil.ReadFile(path)
|
btes, err := ioutil.ReadFile(config.GetString("config"))
|
||||||
Config["name"] = name
|
|
||||||
that.Config = DeepCopyMap(Config).(Map)
|
that.Config = DeepCopyMap(Config).(Map)
|
||||||
|
|
||||||
|
that.Config["name"] = config.GetString("table")
|
||||||
if err == nil {
|
if err == nil {
|
||||||
cmap := Map{}
|
cmap := Map{}
|
||||||
//文件是否损坏
|
//文件是否损坏
|
||||||
cmap.JsonToMap(string(btes), &that.Error)
|
cmap.JsonToMap(string(btes), &that.Error)
|
||||||
for k, v := range cmap {
|
for k, v := range cmap {
|
||||||
that.Config[k] = v //程序配置
|
that.Config[k] = v //程序配置
|
||||||
Config[k] = v //系统配置
|
//Config[k] = v //系统配置
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
that.Error.SetError(errors.New("配置文件不存在,或者配置出错,使用缺省默认配置"))
|
that.Error.SetError(errors.New("config配置文件不存在,或者配置出错,使用缺省默认配置"))
|
||||||
}
|
}
|
||||||
|
//加载规则文件
|
||||||
|
btesRule, errRule := ioutil.ReadFile(config.GetString("rule"))
|
||||||
|
that.RuleConfig = []Map{}
|
||||||
|
if errRule == nil {
|
||||||
|
//cmap := Map{}
|
||||||
|
//文件是否损坏
|
||||||
|
ruleLis := ObjToSlice(string(btesRule), &that.Error)
|
||||||
|
//cmap.JSON()
|
||||||
|
for k, _ := range ruleLis {
|
||||||
|
that.RuleConfig = append(that.RuleConfig, ruleLis.GetMap(k))
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
for _, v := range ColumnNameType {
|
||||||
|
that.RuleConfig = append(that.RuleConfig, Map{"name": v.Name, "list": v.List, "edit": v.Edit, "info": v.Info, "must": v.Must, "strict": v.Strict, "type": v.Type})
|
||||||
|
}
|
||||||
|
if db != nil {
|
||||||
|
_ = os.MkdirAll(filepath.Dir(config.GetString("rule")), os.ModeDir)
|
||||||
|
err = ioutil.WriteFile(config.GetString("rule"), []byte(ObjToStr(that.RuleConfig)), os.ModePerm)
|
||||||
|
if err != nil {
|
||||||
|
that.Error.SetError(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
that.Error.SetError(errors.New("rule配置文件不存在,或者配置出错,使用缺省默认配置"))
|
||||||
|
}
|
||||||
|
|
||||||
that.IndexMenus = Map{}
|
that.IndexMenus = Map{}
|
||||||
menusConfig := that.Config.GetSlice("menus")
|
menusConfig := that.Config.GetSlice("menus")
|
||||||
//将配置写入到内存中仅作为判断用
|
//将配置写入到内存中仅作为判断用
|
||||||
@@ -119,7 +150,7 @@ func (that *MakeCode) Db2JSON(name string, path string, db *db.HoTimeDB, makeCod
|
|||||||
}
|
}
|
||||||
|
|
||||||
//数据库反哺
|
//数据库反哺
|
||||||
myInit := strings.Replace(InitTpt, "{{name}}", name, -1)
|
myInit := strings.Replace(InitTpt, "{{name}}", config.GetString("table"), -1)
|
||||||
ctrList := ""
|
ctrList := ""
|
||||||
|
|
||||||
nowTables := make([]Map, 0)
|
nowTables := make([]Map, 0)
|
||||||
@@ -205,38 +236,42 @@ func (that *MakeCode) Db2JSON(name string, path string, db *db.HoTimeDB, makeCod
|
|||||||
coloum["label"] = coloum.GetString("label")[:indexNum]
|
coloum["label"] = coloum.GetString("label")[:indexNum]
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, ColumnName := range ColumnNameType {
|
for _, ColumnName := range that.RuleConfig {
|
||||||
if (ColumnName.Strict && coloum.GetString("name") == ColumnName.Name) ||
|
if (ColumnName.GetBool("strict") && coloum.GetString("name") == ColumnName.GetString("name")) ||
|
||||||
(!ColumnName.Strict && strings.Contains(coloum.GetString("name"), ColumnName.Name)) {
|
(!ColumnName.GetBool("strict") && strings.Contains(coloum.GetString("name"), ColumnName.GetString("name"))) {
|
||||||
//全部都不需要则不加入
|
//全部都不需要则不加入
|
||||||
if ColumnName.Edit == false && ColumnName.List == false && ColumnName.Info == false {
|
if ColumnName.GetBool("edit") == false && ColumnName.GetBool("list") == false && ColumnName.GetBool("info") == false {
|
||||||
coloum["notUse"] = true
|
coloum["notUse"] = true
|
||||||
//continue
|
//continue
|
||||||
}
|
}
|
||||||
coloum["info"] = ColumnName.Info
|
coloum["info"] = ColumnName.GetBool("info")
|
||||||
coloum["edit"] = ColumnName.Edit
|
coloum["edit"] = ColumnName.GetBool("edit")
|
||||||
coloum["add"] = ColumnName.Edit
|
coloum["add"] = ColumnName.GetBool("edit")
|
||||||
coloum["list"] = ColumnName.List
|
coloum["list"] = ColumnName.GetBool("list")
|
||||||
coloum["must"] = ColumnName.Must
|
coloum["must"] = ColumnName.GetBool("must")
|
||||||
|
|
||||||
if ColumnName.Info {
|
if ColumnName.GetBool("info") {
|
||||||
delete(coloum, "info")
|
delete(coloum, "info")
|
||||||
}
|
}
|
||||||
if ColumnName.Edit {
|
if ColumnName.GetBool("edit") {
|
||||||
delete(coloum, "edit")
|
delete(coloum, "edit")
|
||||||
delete(coloum, "add")
|
delete(coloum, "add")
|
||||||
}
|
}
|
||||||
if ColumnName.List {
|
if ColumnName.GetBool("list") {
|
||||||
delete(coloum, "list")
|
delete(coloum, "list")
|
||||||
}
|
}
|
||||||
if ColumnName.Must {
|
if !ColumnName.GetBool("must") {
|
||||||
delete(coloum, "must")
|
delete(coloum, "must")
|
||||||
}
|
}
|
||||||
|
|
||||||
if ColumnName.Type != "" {
|
if ColumnName.GetString("type") != "" {
|
||||||
coloum["type"] = ColumnName.Type
|
if ColumnName.GetString("type") == "time" && coloum["type"] == "number" {
|
||||||
|
coloum["type"] = "unixTime"
|
||||||
|
} else {
|
||||||
|
coloum["type"] = ColumnName.GetString("type")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if ColumnName.Strict && coloum.GetString("name") == ColumnName.Name {
|
if ColumnName.GetBool("strict") && coloum.GetString("name") == ColumnName.GetString("name") {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -267,10 +302,10 @@ func (that *MakeCode) Db2JSON(name string, path string, db *db.HoTimeDB, makeCod
|
|||||||
}
|
}
|
||||||
|
|
||||||
if coloum.GetString("type") == "select" {
|
if coloum.GetString("type") == "select" {
|
||||||
coloum["must"] = true
|
//coloum["must"] = true
|
||||||
coloum["options"] = options
|
coloum["options"] = options
|
||||||
} else if len(options) > 0 {
|
} else if len(options) > 0 {
|
||||||
coloum["must"] = true
|
//coloum["must"] = true
|
||||||
coloum["options"] = options
|
coloum["options"] = options
|
||||||
coloum["type"] = "select"
|
coloum["type"] = "select"
|
||||||
|
|
||||||
@@ -291,16 +326,16 @@ func (that *MakeCode) Db2JSON(name string, path string, db *db.HoTimeDB, makeCod
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if makeCode {
|
if config.GetInt("mode") != 0 {
|
||||||
//创建模块文件
|
//创建模块文件
|
||||||
//判断文件是否存在
|
//判断文件是否存在
|
||||||
//_, err := os.OpenFile(name+"/"+v.GetString("name"), os.O_RDONLY, os.ModePerm)
|
//_, err := os.OpenFile(name+"/"+v.GetString("name"), os.O_RDONLY, os.ModePerm)
|
||||||
_, err := os.Stat(name + "/" + v.GetString("name") + ".go")
|
_, err := os.Stat(config.GetString("name") + "/" + v.GetString("name") + ".go")
|
||||||
if err != nil { //文件不存在,则根据模板创建
|
if err != nil { //文件不存在,则根据模板创建
|
||||||
myCtr := strings.Replace(CtrTpt, "{{name}}", name, -1)
|
myCtr := strings.Replace(CtrTpt, "{{name}}", config.GetString("name"), -1)
|
||||||
myCtr = strings.Replace(myCtr, "{{table}}", v.GetString("name"), -1)
|
myCtr = strings.Replace(myCtr, "{{table}}", v.GetString("name"), -1)
|
||||||
_ = os.MkdirAll(name, os.ModeDir)
|
_ = os.MkdirAll(config.GetString("name"), os.ModeDir)
|
||||||
err = ioutil.WriteFile(name+"/"+v.GetString("name")+".go", []byte(myCtr), os.ModePerm)
|
err = ioutil.WriteFile(config.GetString("name")+"/"+v.GetString("name")+".go", []byte(myCtr), os.ModePerm)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
that.Error.SetError(err)
|
that.Error.SetError(err)
|
||||||
}
|
}
|
||||||
@@ -477,8 +512,17 @@ func (that *MakeCode) Db2JSON(name string, path string, db *db.HoTimeDB, makeCod
|
|||||||
v["value"] = "label"
|
v["value"] = "label"
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
tempC := that.TableConfig.GetMap(tableName).GetSlice("columns")
|
||||||
|
isGet := true
|
||||||
|
for k2, _ := range tempC {
|
||||||
|
if strings.Contains(tempC.GetMap(k2).GetString("name"), "name") || strings.Contains(tempC.GetMap(k2).GetString("name"), "title") {
|
||||||
|
v["value"] = tempC.GetMap(k2).GetString("name")
|
||||||
|
isGet = false
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if len(that.TableConfig.GetMap(tableName).GetSlice("columns")) > 2 {
|
if isGet && len(that.TableConfig.GetMap(tableName).GetSlice("columns")) > 2 {
|
||||||
v["value"] = that.TableConfig.GetMap(tableName).GetSlice("columns").GetMap(1).GetString("name")
|
v["value"] = that.TableConfig.GetMap(tableName).GetSlice("columns").GetMap(1).GetString("name")
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
@@ -506,25 +550,25 @@ func (that *MakeCode) Db2JSON(name string, path string, db *db.HoTimeDB, makeCod
|
|||||||
fmt.Println(id, "---", that.Config.GetString("id"))
|
fmt.Println(id, "---", that.Config.GetString("id"))
|
||||||
that.Config["id"] = id
|
that.Config["id"] = id
|
||||||
|
|
||||||
if makeCode {
|
if config.GetInt("mode") != 0 {
|
||||||
//init文件初始化
|
//init文件初始化
|
||||||
myInit = strings.Replace(myInit, "{{id}}", id, -1)
|
myInit = strings.Replace(myInit, "{{id}}", id, -1)
|
||||||
myInit = strings.Replace(myInit, "{{tablesCtr}}", ctrList, -1)
|
myInit = strings.Replace(myInit, "{{tablesCtr}}", ctrList, -1)
|
||||||
_ = os.MkdirAll(name, os.ModeDir)
|
_ = os.MkdirAll(config.GetString("name"), os.ModeDir)
|
||||||
err = ioutil.WriteFile(name+"/init.go", []byte(myInit), os.ModePerm)
|
err = ioutil.WriteFile(config.GetString("name")+"/init.go", []byte(myInit), os.ModePerm)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
that.Error.SetError(err)
|
that.Error.SetError(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//写入配置文件
|
|
||||||
//var configByte bytes.Buffer
|
|
||||||
|
|
||||||
|
//写入配置文件
|
||||||
//err = json.Indent(&configByte, []byte(that.Config.ToJsonString()), "", "\t")
|
//err = json.Indent(&configByte, []byte(that.Config.ToJsonString()), "", "\t")
|
||||||
_ = os.MkdirAll(filepath.Dir(path), os.ModeDir)
|
_ = os.MkdirAll(filepath.Dir(config.GetString("config")), os.ModeDir)
|
||||||
err = ioutil.WriteFile(path, []byte(that.Config.ToJsonString()), os.ModePerm)
|
err = ioutil.WriteFile(config.GetString("config"), []byte(that.Config.ToJsonString()), os.ModePerm)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
that.Error.SetError(err)
|
that.Error.SetError(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
fmt.Println("有新的代码生成,请重新运行")
|
fmt.Println("有新的代码生成,请重新运行")
|
||||||
os.Exit(-1)
|
os.Exit(-1)
|
||||||
|
|
||||||
@@ -534,7 +578,16 @@ func (that *MakeCode) Info(table string, userData Map, db *db.HoTimeDB) (string,
|
|||||||
reStr := ""
|
reStr := ""
|
||||||
data := Map{}
|
data := Map{}
|
||||||
var ruleData Map
|
var ruleData Map
|
||||||
for _, v := range that.TableColumns[table] {
|
testQu := []string{}
|
||||||
|
testQuData := that.TableColumns[table]
|
||||||
|
for key, _ := range testQuData {
|
||||||
|
//fmt.Println(key, ":", value)
|
||||||
|
testQu = append(testQu, key)
|
||||||
|
}
|
||||||
|
sort.Strings(testQu)
|
||||||
|
|
||||||
|
for _, k := range testQu {
|
||||||
|
v := testQuData[k]
|
||||||
if v == nil {
|
if v == nil {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
@@ -545,7 +598,7 @@ func (that *MakeCode) Info(table string, userData Map, db *db.HoTimeDB) (string,
|
|||||||
//初始化ruleData
|
//初始化ruleData
|
||||||
if ruleData == nil {
|
if ruleData == nil {
|
||||||
ruleData = Map{}
|
ruleData = Map{}
|
||||||
for _, v := range that.TableColumns["admin"] {
|
for _, v := range that.TableColumns[that.FileConfig.GetString("table")] {
|
||||||
if v.GetString("link") != "" &&
|
if v.GetString("link") != "" &&
|
||||||
v.GetString("name") != "parent_id" &&
|
v.GetString("name") != "parent_id" &&
|
||||||
userData.Get(v.GetString("name")) != nil {
|
userData.Get(v.GetString("name")) != nil {
|
||||||
@@ -579,7 +632,7 @@ func (that *MakeCode) Info(table string, userData Map, db *db.HoTimeDB) (string,
|
|||||||
}
|
}
|
||||||
return reStr, data
|
return reStr, data
|
||||||
}
|
}
|
||||||
func (that *MakeCode) Add(table string, req *http.Request) Map {
|
func (that *MakeCode) Add(table string, user Map, req *http.Request) Map {
|
||||||
data := Map{}
|
data := Map{}
|
||||||
for _, v := range that.TableColumns[table] {
|
for _, v := range that.TableColumns[table] {
|
||||||
//不可使用,未在前端展示,但在内存中保持有
|
//不可使用,未在前端展示,但在内存中保持有
|
||||||
@@ -593,6 +646,17 @@ func (that *MakeCode) Add(table string, req *http.Request) Map {
|
|||||||
if v.Get("add") == nil || v.GetBool("add") {
|
if v.Get("add") == nil || v.GetBool("add") {
|
||||||
|
|
||||||
if len(req.Form[v.GetString("name")]) == 0 {
|
if len(req.Form[v.GetString("name")]) == 0 {
|
||||||
|
|
||||||
|
if user[v.GetString("name")] != nil {
|
||||||
|
data[v.GetString("name")] = user[v.GetString("name")]
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if that.FileConfig.GetString("table")+"_id" == v.GetString("name") {
|
||||||
|
data[v.GetString("name")] = user["id"]
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
if v.GetBool("must") {
|
if v.GetBool("must") {
|
||||||
return nil
|
return nil
|
||||||
} else {
|
} else {
|
||||||
@@ -614,12 +678,22 @@ func (that *MakeCode) Add(table string, req *http.Request) Map {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if v.GetString("name") == "create_time" {
|
if v.GetString("name") == "create_time" {
|
||||||
data[v.GetString("name")] = time.Now().Unix()
|
if v.GetString("type") == "unixTime" {
|
||||||
|
data[v.GetString("name")] = time.Now().Unix()
|
||||||
|
}
|
||||||
|
if v.GetString("type") == "time" {
|
||||||
|
data[v.GetString("name")] = time.Now().Format("2006-01-02 15-04-05")
|
||||||
|
}
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
if v.GetString("name") == "modify_time" {
|
if v.GetString("name") == "modify_time" {
|
||||||
data[v.GetString("name")] = time.Now().Unix()
|
if v.GetString("type") == "unixTime" {
|
||||||
|
data[v.GetString("name")] = time.Now().Unix()
|
||||||
|
}
|
||||||
|
if v.GetString("type") == "time" {
|
||||||
|
data[v.GetString("name")] = time.Now().Format("2006-01-02 15-04-05")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if len(data) == 0 {
|
if len(data) == 0 {
|
||||||
@@ -682,12 +756,22 @@ func (that *MakeCode) Search(table string, userData Map, req *http.Request, db *
|
|||||||
data := Map{}
|
data := Map{}
|
||||||
keyword := Map{}
|
keyword := Map{}
|
||||||
daterange := Map{}
|
daterange := Map{}
|
||||||
sort := Map{}
|
sortMap := Map{}
|
||||||
var ruleData Map
|
var ruleData Map
|
||||||
hasUser := false
|
hasUser := false
|
||||||
|
|
||||||
keywordStr := req.FormValue("keyword")
|
keywordStr := req.FormValue("keyword")
|
||||||
for _, v := range that.TableColumns[table] {
|
|
||||||
|
testQu := []string{}
|
||||||
|
testQuData := that.TableColumns[table]
|
||||||
|
for key, _ := range testQuData {
|
||||||
|
//fmt.Println(key, ":", value)
|
||||||
|
testQu = append(testQu, key)
|
||||||
|
}
|
||||||
|
sort.Strings(testQu)
|
||||||
|
|
||||||
|
for _, k := range testQu {
|
||||||
|
v := testQuData[k]
|
||||||
//不可使用,未在前端展示,但在内存中保持有
|
//不可使用,未在前端展示,但在内存中保持有
|
||||||
if v.GetBool("notUse") {
|
if v.GetBool("notUse") {
|
||||||
|
|
||||||
@@ -702,6 +786,16 @@ func (that *MakeCode) Search(table string, userData Map, req *http.Request, db *
|
|||||||
v.GetString("link") + "." + v.GetString("value") + " AS " +
|
v.GetString("link") + "." + v.GetString("value") + " AS " +
|
||||||
v.GetString("link") + "_" + v.GetString("name") + "_" + v.GetString("value") + ","
|
v.GetString("link") + "_" + v.GetString("name") + "_" + v.GetString("value") + ","
|
||||||
|
|
||||||
|
if v.GetString("value") == "name" && that.TableColumns[v.GetString("link")]["nickname"] != nil {
|
||||||
|
reStr += v.GetString("link") + ".nickname AS " +
|
||||||
|
v.GetString("link") + "_" + v.GetString("name") + "_nickname,"
|
||||||
|
}
|
||||||
|
|
||||||
|
if that.TableColumns[v.GetString("link")]["phone"] != nil {
|
||||||
|
reStr += v.GetString("link") + ".phone AS " +
|
||||||
|
v.GetString("link") + "_" + v.GetString("name") + "_phone,"
|
||||||
|
}
|
||||||
|
|
||||||
leftJoin["[>]"+v.GetString("link")] =
|
leftJoin["[>]"+v.GetString("link")] =
|
||||||
table + "." + v.GetString("name") + "=" +
|
table + "." + v.GetString("name") + "=" +
|
||||||
v.GetString("link") + ".id"
|
v.GetString("link") + ".id"
|
||||||
@@ -725,7 +819,7 @@ func (that *MakeCode) Search(table string, userData Map, req *http.Request, db *
|
|||||||
//初始化ruleData
|
//初始化ruleData
|
||||||
if ruleData == nil {
|
if ruleData == nil {
|
||||||
ruleData = Map{}
|
ruleData = Map{}
|
||||||
for _, v := range that.TableColumns["admin"] {
|
for _, v := range that.TableColumns[that.FileConfig.GetString("table")] {
|
||||||
if v.GetString("link") != "" &&
|
if v.GetString("link") != "" &&
|
||||||
v.GetString("name") != "parent_id" &&
|
v.GetString("name") != "parent_id" &&
|
||||||
userData.Get(v.GetString("name")) != nil {
|
userData.Get(v.GetString("name")) != nil {
|
||||||
@@ -796,14 +890,36 @@ func (that *MakeCode) Search(table string, userData Map, req *http.Request, db *
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
//日期类型
|
//日期类型
|
||||||
if searchItemName == "daterange" && v.GetString("type") == "time" {
|
if searchItemName == "daterange" {
|
||||||
//fmt.Println(req.Form["daterange"])
|
if v.GetString("type") == "unixtime" {
|
||||||
daterange[table+"."+v.GetString("name")+"[<>]"] = ObjToSlice(req.Form["daterange"])
|
//fmt.Println(req.Form["daterange"])
|
||||||
|
if len(req.Form["daterange"]) == 1 {
|
||||||
|
daterange[table+"."+v.GetString("name")+"[<]"] = req.FormValue("daterange")
|
||||||
|
} else if len(req.Form["daterange"]) == 2 {
|
||||||
|
|
||||||
|
daterange[table+"."+v.GetString("name")+"[<>]"] = ObjToSlice(req.Form["daterange"])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if v.GetString("type") == "time" {
|
||||||
|
//fmt.Println(req.Form["daterange"])
|
||||||
|
|
||||||
|
if len(req.Form["daterange"]) == 1 {
|
||||||
|
t := time.Unix(ObjToCeilInt64(req.FormValue("daterange")), 0).Format("2006-01-02 15:04:05")
|
||||||
|
|
||||||
|
daterange[table+"."+v.GetString("name")+"[<]"] = t
|
||||||
|
|
||||||
|
} else if len(req.Form["daterange"]) == 2 {
|
||||||
|
t1 := time.Unix(ObjToCeilInt64(req.Form["daterange"][0]), 0).Format("2006-01-02 15:04:05")
|
||||||
|
t2 := time.Unix(ObjToCeilInt64(req.Form["daterange"][1]), 0).Format("2006-01-02 15:04:05")
|
||||||
|
daterange[table+"."+v.GetString("name")+"[<>]"] = Slice{t1, t2}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if searchItem.GetString("name") == "sort" {
|
if searchItem.GetString("name") == "sort" {
|
||||||
sort["ORDER"] = table + "." + reqValue
|
sortMap["ORDER"] = table + "." + reqValue
|
||||||
}
|
}
|
||||||
|
|
||||||
continue
|
continue
|
||||||
@@ -823,8 +939,8 @@ func (that *MakeCode) Search(table string, userData Map, req *http.Request, db *
|
|||||||
data[table+"."+searchItemName] = reqValue
|
data[table+"."+searchItemName] = reqValue
|
||||||
|
|
||||||
}
|
}
|
||||||
if sort["ORDER"] == nil {
|
if sortMap["ORDER"] == nil {
|
||||||
sort["ORDER"] = table + ".id DESC"
|
sortMap["ORDER"] = table + ".id DESC"
|
||||||
}
|
}
|
||||||
|
|
||||||
where := Map{}
|
where := Map{}
|
||||||
@@ -850,7 +966,9 @@ func (that *MakeCode) Search(table string, userData Map, req *http.Request, db *
|
|||||||
}
|
}
|
||||||
|
|
||||||
if len(daterange) > 1 {
|
if len(daterange) > 1 {
|
||||||
if data["AND"] != nil {
|
if data == nil || len(data) == 0 {
|
||||||
|
data = Map{"OR": daterange}
|
||||||
|
} else {
|
||||||
data = Map{"AND": Map{"AND": data, "OR": daterange}}
|
data = Map{"AND": Map{"AND": data, "OR": daterange}}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -869,8 +987,8 @@ func (that *MakeCode) Search(table string, userData Map, req *http.Request, db *
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(sort) != 0 {
|
if len(sortMap) != 0 {
|
||||||
for k, v := range sort {
|
for k, v := range sortMap {
|
||||||
where[k] = v
|
where[k] = v
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+16
-10
@@ -15,6 +15,7 @@ var Project = Proj{
|
|||||||
{{tablesCtr}}
|
{{tablesCtr}}
|
||||||
"hotime":Ctr{
|
"hotime":Ctr{
|
||||||
"login": func(that *Context) {
|
"login": func(that *Context) {
|
||||||
|
|
||||||
name := that.Req.FormValue("name")
|
name := that.Req.FormValue("name")
|
||||||
password := that.Req.FormValue("password")
|
password := that.Req.FormValue("password")
|
||||||
if name == "" || password == "" {
|
if name == "" || password == "" {
|
||||||
@@ -36,8 +37,9 @@ var Project = Proj{
|
|||||||
that.Display(0, "退出登录成功")
|
that.Display(0, "退出登录成功")
|
||||||
},
|
},
|
||||||
"info": func(that *Context) {
|
"info": func(that *Context) {
|
||||||
|
hotimeName := that.RouterString[0]
|
||||||
data := that.Db.Get("admin", "*", Map{"id": that.Session("admin_id").ToCeilInt()})
|
data := that.Db.Get("admin", "*", Map{"id": that.Session("admin_id").ToCeilInt()})
|
||||||
str, inData := that.MakeCode.Info("admin", data, that.Db)
|
str, inData := that.MakeCodeRouter[hotimeName].Info("admin", data, that.Db)
|
||||||
where := Map{"id": that.Session("admin_id").ToCeilInt()}
|
where := Map{"id": that.Session("admin_id").ToCeilInt()}
|
||||||
if len(inData) ==1 {
|
if len(inData) ==1 {
|
||||||
inData["id"] =where["id"]
|
inData["id"] =where["id"]
|
||||||
@@ -52,7 +54,7 @@ var Project = Proj{
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
for k, v := range re {
|
for k, v := range re {
|
||||||
column := that.MakeCode.TableColumns["admin"][k]
|
column := that.MakeCodeRouter[hotimeName].TableColumns["admin"][k]
|
||||||
if column == nil {
|
if column == nil {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
@@ -76,8 +78,9 @@ import (
|
|||||||
|
|
||||||
var {{table}}Ctr = Ctr{
|
var {{table}}Ctr = Ctr{
|
||||||
"info": func(that *Context) {
|
"info": func(that *Context) {
|
||||||
|
hotimeName := that.RouterString[0]
|
||||||
data := that.Db.Get("admin", "*", Map{"id": that.Session("admin_id").ToCeilInt()})
|
data := that.Db.Get("admin", "*", Map{"id": that.Session("admin_id").ToCeilInt()})
|
||||||
str, inData := that.MakeCode.Info(that.RouterString[1], data, that.Db)
|
str, inData := that.MakeCodeRouter[hotimeName].Info(that.RouterString[1], data, that.Db)
|
||||||
where := Map{"id": that.RouterString[2]}
|
where := Map{"id": that.RouterString[2]}
|
||||||
|
|
||||||
if len(inData) ==1 {
|
if len(inData) ==1 {
|
||||||
@@ -96,7 +99,7 @@ var {{table}}Ctr = Ctr{
|
|||||||
}
|
}
|
||||||
|
|
||||||
for k, v := range re {
|
for k, v := range re {
|
||||||
column := that.MakeCode.TableColumns[that.RouterString[1]][k]
|
column := that.MakeCodeRouter[hotimeName].TableColumns[that.RouterString[1]][k]
|
||||||
if column == nil {
|
if column == nil {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
@@ -108,7 +111,8 @@ var {{table}}Ctr = Ctr{
|
|||||||
that.Display(0, re)
|
that.Display(0, re)
|
||||||
},
|
},
|
||||||
"add": func(that *Context) {
|
"add": func(that *Context) {
|
||||||
inData := that.MakeCode.Add(that.RouterString[1], that.Req)
|
hotimeName := that.RouterString[0]
|
||||||
|
inData := that.MakeCodeRouter[hotimeName].Add(that.RouterString[1], that.Req)
|
||||||
if inData == nil {
|
if inData == nil {
|
||||||
that.Display(3, "请求参数不足")
|
that.Display(3, "请求参数不足")
|
||||||
return
|
return
|
||||||
@@ -134,7 +138,8 @@ var {{table}}Ctr = Ctr{
|
|||||||
that.Display(0, re)
|
that.Display(0, re)
|
||||||
},
|
},
|
||||||
"update": func(that *Context) {
|
"update": func(that *Context) {
|
||||||
inData := that.MakeCode.Edit(that.RouterString[1], that.Req)
|
hotimeName := that.RouterString[0]
|
||||||
|
inData := that.MakeCodeRouter[hotimeName].Edit(that.RouterString[1], that.Req)
|
||||||
if inData == nil {
|
if inData == nil {
|
||||||
that.Display(3, "没有找到要更新的数据")
|
that.Display(3, "没有找到要更新的数据")
|
||||||
return
|
return
|
||||||
@@ -165,7 +170,8 @@ var {{table}}Ctr = Ctr{
|
|||||||
that.Display(0, re)
|
that.Display(0, re)
|
||||||
},
|
},
|
||||||
"remove": func(that *Context) {
|
"remove": func(that *Context) {
|
||||||
inData := that.MakeCode.Delete(that.RouterString[1], that.Req)
|
hotimeName := that.RouterString[0]
|
||||||
|
inData := that.MakeCodeRouter[hotimeName].Delete(that.RouterString[1], that.Req)
|
||||||
if inData == nil {
|
if inData == nil {
|
||||||
that.Display(3, "请求参数不足")
|
that.Display(3, "请求参数不足")
|
||||||
return
|
return
|
||||||
@@ -186,10 +192,10 @@ var {{table}}Ctr = Ctr{
|
|||||||
},
|
},
|
||||||
|
|
||||||
"search": func(that *Context) {
|
"search": func(that *Context) {
|
||||||
|
hotimeName := that.RouterString[0]
|
||||||
data := that.Db.Get("admin", "*", Map{"id": that.Session("admin_id").ToCeilInt()})
|
data := that.Db.Get("admin", "*", Map{"id": that.Session("admin_id").ToCeilInt()})
|
||||||
|
|
||||||
columnStr, leftJoin, where := that.MakeCode.Search(that.RouterString[1], data, that.Req, that.Db)
|
columnStr, leftJoin, where := that.MakeCodeRouter[hotimeName].Search(that.RouterString[1], data, that.Req, that.Db)
|
||||||
|
|
||||||
page := ObjToInt(that.Req.FormValue("page"))
|
page := ObjToInt(that.Req.FormValue("page"))
|
||||||
pageSize := ObjToInt(that.Req.FormValue("pageSize"))
|
pageSize := ObjToInt(that.Req.FormValue("pageSize"))
|
||||||
@@ -208,7 +214,7 @@ var {{table}}Ctr = Ctr{
|
|||||||
|
|
||||||
for _, v := range reData {
|
for _, v := range reData {
|
||||||
for k, _ := range v {
|
for k, _ := range v {
|
||||||
column := that.MakeCode.TableColumns[that.RouterString[1]][k]
|
column := that.MakeCodeRouter[hotimeName].TableColumns[that.RouterString[1]][k]
|
||||||
if column == nil {
|
if column == nil {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,6 +4,8 @@ import (
|
|||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
"reflect"
|
"reflect"
|
||||||
|
"sort"
|
||||||
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
//hotime的常用map
|
//hotime的常用map
|
||||||
@@ -100,6 +102,30 @@ func (that Map) GetBool(key string, err ...*Error) bool {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (that Map) GetTime(key string, err ...*Error) time.Time {
|
||||||
|
|
||||||
|
v := ObjToTime((that)[key], err...)
|
||||||
|
return v
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
func (that Map) RangeSort(callback func(k string, v interface{}) (isEnd bool)) {
|
||||||
|
testQu := []string{}
|
||||||
|
//testQuData:= qu[0].(Map)
|
||||||
|
for key, _ := range that {
|
||||||
|
//fmt.Println(key, ":", value)
|
||||||
|
testQu = append(testQu, key)
|
||||||
|
}
|
||||||
|
sort.Strings(testQu)
|
||||||
|
for _, k := range testQu {
|
||||||
|
re := callback(k, that[k])
|
||||||
|
if re {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
func (that Map) GetMap(key string, err ...*Error) Map {
|
func (that Map) GetMap(key string, err ...*Error) Map {
|
||||||
//var data Slice
|
//var data Slice
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
package common
|
package common
|
||||||
|
|
||||||
|
import "time"
|
||||||
|
|
||||||
//对象封装方便取用
|
//对象封装方便取用
|
||||||
type Obj struct {
|
type Obj struct {
|
||||||
Data interface{}
|
Data interface{}
|
||||||
@@ -18,6 +20,13 @@ func (that *Obj) ToInt(err ...Error) int {
|
|||||||
return ObjToInt(that.Data, &that.Error)
|
return ObjToInt(that.Data, &that.Error)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (that *Obj) ToTime(err ...Error) time.Time {
|
||||||
|
if len(err) != 0 {
|
||||||
|
that.Error = err[0]
|
||||||
|
}
|
||||||
|
return ObjToTime(that.Data, &that.Error)
|
||||||
|
}
|
||||||
|
|
||||||
func (that *Obj) ToInt64(err ...Error) int64 {
|
func (that *Obj) ToInt64(err ...Error) int64 {
|
||||||
if len(err) != 0 {
|
if len(err) != 0 {
|
||||||
that.Error = err[0]
|
that.Error = err[0]
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import (
|
|||||||
"errors"
|
"errors"
|
||||||
"math"
|
"math"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
//仅限于hotime.Slice
|
//仅限于hotime.Slice
|
||||||
@@ -96,6 +97,65 @@ func ObjToSlice(obj interface{}, e ...*Error) Slice {
|
|||||||
return v
|
return v
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func ObjToTime(obj interface{}, e ...*Error) time.Time {
|
||||||
|
|
||||||
|
tInt := ObjToInt64(obj)
|
||||||
|
//字符串类型,只支持标准mysql datetime格式
|
||||||
|
if tInt == 0 {
|
||||||
|
tStr := ObjToStr(obj)
|
||||||
|
|
||||||
|
if len(tStr) > 18 {
|
||||||
|
t, e := time.Parse("2006-01-02 15:04:05", tStr)
|
||||||
|
if e == nil {
|
||||||
|
return t
|
||||||
|
}
|
||||||
|
} else if len(tStr) > 15 {
|
||||||
|
t, e := time.Parse("2006-01-02 15:04", tStr)
|
||||||
|
if e == nil {
|
||||||
|
return t
|
||||||
|
}
|
||||||
|
} else if len(tStr) > 12 {
|
||||||
|
t, e := time.Parse("2006-01-02 15", tStr)
|
||||||
|
if e == nil {
|
||||||
|
return t
|
||||||
|
}
|
||||||
|
} else if len(tStr) > 9 {
|
||||||
|
t, e := time.Parse("2006-01-02", tStr)
|
||||||
|
if e == nil {
|
||||||
|
return t
|
||||||
|
}
|
||||||
|
} else if len(tStr) > 6 {
|
||||||
|
t, e := time.Parse("2006-01", tStr)
|
||||||
|
if e == nil {
|
||||||
|
return t
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
//纳秒级别
|
||||||
|
if len(ObjToStr(tInt)) > 16 {
|
||||||
|
|
||||||
|
return time.Time{}.Add(time.Nanosecond * time.Duration(tInt))
|
||||||
|
//微秒级别
|
||||||
|
} else if len(ObjToStr(tInt)) > 13 {
|
||||||
|
return time.Time{}.Add(time.Microsecond * time.Duration(tInt))
|
||||||
|
//毫秒级别
|
||||||
|
} else if len(ObjToStr(tInt)) > 10 {
|
||||||
|
return time.Time{}.Add(time.Millisecond * time.Duration(tInt))
|
||||||
|
//秒级别
|
||||||
|
} else if len(ObjToStr(tInt)) > 9 {
|
||||||
|
return time.Time{}.Add(time.Second * time.Duration(tInt))
|
||||||
|
} else if len(ObjToStr(tInt)) > 3 {
|
||||||
|
t, e := time.Parse("2006", ObjToStr(tInt))
|
||||||
|
if e == nil {
|
||||||
|
return t
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return time.Time{}
|
||||||
|
}
|
||||||
|
|
||||||
func ObjToFloat64(obj interface{}, e ...*Error) float64 {
|
func ObjToFloat64(obj interface{}, e ...*Error) float64 {
|
||||||
var err error
|
var err error
|
||||||
v := float64(0)
|
v := float64(0)
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ package common
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Slice []interface{}
|
type Slice []interface{}
|
||||||
@@ -14,6 +15,13 @@ func (that Slice) GetString(key int, err ...*Error) string {
|
|||||||
return ObjToStr((that)[key])
|
return ObjToStr((that)[key])
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (that Slice) GetTime(key int, err ...*Error) time.Time {
|
||||||
|
|
||||||
|
v := ObjToTime((that)[key], err...)
|
||||||
|
return v
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
// GetInt 获取Int
|
// GetInt 获取Int
|
||||||
func (that Slice) GetInt(key int, err ...*Error) int {
|
func (that Slice) GetInt(key int, err ...*Error) int {
|
||||||
v := ObjToInt((that)[key], err...)
|
v := ObjToInt((that)[key], err...)
|
||||||
|
|||||||
+20
-1
@@ -6,16 +6,19 @@ import (
|
|||||||
. "code.hoteas.com/golang/hotime/db"
|
. "code.hoteas.com/golang/hotime/db"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Context struct {
|
type Context struct {
|
||||||
*Application
|
*Application
|
||||||
Resp http.ResponseWriter
|
Resp http.ResponseWriter
|
||||||
Req *http.Request
|
Req *http.Request
|
||||||
|
Log Map //日志有则创建
|
||||||
RouterString []string
|
RouterString []string
|
||||||
Config Map
|
Config Map
|
||||||
Db *HoTimeDB
|
Db *HoTimeDB
|
||||||
RespData Map
|
RespData Map
|
||||||
|
RespFunc func()
|
||||||
CacheIns
|
CacheIns
|
||||||
SessionIns
|
SessionIns
|
||||||
DataSize int
|
DataSize int
|
||||||
@@ -57,12 +60,28 @@ func (that *Context) Display(statu int, data interface{}) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (that *Context) View() {
|
func (that *Context) View() {
|
||||||
|
if that.RespFunc != nil {
|
||||||
|
that.RespFunc()
|
||||||
|
}
|
||||||
if that.RespData == nil {
|
if that.RespData == nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
//创建日志
|
||||||
|
if that.Log != nil {
|
||||||
|
that.Log["time"] = time.Now().Unix()
|
||||||
|
if that.Session("admin_id").Data != nil {
|
||||||
|
that.Log["admin_id"] = that.Session("admin_id").ToCeilInt()
|
||||||
|
}
|
||||||
|
if that.Session("user_id").Data != nil {
|
||||||
|
that.Log["user_id"] = that.Session("user_id").ToCeilInt()
|
||||||
|
}
|
||||||
|
that.Db.Insert("logs", that.Log)
|
||||||
|
}
|
||||||
|
|
||||||
d, err := json.Marshal(that.RespData)
|
d, err := json.Marshal(that.RespData)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
that.Display(1, err.Error())
|
||||||
|
that.View()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
that.DataSize = len(d)
|
that.DataSize = len(d)
|
||||||
|
|||||||
+71
-21
@@ -10,6 +10,7 @@ import (
|
|||||||
_ "github.com/mattn/go-sqlite3"
|
_ "github.com/mattn/go-sqlite3"
|
||||||
"os"
|
"os"
|
||||||
"reflect"
|
"reflect"
|
||||||
|
"sort"
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -42,32 +43,32 @@ func (that *HoTimeDB) GetType() string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Action 事务,如果action返回true则执行成功;false则回滚
|
// Action 事务,如果action返回true则执行成功;false则回滚
|
||||||
func (that *HoTimeDB) Action(action func(db HoTimeDB) bool) bool {
|
func (that *HoTimeDB) Action(action func(db HoTimeDB) (isSuccess bool)) (isSuccess bool) {
|
||||||
db := HoTimeDB{DB: that.DB, HoTimeCache: that.HoTimeCache, Prefix: that.Prefix}
|
db := HoTimeDB{DB: that.DB, HoTimeCache: that.HoTimeCache, Prefix: that.Prefix}
|
||||||
tx, err := db.Begin()
|
tx, err := db.Begin()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
that.LastErr.SetError(err)
|
that.LastErr.SetError(err)
|
||||||
return false
|
return isSuccess
|
||||||
}
|
}
|
||||||
|
|
||||||
db.Tx = tx
|
db.Tx = tx
|
||||||
|
|
||||||
result := action(db)
|
isSuccess = action(db)
|
||||||
|
|
||||||
if !result {
|
if !isSuccess {
|
||||||
err = db.Tx.Rollback()
|
err = db.Tx.Rollback()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
that.LastErr.SetError(err)
|
that.LastErr.SetError(err)
|
||||||
return false
|
return isSuccess
|
||||||
}
|
}
|
||||||
return result
|
return isSuccess
|
||||||
}
|
}
|
||||||
err = db.Tx.Commit()
|
err = db.Tx.Commit()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
that.LastErr.SetError(err)
|
that.LastErr.SetError(err)
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
return result
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
func (that *HoTimeDB) InitDb(err ...*Error) *Error {
|
func (that *HoTimeDB) InitDb(err ...*Error) *Error {
|
||||||
@@ -447,18 +448,27 @@ func (that *HoTimeDB) Select(table string, qu ...interface{}) []Map {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if join {
|
if join {
|
||||||
for k, v := range qu[0].(Map) {
|
var testQu = []string{}
|
||||||
|
testQuData := qu[0].(Map)
|
||||||
|
for key, _ := range testQuData {
|
||||||
|
//fmt.Println(key, ":", value)
|
||||||
|
testQu = append(testQu, key)
|
||||||
|
}
|
||||||
|
sort.Strings(testQu)
|
||||||
|
|
||||||
|
for _, k := range testQu {
|
||||||
|
v := testQuData[k]
|
||||||
switch Substr(k, 0, 3) {
|
switch Substr(k, 0, 3) {
|
||||||
case "[>]":
|
case "[>]":
|
||||||
query += " LEFT JOIN " + Substr(k, 3, len(k)-3) + " ON " + v.(string)
|
query += " LEFT JOIN `" + Substr(k, 3, len(k)-3) + "` ON " + v.(string)
|
||||||
case "[<]":
|
case "[<]":
|
||||||
query += " RIGHT JOIN " + Substr(k, 3, len(k)-3) + " ON " + v.(string)
|
query += " RIGHT JOIN `" + Substr(k, 3, len(k)-3) + "` ON " + v.(string)
|
||||||
}
|
}
|
||||||
switch Substr(k, 0, 4) {
|
switch Substr(k, 0, 4) {
|
||||||
case "[<>]":
|
case "[<>]":
|
||||||
query += " FULL JOIN " + Substr(k, 4, len(k)-4) + " ON " + v.(string)
|
query += " FULL JOIN `" + Substr(k, 4, len(k)-4) + "` ON " + v.(string)
|
||||||
case "[><]":
|
case "[><]":
|
||||||
query += " INNER JOIN " + Substr(k, 4, len(k)-4) + " ON " + v.(string)
|
query += " INNER JOIN `" + Substr(k, 4, len(k)-4) + "` ON " + v.(string)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -560,7 +570,15 @@ func (that *HoTimeDB) where(data Map) (string, []interface{}) {
|
|||||||
|
|
||||||
res := make([]interface{}, 0)
|
res := make([]interface{}, 0)
|
||||||
//AND OR判断
|
//AND OR判断
|
||||||
for k, v := range data {
|
testQu := []string{}
|
||||||
|
//testQuData:= qu[0].(Map)
|
||||||
|
for key, _ := range data {
|
||||||
|
//fmt.Println(key, ":", value)
|
||||||
|
testQu = append(testQu, key)
|
||||||
|
}
|
||||||
|
sort.Strings(testQu)
|
||||||
|
for _, k := range testQu {
|
||||||
|
v := data[k]
|
||||||
x := 0
|
x := 0
|
||||||
for i := 0; i < len(condition); i++ {
|
for i := 0; i < len(condition); i++ {
|
||||||
|
|
||||||
@@ -607,7 +625,15 @@ func (that *HoTimeDB) where(data Map) (string, []interface{}) {
|
|||||||
|
|
||||||
//特殊字符
|
//特殊字符
|
||||||
for j := 0; j < len(vcond); j++ {
|
for j := 0; j < len(vcond); j++ {
|
||||||
for k, v := range data {
|
testQu := []string{}
|
||||||
|
//testQuData:= qu[0].(Map)
|
||||||
|
for key, _ := range data {
|
||||||
|
//fmt.Println(key, ":", value)
|
||||||
|
testQu = append(testQu, key)
|
||||||
|
}
|
||||||
|
sort.Strings(testQu)
|
||||||
|
for _, k := range testQu {
|
||||||
|
v := data[k]
|
||||||
if vcond[j] == k {
|
if vcond[j] == k {
|
||||||
if k == "ORDER" {
|
if k == "ORDER" {
|
||||||
where += " " + k + " BY "
|
where += " " + k + " BY "
|
||||||
@@ -881,7 +907,15 @@ func (that *HoTimeDB) cond(tag string, data Map) (string, []interface{}) {
|
|||||||
res := make([]interface{}, 0)
|
res := make([]interface{}, 0)
|
||||||
lens := len(data)
|
lens := len(data)
|
||||||
//fmt.Println(lens)
|
//fmt.Println(lens)
|
||||||
for k, v := range data {
|
testQu := []string{}
|
||||||
|
//testQuData:= qu[0].(Map)
|
||||||
|
for key, _ := range data {
|
||||||
|
//fmt.Println(key, ":", value)
|
||||||
|
testQu = append(testQu, key)
|
||||||
|
}
|
||||||
|
sort.Strings(testQu)
|
||||||
|
for _, k := range testQu {
|
||||||
|
v := data[k]
|
||||||
x := 0
|
x := 0
|
||||||
for i := 0; i < len(condition); i++ {
|
for i := 0; i < len(condition); i++ {
|
||||||
|
|
||||||
@@ -999,13 +1033,29 @@ func (that *HoTimeDB) Insert(table string, data map[string]interface{}) int64 {
|
|||||||
tempLen := 0
|
tempLen := 0
|
||||||
for k, v := range data {
|
for k, v := range data {
|
||||||
tempLen++
|
tempLen++
|
||||||
values = append(values, v)
|
|
||||||
if tempLen < lens {
|
vstr := "?"
|
||||||
queryString += "`" + k + "`,"
|
if Substr(k, len(k)-3, 3) == "[#]" {
|
||||||
valueString += "?,"
|
k = strings.Replace(k, "[#]", "", -1)
|
||||||
|
|
||||||
|
vstr = ObjToStr(v)
|
||||||
|
if tempLen < lens {
|
||||||
|
queryString += "`" + k + "`,"
|
||||||
|
valueString += vstr + ","
|
||||||
|
} else {
|
||||||
|
queryString += "`" + k + "`) "
|
||||||
|
valueString += vstr + ");"
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
queryString += "`" + k + "`) "
|
|
||||||
valueString += "?);"
|
values = append(values, v)
|
||||||
|
if tempLen < lens {
|
||||||
|
queryString += "`" + k + "`,"
|
||||||
|
valueString += "?,"
|
||||||
|
} else {
|
||||||
|
queryString += "`" + k + "`) "
|
||||||
|
valueString += "?);"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -58,6 +58,14 @@ func (that *company) GetCompanyOtherAll(name string) Map {
|
|||||||
return res
|
return res
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetCompanyBaseInfo 获取企业基础信息
|
||||||
|
func (that *company) GetCompanyList(name string) (Map, error) {
|
||||||
|
url := "/fuzzyQueryCompanyInfo/"
|
||||||
|
|
||||||
|
body, err := that.basePost(url, name)
|
||||||
|
return ObjToMap(body), err
|
||||||
|
}
|
||||||
|
|
||||||
// GetCompanyBaseInfo 获取企业基础信息
|
// GetCompanyBaseInfo 获取企业基础信息
|
||||||
func (that *company) GetCompanyBaseInfo(name string) (Map, error) {
|
func (that *company) GetCompanyBaseInfo(name string) (Map, error) {
|
||||||
url := "/getCompanyBaseInfo/"
|
url := "/getCompanyBaseInfo/"
|
||||||
|
|||||||
@@ -24,8 +24,8 @@ func (that *tencent) Init(secretId, secretKey string) {
|
|||||||
that.secretId = secretId
|
that.secretId = secretId
|
||||||
that.secretKey = secretKey
|
that.secretKey = secretKey
|
||||||
that.credential = common.NewCredential(
|
that.credential = common.NewCredential(
|
||||||
"AKIDOgT8cKCQksnY7yKATaYO7j9ORJzSYohP",
|
that.secretId,
|
||||||
"GNXgjdN4czA9ya0FNMApVJzTmsmU0KSN",
|
that.secretKey,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,79 @@
|
|||||||
|
package wechat
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/silenceper/wechat/v2"
|
||||||
|
"github.com/silenceper/wechat/v2/cache"
|
||||||
|
"github.com/silenceper/wechat/v2/officialaccount"
|
||||||
|
h5config "github.com/silenceper/wechat/v2/officialaccount/config"
|
||||||
|
"github.com/silenceper/wechat/v2/officialaccount/js"
|
||||||
|
"github.com/silenceper/wechat/v2/officialaccount/oauth"
|
||||||
|
)
|
||||||
|
|
||||||
|
//基于此文档开发
|
||||||
|
//https://github.com/silenceper/wechat/blob/v2/doc/api/officialaccount.md
|
||||||
|
type h5Program struct {
|
||||||
|
Memory *cache.Memory
|
||||||
|
Config *h5config.Config
|
||||||
|
*officialaccount.OfficialAccount
|
||||||
|
weixin *wechat.Wechat //微信登录实例
|
||||||
|
}
|
||||||
|
|
||||||
|
var H5Program = h5Program{}
|
||||||
|
|
||||||
|
// Init 初始化
|
||||||
|
func (that *h5Program) Init(appid string, appsecret string) {
|
||||||
|
that.weixin = wechat.NewWechat()
|
||||||
|
that.Memory = cache.NewMemory()
|
||||||
|
that.Config = &h5config.Config{
|
||||||
|
AppID: appid,
|
||||||
|
AppSecret: appsecret,
|
||||||
|
//Token: "xxx",
|
||||||
|
//EncodingAESKey: "xxxx",
|
||||||
|
Cache: that.Memory,
|
||||||
|
}
|
||||||
|
that.OfficialAccount = that.weixin.GetOfficialAccount(that.Config)
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetUserInfo 获取用户信息
|
||||||
|
func (that *h5Program) GetUserInfo(code string) (appid string, resToken oauth.ResAccessToken, userInfo oauth.UserInfo, err error) {
|
||||||
|
auth := that.GetOauth()
|
||||||
|
//weixin.GetOpenPlatform()
|
||||||
|
resToken, err = auth.GetUserAccessToken(code)
|
||||||
|
if err != nil {
|
||||||
|
|
||||||
|
return auth.AppID, resToken, userInfo, err
|
||||||
|
}
|
||||||
|
|
||||||
|
//getUserInfo
|
||||||
|
userInfo, err = auth.GetUserInfo(resToken.AccessToken, resToken.OpenID, "")
|
||||||
|
if err != nil {
|
||||||
|
return auth.AppID, resToken, userInfo, err
|
||||||
|
}
|
||||||
|
|
||||||
|
return auth.AppID, resToken, userInfo, err
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetSignUrl js url签名
|
||||||
|
func (that *h5Program) GetSignUrl(signUrl string) (*js.Config, error) {
|
||||||
|
|
||||||
|
js := that.OfficialAccount.GetJs()
|
||||||
|
cfg1, e := js.GetConfig(signUrl)
|
||||||
|
if e != nil {
|
||||||
|
return nil, e
|
||||||
|
}
|
||||||
|
|
||||||
|
return cfg1, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetSignUrl js url签名
|
||||||
|
//func (that *h5Program) GetJsPay(signUrl string) (*js.Config, error) {
|
||||||
|
// //
|
||||||
|
// //js := that.OfficialAccount().GetJs()
|
||||||
|
// //
|
||||||
|
// //cfg1, e := js.GetConfig(signUrl)
|
||||||
|
// //if e != nil {
|
||||||
|
// // return nil, e
|
||||||
|
// //}
|
||||||
|
//
|
||||||
|
// return cfg1, nil
|
||||||
|
//}
|
||||||
@@ -0,0 +1,66 @@
|
|||||||
|
package wechat
|
||||||
|
|
||||||
|
import (
|
||||||
|
"errors"
|
||||||
|
"github.com/silenceper/wechat/v2"
|
||||||
|
"github.com/silenceper/wechat/v2/cache"
|
||||||
|
"github.com/silenceper/wechat/v2/miniprogram"
|
||||||
|
"github.com/silenceper/wechat/v2/miniprogram/auth"
|
||||||
|
"github.com/silenceper/wechat/v2/miniprogram/config"
|
||||||
|
"github.com/silenceper/wechat/v2/miniprogram/encryptor"
|
||||||
|
)
|
||||||
|
|
||||||
|
type miniProgram struct {
|
||||||
|
Memory *cache.Memory
|
||||||
|
Config *config.Config
|
||||||
|
weixin *wechat.Wechat //微信登录实例
|
||||||
|
*miniprogram.MiniProgram
|
||||||
|
}
|
||||||
|
|
||||||
|
var MiniProgram = miniProgram{}
|
||||||
|
|
||||||
|
// Init 初始化
|
||||||
|
func (that *miniProgram) Init(appid string, appsecret string) {
|
||||||
|
|
||||||
|
that.weixin = wechat.NewWechat()
|
||||||
|
that.Memory = cache.NewMemory()
|
||||||
|
that.Config = &config.Config{
|
||||||
|
AppID: appid,
|
||||||
|
AppSecret: appsecret,
|
||||||
|
//Token: "xxx",
|
||||||
|
//EncodingAESKey: "xxxx",
|
||||||
|
Cache: that.Memory,
|
||||||
|
}
|
||||||
|
that.MiniProgram = that.weixin.GetMiniProgram(that.Config)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (that *miniProgram) GetBaseUserInfo(code string) (appid string, re auth.ResCode2Session, err error) {
|
||||||
|
appid = that.Config.AppID
|
||||||
|
a := that.GetAuth()
|
||||||
|
re, err = a.Code2Session(code)
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
return appid, re, err
|
||||||
|
}
|
||||||
|
|
||||||
|
return appid, re, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func (that *miniProgram) GetPhoneNumber(sessionkey, encryptedData, iv string) (appid string, re *encryptor.PlainData, err error) {
|
||||||
|
appid = that.Config.AppID
|
||||||
|
|
||||||
|
if sessionkey == "" || encryptedData == "" || iv == "" {
|
||||||
|
return appid, re, errors.New("参数不足")
|
||||||
|
}
|
||||||
|
|
||||||
|
eny := that.GetEncryptor()
|
||||||
|
|
||||||
|
re, err = eny.Decrypt(sessionkey, encryptedData, iv)
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
return appid, re, err
|
||||||
|
}
|
||||||
|
|
||||||
|
return appid, re, err
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,142 @@
|
|||||||
|
package wechat
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"fmt"
|
||||||
|
"github.com/go-pay/gopay"
|
||||||
|
"github.com/go-pay/gopay/wechat/v3"
|
||||||
|
"net/http"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
//基于此文档开发
|
||||||
|
//https://github.com/silenceper/wechat/blob/v2/doc/api/officialaccount.md
|
||||||
|
type wxpay struct {
|
||||||
|
client *wechat.ClientV3
|
||||||
|
ctx context.Context
|
||||||
|
apiV3Key string
|
||||||
|
MchId string
|
||||||
|
}
|
||||||
|
|
||||||
|
var WxPay = wxpay{}
|
||||||
|
|
||||||
|
// Init 初始化
|
||||||
|
func (that *wxpay) Init(MchId, SerialNo, APIv3Key, PrivateKey string) {
|
||||||
|
client, err := wechat.NewClientV3(MchId, SerialNo, APIv3Key, PrivateKey)
|
||||||
|
if err != nil {
|
||||||
|
//xlog.Error(err)
|
||||||
|
fmt.Println(err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
that.client = client
|
||||||
|
that.apiV3Key = APIv3Key
|
||||||
|
that.MchId = MchId
|
||||||
|
// 设置微信平台API证书和序列号(如开启自动验签,请忽略此步骤)
|
||||||
|
//client.SetPlatformCert([]byte(""), "")
|
||||||
|
that.ctx = context.Background()
|
||||||
|
// 启用自动同步返回验签,并定时更新微信平台API证书(开启自动验签时,无需单独设置微信平台API证书和序列号)
|
||||||
|
err = client.AutoVerifySign()
|
||||||
|
if err != nil {
|
||||||
|
//xlog.Error(err)
|
||||||
|
fmt.Println(err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// 打开Debug开关,输出日志,默认是关闭的
|
||||||
|
client.DebugSwitch = gopay.DebugOn
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetUserInfo 获取用户信息
|
||||||
|
func (that *wxpay) GetJsOrder(money int64, appid, openid, name, tradeNo, notifyUrl string) (jsApiParams *wechat.JSAPIPayParams, err error) {
|
||||||
|
fmt.Println("dasdas", money, appid, name, tradeNo, notifyUrl)
|
||||||
|
PrepayId, err := that.getPrepayId(money, appid, that.MchId, openid, name, tradeNo, notifyUrl)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
//小程序
|
||||||
|
jsapi, err := that.client.PaySignOfJSAPI(appid, PrepayId)
|
||||||
|
return jsapi, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func (that *wxpay) CallbackJsOrder(req *http.Request) (*wechat.V3DecryptResult, error) {
|
||||||
|
|
||||||
|
notifyReq, err := wechat.V3ParseNotify(req)
|
||||||
|
if err != nil {
|
||||||
|
//xlog.Error(err)
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
// wxPublicKey 通过 client.WxPublicKey() 获取
|
||||||
|
err = notifyReq.VerifySignByPK(that.client.WxPublicKey())
|
||||||
|
if err != nil {
|
||||||
|
//xlog.Error(err)
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
// ========异步通知敏感信息解密========
|
||||||
|
// 普通支付通知解密
|
||||||
|
result, err := notifyReq.DecryptCipherText(that.apiV3Key)
|
||||||
|
|
||||||
|
//that.client.V3TransactionQueryOrder(that.ctx,result.BankType,result.OR)
|
||||||
|
|
||||||
|
return result, err
|
||||||
|
|
||||||
|
// 合单支付通知解密
|
||||||
|
//result, err := notifyReq.DecryptCombineCipherText(apiV3Key)
|
||||||
|
//// 退款通知解密
|
||||||
|
//result, err := notifyReq.DecryptRefundCipherText(apiV3Key)
|
||||||
|
|
||||||
|
// ========异步通知应答========
|
||||||
|
// 退款通知http应答码为200且返回状态码为SUCCESS才会当做商户接收成功,否则会重试。
|
||||||
|
// 注意:重试过多会导致微信支付端积压过多通知而堵塞,影响其他正常通知。
|
||||||
|
|
||||||
|
// 此写法是 gin 框架返回微信的写法
|
||||||
|
//c.JSON(http.StatusOK, &wechat.V3NotifyRsp{Code: gopay.SUCCESS, Message: "成功"})
|
||||||
|
//
|
||||||
|
//// 此写法是 echo 框架返回微信的写法
|
||||||
|
//return c.JSON(http.StatusOK, &wechat.V3NotifyRsp{Code: gopay.SUCCESS, Message: "成功"})
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetUserInfo 获取用户信息
|
||||||
|
//func (that *wxpay) GetMiniOrder(money int64,appid,name,tradeNo,notifyUrl string) (jsApiParams *wechat.AppletParams,err error){
|
||||||
|
//
|
||||||
|
// PrepayId,err:=that.getPrepayId(money,name,tradeNo,notifyUrl)
|
||||||
|
// if err!=nil{
|
||||||
|
// return nil,err
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// //小程序
|
||||||
|
// applet, err := that.client.PaySignOfApplet(appid,PrepayId)
|
||||||
|
//
|
||||||
|
// return applet,err
|
||||||
|
//}
|
||||||
|
|
||||||
|
func (that *wxpay) getPrepayId(money int64, appid, mchid, openid, name, tradeNo, notifyUrl string) (prepayid string, err error) {
|
||||||
|
expire := time.Now().Add(10 * time.Minute).Format(time.RFC3339)
|
||||||
|
// 初始化 BodyMap
|
||||||
|
bm := make(gopay.BodyMap)
|
||||||
|
bm.Set("appid", appid).
|
||||||
|
Set("mchid", mchid).
|
||||||
|
//Set("sub_mchid", "sub_mchid").
|
||||||
|
Set("description", name).
|
||||||
|
Set("out_trade_no", tradeNo).
|
||||||
|
Set("time_expire", expire).
|
||||||
|
Set("notify_url", notifyUrl).
|
||||||
|
SetBodyMap("amount", func(bm gopay.BodyMap) {
|
||||||
|
bm.Set("total", money).
|
||||||
|
Set("currency", "CNY")
|
||||||
|
}).
|
||||||
|
SetBodyMap("payer", func(bm gopay.BodyMap) {
|
||||||
|
bm.Set("openid", openid)
|
||||||
|
})
|
||||||
|
//ctx:=context.Context()
|
||||||
|
|
||||||
|
wxRsp, err := that.client.V3TransactionJsapi(that.ctx, bm)
|
||||||
|
fmt.Println("获取PrepayId", wxRsp, err)
|
||||||
|
if err != nil {
|
||||||
|
//xlog.Error(err)
|
||||||
|
return "", err
|
||||||
|
}
|
||||||
|
return wxRsp.Response.PrepayId, nil
|
||||||
|
}
|
||||||
@@ -1,56 +0,0 @@
|
|||||||
{
|
|
||||||
"avatarPath": "avatar/2006/01/02/",
|
|
||||||
"cache": {
|
|
||||||
"db": {
|
|
||||||
"db": false,
|
|
||||||
"session": true
|
|
||||||
},
|
|
||||||
"memory": {
|
|
||||||
"db": true,
|
|
||||||
"session": true,
|
|
||||||
"timeout": 7200
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"codeConfig": {
|
|
||||||
"admin": "config/app.json"
|
|
||||||
},
|
|
||||||
"codeConfig1": {
|
|
||||||
"admin": {
|
|
||||||
"config": "config/app.json",
|
|
||||||
"package": "admin",
|
|
||||||
"rule": "config/rule.json"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"crossDomain": "auto",
|
|
||||||
"db": {
|
|
||||||
"mysql": {
|
|
||||||
"host": "192.168.6.253",
|
|
||||||
"name": "iedc_dev",
|
|
||||||
"password": "dasda8454456",
|
|
||||||
"port": "3306",
|
|
||||||
"prefix": "",
|
|
||||||
"user": "root"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"defFile": [
|
|
||||||
"index.html",
|
|
||||||
"index.htm"
|
|
||||||
],
|
|
||||||
"error": {
|
|
||||||
"1": "内部系统异常",
|
|
||||||
"2": "访问权限异常",
|
|
||||||
"3": "请求参数异常",
|
|
||||||
"4": "数据处理异常",
|
|
||||||
"5": "数据结果异常"
|
|
||||||
},
|
|
||||||
"imgPath": "img/2006/01/02/",
|
|
||||||
"mode": 3,
|
|
||||||
"port": "8081",
|
|
||||||
"sessionName": "HOTIME",
|
|
||||||
"smsKey": "b0eb4bf0198b9983cffcb85b69fdf4fa",
|
|
||||||
"smsLogin": "【政企超链接】您的验证码为:{code},请在5分钟内使用,切勿将验证码泄露于他人,如非本人操作请忽略。",
|
|
||||||
"tpt": "tpt",
|
|
||||||
"wechatAppID": "wx2edb802f5c3ae1ae",
|
|
||||||
"wechatAppSecret": "4ff97e523c3de6bad47051b568522386",
|
|
||||||
"wxFilePath": "wxfile/2006/01/02/"
|
|
||||||
}
|
|
||||||
@@ -1,72 +0,0 @@
|
|||||||
{
|
|
||||||
"cache": {
|
|
||||||
"db": {
|
|
||||||
"db": "默认false,非必须,缓存数据库,启用后能减少数据库的读写压力",
|
|
||||||
"session": "默认true,非必须,缓存web session,同时缓存session保持的用户缓存",
|
|
||||||
"timeout": "默认60 * 60 * 24 * 30,非必须,过期时间,超时自动删除"
|
|
||||||
},
|
|
||||||
"memory": {
|
|
||||||
"db": "默认true,非必须,缓存数据库,启用后能减少数据库的读写压力",
|
|
||||||
"session": "默认true,非必须,缓存web session,同时缓存session保持的用户缓存",
|
|
||||||
"timeout": "默认60 * 60 * 2,非必须,过期时间,超时自动删除"
|
|
||||||
},
|
|
||||||
"redis": {
|
|
||||||
"db": "默认true,非必须,缓存数据库,启用后能减少数据库的读写压力",
|
|
||||||
"host": "默认服务ip:127.0.0.1,必须,如果需要使用redis服务时配置,",
|
|
||||||
"password": "默认密码空,必须,如果需要使用redis服务时配置,默认密码空",
|
|
||||||
"port": "默认服务端口:6379,必须,如果需要使用redis服务时配置,",
|
|
||||||
"session": "默认true,非必须,缓存web session,同时缓存session保持的用户缓存",
|
|
||||||
"timeout": "默认60 * 60 * 24 * 15,非必须,过期时间,超时自动删除"
|
|
||||||
},
|
|
||||||
"注释": "可配置memory,db,redis,默认启用memory,默认优先级为memory\u003eredis\u003edb,memory与数据库缓存设置项一致,缓存数据填充会自动反方向反哺,加入memory缓存过期将自动从redis更新,但memory永远不会更新redis,如果是集群建议不要开启memory,配置即启用"
|
|
||||||
},
|
|
||||||
"codeConfig": {
|
|
||||||
"packageName": "默认无,必须,包名称以及应用名,生成代码的配置文件地址,比如config/app.json,数据库有更新时自动更新配置文件以及对应的生成文件",
|
|
||||||
"注释": "配置即启用,非必须,默认无"
|
|
||||||
},
|
|
||||||
"crossDomain": "默认空 非必须,空字符串为不开启,如果需要跨域设置,auto为智能开启所有网站允许跨域,http://www.baidu.com为指定域允许跨域",
|
|
||||||
"db": {
|
|
||||||
"mysql": {
|
|
||||||
"host": "默认127.0.0.1,必须,数据库ip地址",
|
|
||||||
"name": "默认test,必须,数据库名称",
|
|
||||||
"password": "默认root,必须,数据库密码",
|
|
||||||
"port": "默认3306,必须,数据库端口",
|
|
||||||
"prefix": "默认空,非必须,数据表前缀",
|
|
||||||
"slave": {
|
|
||||||
"host": "默认127.0.0.1,必须,数据库ip地址",
|
|
||||||
"name": "默认test,必须,数据库名称",
|
|
||||||
"password": "默认root,必须,数据库密码",
|
|
||||||
"port": "默认3306,必须,数据库端口",
|
|
||||||
"user": "默认root,必须,数据库用户名",
|
|
||||||
"注释": "从数据库配置,mysql里配置slave项即启用主从读写,减少数据库压力"
|
|
||||||
},
|
|
||||||
"user": "默认root,必须,数据库用户名",
|
|
||||||
"注释": "除prefix及主从数据库slave项,其他全部必须"
|
|
||||||
},
|
|
||||||
"sqlite": {
|
|
||||||
"path": "默认config/data.db,必须,数据库位置"
|
|
||||||
},
|
|
||||||
"注释": "配置即启用,非必须,默认使用sqlite数据库"
|
|
||||||
},
|
|
||||||
"defFile": "默认访问index.html或者index.htm文件,必须,默认访问文件类型",
|
|
||||||
"error": {
|
|
||||||
"1": "内部系统异常,在环境配置,文件访问权限等基础运行环境条件不足造成严重错误时使用",
|
|
||||||
"2": "访问权限异常,没有登录或者登录异常等时候使用",
|
|
||||||
"3": "请求参数异常,request参数不满足要求,比如参数不足,参数类型错误,参数不满足要求等时候使用",
|
|
||||||
"4": "数据处理异常,数据库操作或者三方请求返回的结果非正常结果,比如数据库突然中断等时候使用",
|
|
||||||
"5": "数据结果异常,一般用于无法给出response要求的格式要求下使用,比如response需要的是string格式但你只能提供int数据时",
|
|
||||||
"注释": "web服务内置错误提示,自定义异常建议10开始"
|
|
||||||
},
|
|
||||||
"logFile": "无默认,非必须,如果需要存储日志文件时使用,保存格式为:a/b/c/20060102150405.txt,将生成:a/b/c/年月日时分秒.txt,按需设置",
|
|
||||||
"logLevel": "默认0,必须,0关闭,1打印,日志等级",
|
|
||||||
"mode": "默认0,非必须,0生产模式,1,测试模式,2开发模式,3内嵌代码模式,在开发模式下会显示更多的数据用于开发测试,并能够辅助研发,自动生成配置文件、代码等功能,web无缓存,数据库不启用缓存",
|
|
||||||
"modeRouterStrict": "默认false,必须,路由严格模式false,为大小写忽略必须匹配,true必须大小写匹配",
|
|
||||||
"port": "默认80,必须,web服务开启Http端口,0为不启用http服务,默认80",
|
|
||||||
"sessionName": "默认HOTIME,必须,设置session的cookie名",
|
|
||||||
"tlsCert": "默认空,非必须,https证书",
|
|
||||||
"tlsKey": "默认空,非必须,https密钥",
|
|
||||||
"tlsPort": "默认空,非必须,web服务https端口,0为不启用https服务",
|
|
||||||
"tpt": "默认tpt,必须,web静态文件目录,默认为程序目录下tpt目录",
|
|
||||||
"webConnectLogFile": "无默认,非必须,webConnectLogShow开启之后才能使用,如果需要存储日志文件时使用,保存格式为:a/b/c/20060102150405.txt,将生成:a/b/c/年月日时分秒.txt,按需设置",
|
|
||||||
"webConnectLogShow": "默认true,非必须,访问日志如果需要web访问链接、访问ip、访问时间打印,false为关闭true开启此功能"
|
|
||||||
}
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,15 +0,0 @@
|
|||||||
package main
|
|
||||||
|
|
||||||
import (
|
|
||||||
"code.hoteas.com/golang/hotime"
|
|
||||||
"fmt"
|
|
||||||
"time"
|
|
||||||
)
|
|
||||||
|
|
||||||
func main() {
|
|
||||||
date, _ := time.Parse("2006-01-02 15:04", time.Now().Format("2006-01-02")+" 14:00")
|
|
||||||
fmt.Println(date, date.Unix())
|
|
||||||
//fmt.Println("0123456"[1:7])
|
|
||||||
appIns := hotime.Init("config/config.json")
|
|
||||||
appIns.Run(hotime.Router{})
|
|
||||||
}
|
|
||||||
@@ -4,8 +4,10 @@ go 1.16
|
|||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/garyburd/redigo v1.6.3
|
github.com/garyburd/redigo v1.6.3
|
||||||
|
github.com/go-pay/gopay v1.5.78
|
||||||
github.com/go-sql-driver/mysql v1.6.0
|
github.com/go-sql-driver/mysql v1.6.0
|
||||||
github.com/mattn/go-sqlite3 v1.14.12
|
github.com/mattn/go-sqlite3 v1.14.12
|
||||||
|
github.com/silenceper/wechat/v2 v2.1.2
|
||||||
github.com/sirupsen/logrus v1.8.1
|
github.com/sirupsen/logrus v1.8.1
|
||||||
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common v1.0.364
|
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common v1.0.364
|
||||||
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/ocr v1.0.364
|
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/ocr v1.0.364
|
||||||
|
|||||||
@@ -1,27 +1,72 @@
|
|||||||
|
github.com/bradfitz/gomemcache v0.0.0-20190913173617-a41fca850d0b h1:L/QXpzIa3pOvUGt1D1lA5KjYhPBAN/3iWdP7xeFS9F0=
|
||||||
|
github.com/bradfitz/gomemcache v0.0.0-20190913173617-a41fca850d0b/go.mod h1:H0wQNHz2YrLsuXOZozoeDmnHXkNCRmMW0gwFWDfEZDA=
|
||||||
|
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
|
||||||
|
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||||
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
||||||
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||||
|
github.com/fatih/structs v1.1.0 h1:Q7juDM0QtcnhCpeyLGQKyg4TOIghuNXrkL32pHAUMxo=
|
||||||
|
github.com/fatih/structs v1.1.0/go.mod h1:9NiDSp5zOcgEDl+j00MP/WkGVPOlPRLejGD8Ga6PJ7M=
|
||||||
github.com/garyburd/redigo v1.6.3 h1:HCeeRluvAgMusMomi1+6Y5dmFOdYV/JzoRrrbFlkGIc=
|
github.com/garyburd/redigo v1.6.3 h1:HCeeRluvAgMusMomi1+6Y5dmFOdYV/JzoRrrbFlkGIc=
|
||||||
github.com/garyburd/redigo v1.6.3/go.mod h1:rTb6epsqigu3kYKBnaF028A7Tf/Aw5s0cqA47doKKqw=
|
github.com/garyburd/redigo v1.6.3/go.mod h1:rTb6epsqigu3kYKBnaF028A7Tf/Aw5s0cqA47doKKqw=
|
||||||
|
github.com/go-pay/gopay v1.5.78 h1:wIHp8g/jK0ik5bZo2MWt3jAQsktT3nkdXZxlRZvljko=
|
||||||
|
github.com/go-pay/gopay v1.5.78/go.mod h1:M6Nlk2VdZHCbWphOw3rtbnz4SiOk6Xvxg6mxwDfg+Ps=
|
||||||
github.com/go-sql-driver/mysql v1.6.0 h1:BCTh4TKNUYmOmMUcQ3IipzF5prigylS7XXjEkfCHuOE=
|
github.com/go-sql-driver/mysql v1.6.0 h1:BCTh4TKNUYmOmMUcQ3IipzF5prigylS7XXjEkfCHuOE=
|
||||||
github.com/go-sql-driver/mysql v1.6.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg=
|
github.com/go-sql-driver/mysql v1.6.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg=
|
||||||
|
github.com/gomodule/redigo v1.8.5 h1:nRAxCa+SVsyjSBrtZmG/cqb6VbTmuRzpg/PoTFlpumc=
|
||||||
|
github.com/gomodule/redigo v1.8.5/go.mod h1:P9dn9mFrCBvWhGE1wpxx6fgq7BAeLBk+UUUzlpkBYO0=
|
||||||
|
github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542 h1:2VTzZjLZBgl62/EtslCrtky5vbi9dd7HrQPQIx6wqiw=
|
||||||
|
github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542/go.mod h1:Ow0tF8D4Kplbc8s8sSb3V2oUCygFHVp8gC3Dn6U4MNI=
|
||||||
|
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
|
||||||
|
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
|
||||||
|
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
|
||||||
github.com/mattn/go-sqlite3 v1.14.12 h1:TJ1bhYJPV44phC+IMu1u2K/i5RriLTPe+yc68XDJ1Z0=
|
github.com/mattn/go-sqlite3 v1.14.12 h1:TJ1bhYJPV44phC+IMu1u2K/i5RriLTPe+yc68XDJ1Z0=
|
||||||
github.com/mattn/go-sqlite3 v1.14.12/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU=
|
github.com/mattn/go-sqlite3 v1.14.12/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU=
|
||||||
|
github.com/nbio/st v0.0.0-20140626010706-e9e8d9816f32/go.mod h1:9wM+0iRr9ahx58uYLpLIr5fm8diHn0JbqRycJi6w0Ms=
|
||||||
|
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno=
|
||||||
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
||||||
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
||||||
|
github.com/silenceper/wechat/v2 v2.1.2 h1:+QfIMiYfwST2ZloTwmYp0O0p5Y1LYRZxfLWfMuSE30k=
|
||||||
|
github.com/silenceper/wechat/v2 v2.1.2/go.mod h1:0OprxYCCp2CZAKw06BBlnaczInTk2KxOLsKeiopshGg=
|
||||||
github.com/sirupsen/logrus v1.8.1 h1:dJKuHgqk1NNQlqoA6BTlM1Wf9DOH3NBjQyu0h9+AZZE=
|
github.com/sirupsen/logrus v1.8.1 h1:dJKuHgqk1NNQlqoA6BTlM1Wf9DOH3NBjQyu0h9+AZZE=
|
||||||
github.com/sirupsen/logrus v1.8.1/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0=
|
github.com/sirupsen/logrus v1.8.1/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0=
|
||||||
github.com/stretchr/testify v1.2.2 h1:bSDNvY7ZPG5RlJ8otE/7V6gMiyenm9RtJ7IUVIAoJ1w=
|
github.com/spf13/cast v1.3.1 h1:nFm6S0SMdyzrzcmThSipiEubIDy8WEXKNZ0UOgiRpng=
|
||||||
|
github.com/spf13/cast v1.3.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE=
|
||||||
|
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
||||||
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
|
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
|
||||||
|
github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA=
|
||||||
|
github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY=
|
||||||
|
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
||||||
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common v1.0.364 h1:X1Jws4XqrTH+p7FBQ7BpjW4qFXObKHWm0/XhW/GvqRs=
|
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common v1.0.364 h1:X1Jws4XqrTH+p7FBQ7BpjW4qFXObKHWm0/XhW/GvqRs=
|
||||||
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common v1.0.364/go.mod h1:7sCQWVkxcsR38nffDW057DRGk8mUjK1Ing/EFOK8s8Y=
|
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common v1.0.364/go.mod h1:7sCQWVkxcsR38nffDW057DRGk8mUjK1Ing/EFOK8s8Y=
|
||||||
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/ocr v1.0.364 h1:kbor60vo37v7Hu+i17gooox9Rw281fVHNna8zwtDG1w=
|
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/ocr v1.0.364 h1:kbor60vo37v7Hu+i17gooox9Rw281fVHNna8zwtDG1w=
|
||||||
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/ocr v1.0.364/go.mod h1:LeIUBOLhc+Y5YCEpZrULPD9lgoXXV4/EmIcoEvmHz9c=
|
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/ocr v1.0.364/go.mod h1:LeIUBOLhc+Y5YCEpZrULPD9lgoXXV4/EmIcoEvmHz9c=
|
||||||
|
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
|
||||||
|
golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I=
|
||||||
|
golang.org/x/crypto v0.0.0-20220331220935-ae2d96664a29 h1:tkVvjkPTB7pnW3jnid7kNyAMPVWllTNOf/qKDze4p9o=
|
||||||
|
golang.org/x/crypto v0.0.0-20220331220935-ae2d96664a29/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
|
||||||
|
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
|
||||||
|
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
|
||||||
golang.org/x/net v0.0.0-20220225172249-27dd8689420f h1:oA4XRj0qtSt8Yo1Zms0CUlsT3KG69V2UGQWPBxujDmc=
|
golang.org/x/net v0.0.0-20220225172249-27dd8689420f h1:oA4XRj0qtSt8Yo1Zms0CUlsT3KG69V2UGQWPBxujDmc=
|
||||||
golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk=
|
golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk=
|
||||||
|
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
||||||
golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
|
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
|
golang.org/x/sys v0.0.0-20210309074719-68d13333faf2/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
|
golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e h1:fLOSk5Q00efkSvAm+4xcoXD+RRmLmmulPn5I3Y9F2EM=
|
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e h1:fLOSk5Q00efkSvAm+4xcoXD+RRmLmmulPn5I3Y9F2EM=
|
||||||
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
|
golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw=
|
||||||
|
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
||||||
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
|
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
|
||||||
|
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||||
|
golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
||||||
golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
|
golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
|
||||||
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
|
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
|
||||||
|
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||||
|
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||||
|
gopkg.in/h2non/gock.v1 v1.0.15 h1:SzLqcIlb/fDfg7UvukMpNcWsu7sI5tWwL+KCATZqks0=
|
||||||
|
gopkg.in/h2non/gock.v1 v1.0.15/go.mod h1:sX4zAkdYX1TRGJ2JY156cFspQn4yRWn6p9EMdODlynE=
|
||||||
|
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
|
||||||
|
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo=
|
||||||
|
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||||
|
|||||||
@@ -10,15 +10,17 @@ var App = map[string]*Application{} //整个项目
|
|||||||
//var Db = HoTimeDB{} //数据库实例
|
//var Db = HoTimeDB{} //数据库实例
|
||||||
|
|
||||||
var Config = Map{
|
var Config = Map{
|
||||||
"mode": 3, //模式 0生产模式,1,测试模式,2,开发模式,3,内嵌代码模式
|
"mode": 2, //模式 0生产模式,1,测试模式,2,开发模式
|
||||||
"codeConfig": Map{
|
//"codeConfig": Map{
|
||||||
"admin": "config/app.json",
|
// "admin": "config/app.json",
|
||||||
},
|
//},
|
||||||
"codeConfig1": Map{
|
"codeConfig": Slice{
|
||||||
"admin": Map{ //默认无,必须,接口类别名称
|
Map{
|
||||||
"package": "admin", //默认admin,非必须,有则生成代码到此目录,无则采用缺省模式不生成代码只生成接口
|
"table": "admin", //默认admin,必须,有则根据数据库内当前表名做为用户生成数据
|
||||||
"config": "config/app.json", //默认config/app.json,必须,接口描述配置文件
|
"name": "", //默认admin,非必须,有则生成代码到此目录,无则采用缺省模式使用表名
|
||||||
"rule": "config/rule.json", //默认config/rule.json,非必须,有则按改规则生成接口,无则按系统内嵌方式生成
|
"config": "config/app.json", //默认config/app.json,必须,接口描述配置文件
|
||||||
|
"rule": "config/rule.json", //默认config/rule.json,非必须,有则按改规则生成接口,无则按系统内嵌方式生成
|
||||||
|
"mode": 0, //默认0,非必须,0为内嵌代码模式,1为生成代码模式
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
"db": Map{
|
"db": Map{
|
||||||
@@ -52,12 +54,23 @@ var ConfigNote = Map{
|
|||||||
"webConnectLogShow": "默认true,非必须,访问日志如果需要web访问链接、访问ip、访问时间打印,false为关闭true开启此功能",
|
"webConnectLogShow": "默认true,非必须,访问日志如果需要web访问链接、访问ip、访问时间打印,false为关闭true开启此功能",
|
||||||
"webConnectLogFile": "无默认,非必须,webConnectLogShow开启之后才能使用,如果需要存储日志文件时使用,保存格式为:a/b/c/20060102150405.txt,将生成:a/b/c/年月日时分秒.txt,按需设置",
|
"webConnectLogFile": "无默认,非必须,webConnectLogShow开启之后才能使用,如果需要存储日志文件时使用,保存格式为:a/b/c/20060102150405.txt,将生成:a/b/c/年月日时分秒.txt,按需设置",
|
||||||
"mode": "默认0,非必须,0生产模式,1,测试模式,2开发模式,3内嵌代码模式,在开发模式下会显示更多的数据用于开发测试,并能够辅助研发,自动生成配置文件、代码等功能,web无缓存,数据库不启用缓存", //debug 0关闭1开启
|
"mode": "默认0,非必须,0生产模式,1,测试模式,2开发模式,3内嵌代码模式,在开发模式下会显示更多的数据用于开发测试,并能够辅助研发,自动生成配置文件、代码等功能,web无缓存,数据库不启用缓存", //debug 0关闭1开启
|
||||||
"codeConfig": Map{
|
//"codeConfig": Map{
|
||||||
"注释": "配置即启用,非必须,默认无",
|
// "注释": "配置即启用,非必须,默认无",
|
||||||
//"package":"默认admin,必须,mode模式为2时会自动生成包文件夹和代码文件",
|
// //"package":"默认admin,必须,mode模式为2时会自动生成包文件夹和代码文件",
|
||||||
//"path":""
|
// //"path":""
|
||||||
|
//
|
||||||
"packageName": "默认无,必须,包名称以及应用名,生成代码的配置文件地址,比如config/app.json,数据库有更新时自动更新配置文件以及对应的生成文件",
|
// "packageName": "默认无,必须,包名称以及应用名,生成代码的配置文件地址,比如config/app.json,数据库有更新时自动更新配置文件以及对应的生成文件",
|
||||||
|
//},
|
||||||
|
"codeConfig": Slice{
|
||||||
|
"注释:配置即启用,非必须,默认无",
|
||||||
|
Map{ //默认无,必须,接口类别名称
|
||||||
|
//"注释": "", //
|
||||||
|
"table": "默认admin,必须,根据数据库内当前表名做为用户生成数据",
|
||||||
|
"name": "默认无,非必须,有则生成代码到此目录,无则采用缺省模式使用表名,如设置为:admin,将在admin目录生成包名为admin的代码",
|
||||||
|
"config": "默认config/app.json,必须,接口描述配置文件", //
|
||||||
|
"rule": "默认config/rule.json,非必须,有则按改规则生成接口,无则按系统内嵌方式生成",
|
||||||
|
"mode": "默认0,非必须,0为内嵌代码模式,1为生成代码模式",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
"db": Map{
|
"db": Map{
|
||||||
"注释": "配置即启用,非必须,默认使用sqlite数据库",
|
"注释": "配置即启用,非必须,默认使用sqlite数据库",
|
||||||
|
|||||||
Reference in New Issue
Block a user