forked from IceWhaleTech/CasaOS-AppManagement
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
168 lines (136 loc) · 4.73 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
//go:generate bash -c "mkdir -p codegen && go run github.com/deepmap/oapi-codegen/cmd/[email protected] -generate types,server,spec -package codegen api/app_management/openapi.yaml > codegen/app_management_api.go"
//go:generate bash -c "mkdir -p codegen/message_bus && go run github.com/deepmap/oapi-codegen/cmd/[email protected] -generate types,client -package message_bus https://raw.githubusercontent.com/IceWhaleTech/CasaOS-MessageBus/main/api/message_bus/openapi.yaml > codegen/message_bus/api.go"
package main
import (
"context"
_ "embed"
"flag"
"fmt"
"net"
"net/http"
"os"
"time"
"github.com/IceWhaleTech/CasaOS-AppManagement/common"
"github.com/IceWhaleTech/CasaOS-AppManagement/pkg/config"
"github.com/IceWhaleTech/CasaOS-AppManagement/route"
"github.com/IceWhaleTech/CasaOS-AppManagement/service"
"github.com/IceWhaleTech/CasaOS-Common/model"
"github.com/IceWhaleTech/CasaOS-Common/utils/logger"
"github.com/coreos/go-systemd/daemon"
"github.com/robfig/cron/v3"
"go.uber.org/zap"
util_http "github.com/IceWhaleTech/CasaOS-Common/utils/http"
)
var (
commit = "private build"
date = "private build"
//go:embed api/index.html
_docHTML string
//go:embed api/app_management/openapi.yaml
_docYAML string
)
func main() {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
// parse arguments and intialize
{
configFlag := flag.String("c", "", "config file path")
dbFlag := flag.String("db", "", "db path")
versionFlag := flag.Bool("v", false, "version")
flag.Parse()
if *versionFlag {
fmt.Printf("v%s\n", common.AppManagementVersion)
os.Exit(0)
}
println("git commit:", commit)
println("build date:", date)
config.InitSetup(*configFlag)
logger.LogInit(config.AppInfo.LogPath, config.AppInfo.LogSaveName, config.AppInfo.LogFileExt)
if len(*dbFlag) == 0 {
*dbFlag = config.AppInfo.DBPath
}
service.MyService = service.NewService(config.CommonInfo.RuntimePath)
}
// setup cron
{
crontab := cron.New(cron.WithSeconds())
// schedule async v2job to get v2 appstore list
go func() {
// run once at startup
if err := service.MyService.V2AppStore().UpdateCatalog(); err != nil {
logger.Error("error when updating AppStore catalog at startup", zap.Error(err))
}
}()
if _, err := crontab.AddFunc("@every 8h", func() {
if err := service.MyService.V2AppStore().UpdateCatalog(); err != nil {
logger.Error("error when updating AppStore catalog", zap.Error(err))
}
}); err != nil {
panic(err)
}
crontab.Start()
defer crontab.Stop()
}
// register at message bus
{
response, err := service.MyService.MessageBus().RegisterEventTypesWithResponse(ctx, common.EventTypes)
if err != nil {
logger.Error("error when trying to register one or more event types - some event type will not be discoverable", zap.Error(err))
}
if response != nil && response.StatusCode() != http.StatusOK {
logger.Error("error when trying to register one or more event types - some event type will not be discoverable", zap.String("status", response.Status()), zap.String("body", string(response.Body)))
}
}
// setup listener
listener, err := net.Listen("tcp", net.JoinHostPort(common.Localhost, "0"))
if err != nil {
panic(err)
}
// initialize routers and register at gateway
{
apiPaths := []string{
"/v1/apps",
"/v1/container",
"/v1/app-categories",
route.V2APIPath,
route.V2DocPath,
}
for _, apiPath := range apiPaths {
if err := service.MyService.Gateway().CreateRoute(&model.Route{
Path: apiPath,
Target: "http://" + listener.Addr().String(),
}); err != nil {
panic(err)
}
}
}
v1Router := route.InitV1Router()
v2Router := route.InitV2Router()
v2DocRouter := route.InitV2DocRouter(_docHTML, _docYAML)
mux := &util_http.HandlerMultiplexer{
HandlerMap: map[string]http.Handler{
"v1": v1Router,
"v2": v2Router,
"doc": v2DocRouter,
},
}
// notify systemd that we are ready
{
if supported, err := daemon.SdNotify(false, daemon.SdNotifyReady); err != nil {
logger.Error("Failed to notify systemd that casaos main service is ready", zap.Any("error", err))
} else if supported {
logger.Info("Notified systemd that casaos main service is ready")
} else {
logger.Info("This process is not running as a systemd service.")
}
logger.Info("App management service is listening...", zap.Any("address", listener.Addr().String()))
}
s := &http.Server{
Handler: mux,
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)
}
}