You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-fly/cmd/server.go

91 lines
2.2 KiB

package cmd
4 years ago
import (
"fmt"
"github.com/gin-contrib/pprof"
"github.com/gin-gonic/gin"
"github.com/spf13/cobra"
"github.com/taoshihan1991/imaptool/common"
"github.com/taoshihan1991/imaptool/middleware"
"github.com/taoshihan1991/imaptool/router"
"github.com/taoshihan1991/imaptool/static"
"github.com/taoshihan1991/imaptool/tools"
"github.com/taoshihan1991/imaptool/ws"
"github.com/zh-five/xdaemon"
"html/template"
"io/ioutil"
4 years ago
"log"
"net/http"
"os"
4 years ago
)
var (
port string
daemon bool
)
var serverCmd = &cobra.Command{
Use: "server",
Short: "启动http服务",
Example: "go-fly server -c config/",
Run: func(cmd *cobra.Command, args []string) {
run()
},
}
func init() {
serverCmd.PersistentFlags().StringVarP(&port, "port", "p", "8081", "监听端口号")
serverCmd.PersistentFlags().BoolVarP(&daemon, "daemon", "d", false, "是否为守护进程模式")
}
func run() {
if daemon == true {
logFilePath := ""
if dir, err := os.Getwd(); err == nil {
logFilePath = dir + "/logs/"
}
_, err := os.Stat(logFilePath)
if os.IsNotExist(err) {
if err := os.MkdirAll(logFilePath, 0777); err != nil {
log.Println(err.Error())
}
}
d := xdaemon.NewDaemon(logFilePath + "go-fly.log")
d.MaxCount = 10
d.Run()
}
baseServer := "0.0.0.0:" + port
4 years ago
log.Println("start server...\r\ngohttp://" + baseServer)
tools.Logger().Println("start server...\r\ngohttp://" + baseServer)
engine := gin.Default()
if common.IsCompireTemplate {
templ := template.Must(template.New("").ParseFS(static.TemplatesEmbed, "templates/*.html"))
engine.SetHTMLTemplate(templ)
engine.StaticFS("/assets", http.FS(static.JsEmbed))
} else {
engine.LoadHTMLGlob("static/templates/*")
engine.Static("/assets", "./static")
}
4 years ago
engine.Static("/static", "./static")
engine.Use(tools.Session("gofly"))
3 years ago
engine.Use(middleware.CrossSite)
//性能监控
pprof.Register(engine)
//记录日志
engine.Use(middleware.NewMidLogger())
router.InitViewRouter(engine)
router.InitApiRouter(engine)
//记录pid
ioutil.WriteFile("gofly.sock", []byte(fmt.Sprintf("%d,%d", os.Getppid(), os.Getpid())), 0666)
//限流类
tools.NewLimitQueue()
//清理
ws.CleanVisitorExpire()
//后端websocket
go ws.WsServerBackend()
engine.Run(baseServer)
}