hotime/example/main.go

87 lines
2.3 KiB
Go
Raw Normal View History

2017-08-17 02:37:00 +00:00
package main
import (
2021-05-21 20:52:03 +00:00
"../../hotime"
2022-02-23 22:26:36 +00:00
"strings"
2022-01-16 20:47:39 +00:00
//"../dri/aliyun"
"../dri/baidu"
2021-10-21 14:52:40 +00:00
"../dri/ddsms"
2022-01-16 20:47:39 +00:00
"./admin"
"./app"
2017-09-05 03:09:13 +00:00
"fmt"
2018-04-08 16:02:13 +00:00
"time"
2017-08-17 02:37:00 +00:00
)
func main() {
date, _ := time.Parse("2006-01-02 15:04", time.Now().Format("2006-01-02")+" 14:00")
fmt.Println(date, date.Unix())
2022-01-16 20:47:39 +00:00
baidu.DefaultBaiDuMap.Init("ZeT902EZvVgIoGVWEFK3osUm")
2021-10-26 16:27:24 +00:00
//fmt.Println("0123456"[1:7])
2021-06-04 02:04:37 +00:00
appIns := hotime.Init("config/config.json")
2022-03-03 13:23:57 +00:00
notNeedLogin := []string{"token", "login", "test", "auth", "upload", "info"} //不需要登录的操作
2021-05-28 18:57:03 +00:00
//RESTfull接口适配
2017-09-05 03:09:13 +00:00
appIns.SetConnectListener(func(context *hotime.Context) bool {
2022-02-28 00:53:38 +00:00
if len(context.RouterString) > 0 && context.RouterString[0] == "admin" {
2022-02-23 22:26:36 +00:00
return true
}
//判断是否需要登录不需要登录则直接执行mtd
if len(context.RouterString) == 3 && !strings.Contains(context.RouterString[2], ".") {
if context.RouterString[0] == "app" && context.RouterString[1] == "user" {
isNeedLogin := true
for i := 0; i < len(notNeedLogin); i++ {
if notNeedLogin[i] == context.RouterString[2] {
isNeedLogin = false
break
}
}
if !isNeedLogin {
return true
}
}
//微信操作无需登录
if context.RouterString[0] == "app" && context.RouterString[1] == "wechat" {
return true
}
//微信操作无需登录
if context.RouterString[0] == "app" && context.RouterString[1] == "sms" {
return true
}
//微信操作无需登录
if context.RouterString[0] == "app" && context.RouterString[1] == "tag" {
return true
}
//微信操作无需登录
if context.RouterString[0] == "app" && context.RouterString[1] == "analyse" {
return true
}
2022-03-03 13:23:57 +00:00
//微信操作无需登录
if context.RouterString[0] == "app" && context.RouterString[1] == "category" {
return true
}
2022-02-23 22:26:36 +00:00
//没有登录
if context.Session("user_id").Data == nil {
context.Display(2, "没有登录")
return false
}
}
2022-01-10 05:23:39 +00:00
//支撑权限设置
2021-12-27 12:40:16 +00:00
return true
2017-09-05 03:09:13 +00:00
})
2022-01-16 20:47:39 +00:00
appIns.Router["admin"]["company_inout"] = admin.CompanyInOutCtr
2022-01-22 08:12:02 +00:00
appIns.Router["admin"]["test"] = admin.TestCtr
2017-08-17 02:37:00 +00:00
//makeCode := code.MakeCode{}
//fmt.Println(common.ObjToStr(makeCode.Db2JSON("admin","test",appIns.Db)))
2021-10-21 14:52:40 +00:00
if ddsms.DefaultDDY.ApiKey == "" {
ddsms.DefaultDDY.Init(appIns.Config.GetString("smsKey"))
}
2017-09-05 03:09:13 +00:00
appIns.Run(hotime.Router{
2021-12-27 12:40:16 +00:00
"app": app.Project,
2017-09-05 03:09:13 +00:00
})
2017-08-17 02:37:00 +00:00
}