profitRate/cmd/profitRate.go

74 lines
1.6 KiB
Go
Raw Normal View History

2024-09-04 23:04:04 +08:00
package main
import (
"context"
"flag"
"os"
"os/signal"
"gitea.timerzz.com/kedaya_haitao/common/pkg/database"
2024-09-13 21:23:03 +08:00
"gitea.timerzz.com/kedaya_haitao/common/pkg/redis"
2024-09-04 23:04:04 +08:00
"gitea.timerzz.com/kedaya_haitao/common/pkg/web"
"gitea.timerzz.com/kedaya_haitao/common/structs/storage"
2024-09-13 21:23:03 +08:00
"gitea.timerzz.com/kedaya_haitao/profitRate/rate"
"gitea.timerzz.com/kedaya_haitao/profitRate/service"
2024-09-04 23:04:04 +08:00
"github.com/gofiber/fiber/v3"
"github.com/gofiber/fiber/v3/middleware/cors"
"github.com/gofiber/fiber/v3/middleware/recover"
2024-09-13 21:23:03 +08:00
"golang.org/x/sync/errgroup"
2024-09-04 23:04:04 +08:00
"github.com/golang/glog"
)
func main() {
flag.Parse()
glog.Info(">>> BEGIN INIT<<<")
ctx, cancel := signal.NotifyContext(context.Background(), os.Kill, os.Interrupt)
defer cancel()
// 初始化数据库
db, err := database.InitDefaultDatabase()
if err != nil {
glog.Fatalf("init database failed: %v", err)
}
2024-09-13 21:23:03 +08:00
// 初始化redis
rdb, err := redis.InitDefaultRedis()
if err != nil {
glog.Fatalf("init redis failed: %v", err)
}
2024-09-04 23:04:04 +08:00
// 初始化服务
r := fiber.New(fiber.Config{ErrorHandler: web.ErrHandle})
r.Use(cors.New(), recover.New())
stg := storage.NewStorage(db)
2024-09-13 21:23:03 +08:00
ctl := rate.NewController(ctx, stg, rdb)
var wg errgroup.Group
// 运行ctl
wg.Go(ctl.Run)
2024-09-04 23:04:04 +08:00
svc := []web.Register{
web.NewProbe(),
2024-09-13 21:23:03 +08:00
service.NewProfitRate(ctl),
2024-09-04 23:04:04 +08:00
}
for _, s := range svc {
s.Registry(r)
}
port := os.Getenv("PORT")
if port == "" {
port = "80"
}
2024-09-13 21:23:03 +08:00
// 运行service
wg.Go(func() error {
return r.Listen(":"+port, fiber.ListenConfig{
EnablePrintRoutes: true,
GracefulContext: ctx,
})
})
if err = wg.Wait(); err != nil {
glog.Warningf("over err: %v", err)
2024-09-04 23:04:04 +08:00
}
}