83 lines
2.1 KiB
Go
83 lines
2.1 KiB
Go
package main
|
||
|
||
import (
|
||
"../../hotime"
|
||
"strings"
|
||
|
||
//"../dri/aliyun"
|
||
"../dri/baidu"
|
||
"../dri/ddsms"
|
||
"./admin"
|
||
"./app"
|
||
"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())
|
||
|
||
baidu.DefaultBaiDuMap.Init("ZeT902EZvVgIoGVWEFK3osUm")
|
||
//fmt.Println("0123456"[1:7])
|
||
appIns := hotime.Init("config/config.json")
|
||
notNeedLogin := []string{"login", "test", "auth", "upload"} //不需要登录的操作
|
||
//RESTfull接口适配
|
||
appIns.SetConnectListener(func(context *hotime.Context) bool {
|
||
if context.RouterString[0] == "admin" {
|
||
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
|
||
}
|
||
|
||
//没有登录
|
||
if context.Session("user_id").Data == nil {
|
||
context.Display(2, "没有登录")
|
||
return false
|
||
}
|
||
|
||
}
|
||
//支撑权限设置
|
||
return true
|
||
})
|
||
appIns.Router["admin"]["company_inout"] = admin.CompanyInOutCtr
|
||
appIns.Router["admin"]["test"] = admin.TestCtr
|
||
|
||
//makeCode := code.MakeCode{}
|
||
//fmt.Println(common.ObjToStr(makeCode.Db2JSON("admin","test",appIns.Db)))
|
||
if ddsms.DefaultDDY.ApiKey == "" {
|
||
ddsms.DefaultDDY.Init(appIns.Config.GetString("smsKey"))
|
||
}
|
||
|
||
appIns.Run(hotime.Router{
|
||
"app": app.Project,
|
||
})
|
||
}
|