1 Star 0 Fork 237

xxdd/thingspanel-backend-community

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.go 3.06 KB
一键复制 编辑 原始数据 按行查看 历史
hezhuozhuo 提交于 2024-09-25 17:40 . fix 改变casbin初始化位置
package main
import (
"context"
"fmt"
"net/http"
"os"
"os/signal"
"project/croninit"
grpc_tptodb "project/grpc/tptodb_client"
"project/initialize"
"project/mqtt"
"project/mqtt/publish"
"project/mqtt/subscribe"
"project/query"
"time"
router "project/router"
"github.com/sirupsen/logrus"
"github.com/spf13/viper"
)
func init() {
initialize.ViperInit("./configs/conf.yml")
//initialize.ViperInit("./configs/conf-localdev.yml")
initialize.RsaDecryptInit("./rsa_key/private_key.pem")
initialize.LogInIt()
db := initialize.PgInit()
initialize.RedisInit()
query.SetDefault(db)
grpc_tptodb.GrpcTptodbInit()
mqtt.MqttInit()
subscribe.SubscribeInit()
publish.PublishInit()
//定时任务
croninit.CronInit()
}
// @title ThingsPanel API
// @version 1.0
// @description ThingsPanel API.
// @schemes http
// @host localhost:9999
// @BasePath
// @securityDefinitions.apikey ApiKeyAuth
// @in header
// @name x-token
func main() {
// gin.SetMode(gin.ReleaseMode)
// TODO: 替换gin默认日志,默认日志不支持日志级别设置
host, port := loadConfig()
router := router.RouterInit()
srv := initServer(host, port, router)
// 启动服务
go startServer(srv, host, port)
// 优雅关闭
gracefulShutdown(srv)
}
func loadConfig() (host, port string) {
host = viper.GetString("service.http.host")
if host == "" {
host = "localhost"
logrus.Println("Using default host:", host)
}
port = viper.GetString("service.http.port")
if port == "" {
port = "9999"
logrus.Println("Using default port:", port)
}
return host, port
}
func initServer(host, port string, handler http.Handler) *http.Server {
return &http.Server{
Addr: fmt.Sprintf("%s:%s", host, port),
Handler: handler,
ReadTimeout: 60 * time.Second,
WriteTimeout: 60 * time.Second,
}
}
func startServer(srv *http.Server, host, port string) {
logrus.Println("Listening and serving HTTP on", host, ":", port)
successInfo()
if err := srv.ListenAndServe(); err != nil && err != http.ErrServerClosed {
logrus.Fatalf("listen: %s\n", err)
}
}
func gracefulShutdown(srv *http.Server) {
quit := make(chan os.Signal, 1)
signal.Notify(quit, os.Interrupt)
<-quit
logrus.Println("Shutdown Server ...")
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
if err := srv.Shutdown(ctx); err != nil {
logrus.Fatal("Server Shutdown:", err)
}
logrus.Println("Server exiting")
}
func successInfo() {
// 获取当前时间
startTime := time.Now().Format("2006-01-02 15:04:05")
// 打印启动成功消息
fmt.Println("----------------------------------------")
fmt.Println(" TingsPanel 启动成功!")
fmt.Println("----------------------------------------")
fmt.Printf("启动时间: %s\n", startTime)
fmt.Println("版本: v1.1.1社区版")
fmt.Println("----------------------------------------")
fmt.Println("欢迎使用 TingsPanel!")
fmt.Println("如需帮助,请访问: http://thingspanel.io")
fmt.Println("----------------------------------------")
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/junnapp/thingspanel-backend-community.git
[email protected]:junnapp/thingspanel-backend-community.git
junnapp
thingspanel-backend-community
thingspanel-backend-community
main

搜索帮助