2017-03-10 09:24:06 +00:00
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
|
|
import (
|
2017-04-02 02:38:49 +00:00
|
|
|
|
"github.com/go-macaron/csrf"
|
|
|
|
|
"github.com/go-macaron/gzip"
|
|
|
|
|
"github.com/go-macaron/session"
|
|
|
|
|
"github.com/ouqiang/cron-scheduler/modules/app"
|
|
|
|
|
"github.com/ouqiang/cron-scheduler/routers"
|
|
|
|
|
"github.com/urfave/cli"
|
|
|
|
|
"gopkg.in/macaron.v1"
|
2017-03-10 09:24:06 +00:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// web服务器默认端口
|
|
|
|
|
const DefaultPort = 5920
|
2017-04-02 02:19:52 +00:00
|
|
|
|
|
2017-03-10 09:24:06 +00:00
|
|
|
|
// 静态文件目录
|
|
|
|
|
const StaticDir = "public"
|
|
|
|
|
|
|
|
|
|
var CmdWeb = cli.Command{
|
2017-04-02 02:38:49 +00:00
|
|
|
|
Name: "server",
|
|
|
|
|
Usage: "start scheduler web server",
|
|
|
|
|
Action: run,
|
|
|
|
|
Flags: []cli.Flag{
|
|
|
|
|
cli.IntFlag{
|
|
|
|
|
Name: "port,p",
|
|
|
|
|
Value: DefaultPort,
|
|
|
|
|
Usage: "bind port number",
|
|
|
|
|
},
|
|
|
|
|
},
|
2017-03-10 09:24:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func run(ctx *cli.Context) {
|
2017-04-02 02:38:49 +00:00
|
|
|
|
app.InitEnv()
|
|
|
|
|
m := macaron.Classic()
|
|
|
|
|
// 注册路由
|
|
|
|
|
routers.Register(m)
|
|
|
|
|
// 注册中间件
|
|
|
|
|
registerMiddleware(m)
|
|
|
|
|
port := parsePort(ctx)
|
|
|
|
|
m.Run(port)
|
2017-03-10 09:24:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 中间件注册
|
2017-04-02 02:19:52 +00:00
|
|
|
|
func registerMiddleware(m *macaron.Macaron) {
|
2017-04-02 02:38:49 +00:00
|
|
|
|
m.Use(macaron.Logger())
|
|
|
|
|
m.Use(macaron.Recovery())
|
|
|
|
|
m.Use(gzip.Gziper())
|
|
|
|
|
m.Use(macaron.Static(StaticDir))
|
|
|
|
|
m.Use(macaron.Renderer(macaron.RenderOptions{
|
|
|
|
|
Directory: "templates",
|
|
|
|
|
Extensions: []string{".html"},
|
|
|
|
|
// 模板语法分隔符,默认为 ["{{", "}}"]
|
|
|
|
|
Delims: macaron.Delims{"{{{", "}}}"},
|
|
|
|
|
// 追加的 Content-Type 头信息,默认为 "UTF-8"
|
|
|
|
|
Charset: "UTF-8",
|
|
|
|
|
// 渲染具有缩进格式的 JSON,默认为不缩进
|
|
|
|
|
IndentJSON: true,
|
|
|
|
|
// 渲染具有缩进格式的 XML,默认为不缩进
|
|
|
|
|
IndentXML: true,
|
|
|
|
|
}))
|
|
|
|
|
m.Use(session.Sessioner())
|
|
|
|
|
m.Use(csrf.Csrfer())
|
2017-03-10 09:24:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 解析端口
|
|
|
|
|
func parsePort(ctx *cli.Context) int {
|
2017-04-02 02:38:49 +00:00
|
|
|
|
var port int
|
|
|
|
|
if ctx.IsSet("port") {
|
|
|
|
|
port = ctx.Int("port")
|
|
|
|
|
}
|
|
|
|
|
if port <= 0 || port >= 65535 {
|
|
|
|
|
port = DefaultPort
|
|
|
|
|
}
|
2017-03-10 09:24:06 +00:00
|
|
|
|
|
2017-04-02 02:38:49 +00:00
|
|
|
|
return port
|
2017-04-02 02:19:52 +00:00
|
|
|
|
}
|