123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- package main
- import (
- "flag"
- "fmt"
- "net"
- "net/http"
- "path/filepath"
- "time"
- "github.com/IceWhaleTech/CasaOS-Gateway/common"
- "github.com/IceWhaleTech/CasaOS/model/notify"
- "github.com/IceWhaleTech/CasaOS/pkg/cache"
- "github.com/IceWhaleTech/CasaOS/pkg/config"
- "github.com/IceWhaleTech/CasaOS/pkg/sqlite"
- "github.com/IceWhaleTech/CasaOS/pkg/utils/file"
- "github.com/IceWhaleTech/CasaOS/pkg/utils/loger"
- "github.com/IceWhaleTech/CasaOS/route"
- "github.com/IceWhaleTech/CasaOS/service"
- "github.com/IceWhaleTech/CasaOS/types"
- "github.com/coreos/go-systemd/daemon"
- "go.uber.org/zap"
- "github.com/robfig/cron"
- "gorm.io/gorm"
- )
- const LOCALHOST = "127.0.0.1"
- var sqliteDB *gorm.DB
- var (
- configFlag = flag.String("c", "", "config address")
- dbFlag = flag.String("db", "", "db path")
- versionFlag = flag.Bool("v", false, "version")
- )
- func init() {
- flag.Parse()
- if *versionFlag {
- fmt.Println("v" + types.CURRENTVERSION)
- return
- }
- config.InitSetup(*configFlag)
- loger.LogInit()
- if len(*dbFlag) == 0 {
- *dbFlag = config.AppInfo.DBPath + "/db"
- }
- sqliteDB = sqlite.GetDb(*dbFlag)
- // gredis.GetRedisConn(config.RedisInfo),
- service.MyService = service.NewService(sqliteDB, config.CommonInfo.RuntimePath)
- service.Cache = cache.Init()
- service.GetToken()
- service.NewVersionApp = make(map[string]string)
- route.InitFunction()
- // go service.LoopFriend()
- // go service.MyService.App().CheckNewImage()
- }
- // @title casaOS API
- // @version 1.0.0
- // @contact.name lauren.pan
- // @contact.url https://www.zimaboard.com
- // @contact.email lauren.pan@icewhale.org
- // @description casaOS v1版本api
- // @host 192.168.2.217:8089
- // @securityDefinitions.apikey ApiKeyAuth
- // @in header
- // @name Authorization
- // @BasePath /v1
- func main() {
- service.NotifyMsg = make(chan notify.Message, 10)
- if *versionFlag {
- return
- }
- go route.SocketInit(service.NotifyMsg)
- // model.Setup()
- // gredis.Setup()
- r := route.InitRouter()
- // service.SyncTask(sqliteDB)
- cron2 := cron.New()
- // every day execution
- err := cron2.AddFunc("0/5 * * * * *", func() {
- if service.ClientCount > 0 {
- // route.SendNetINfoBySocket()
- // route.SendCPUBySocket()
- // route.SendMemBySocket()
- // route.SendDiskBySocket()
- // route.SendUSBBySocket()
- route.SendAllHardwareStatusBySocket()
- }
- })
- if err != nil {
- fmt.Println(err)
- }
- cron2.Start()
- defer cron2.Stop()
- listener, err := net.Listen("tcp", net.JoinHostPort(LOCALHOST, "0"))
- if err != nil {
- panic(err)
- }
- routers := []string{"sys", "apps", "container", "app-categories", "port", "file", "folder", "batch", "image", "samba", "notify"}
- for _, v := range routers {
- err = service.MyService.Gateway().CreateRoute(&common.Route{
- Path: "/v1/" + v,
- Target: "http://" + listener.Addr().String(),
- })
- if err != nil {
- fmt.Println("err", err)
- panic(err)
- }
- }
- go func() {
- time.Sleep(time.Second * 2)
- // v0.3.6
- if config.ServerInfo.HttpPort != "" {
- changePort := common.ChangePortRequest{}
- changePort.Port = config.ServerInfo.HttpPort
- err := service.MyService.Gateway().ChangePort(&changePort)
- if err == nil {
- config.Cfg.Section("server").Key("HttpPort").SetValue("")
- config.Cfg.SaveTo(config.SystemConfigInfo.ConfigPath)
- }
- }
- }()
- urlFilePath := filepath.Join(config.CommonInfo.RuntimePath, "casaos.url")
- err = file.CreateFileAndWriteContent(urlFilePath, "http://"+listener.Addr().String())
- if err != nil {
- loger.Error("Management service is listening...",
- zap.Any("address", listener.Addr().String()),
- zap.Any("filepath", urlFilePath),
- )
- }
- if supported, err := daemon.SdNotify(false, daemon.SdNotifyReady); err != nil {
- loger.Error("Failed to notify systemd that casaos main service is ready", zap.Any("error", err))
- } else if supported {
- loger.Info("Notified systemd that casaos main service is ready")
- } else {
- loger.Info("This process is not running as a systemd service.")
- }
- s := &http.Server{
- Handler: r,
- ReadHeaderTimeout: 5 * time.Second, // fix G112: Potential slowloris attack (see https://github.com/securego/gosec)
- }
- err = s.Serve(listener) // not using http.serve() to fix G114: Use of net/http serve function that has no support for setting timeouts (see https://github.com/securego/gosec)
- if err != nil {
- panic(err)
- }
- }
|