-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
64 lines (56 loc) · 1.17 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
package main
import (
"autossl/api"
"autossl/config"
"autossl/infrastructure/acme"
"autossl/infrastructure/database"
"github.com/golang-jwt/jwt/v5"
echojwt "github.com/labstack/echo-jwt/v4"
"github.com/labstack/echo/v4"
"github.com/robfig/cron/v3"
"log"
"os"
)
func main() {
e := echo.New()
// JWT
secret := os.Getenv("ADMIN_PASSWORD")
skipTokenMiddleware := config.Skip
jwtMiddleware := echojwt.WithConfig(echojwt.Config{
NewClaimsFunc: func(c echo.Context) jwt.Claims {
return new(api.JWTCustomClaims)
},
SigningKey: []byte(secret),
Skipper: skipTokenMiddleware,
})
e.Use(jwtMiddleware)
// database
database.AutoMigrate()
defer func() {
if err := database.GetDBClient().Close(); err != nil {
log.Printf("Failed to close database connection: %v", err)
}
}()
// Logger
e.Use(config.RequestLogger())
// Routes
api.IndexRoutes(e)
api.SSLRoutes(e)
api.LoginRoutes(e)
// Init acme.sh
acme.InitAcme()
// Acme Cron
c := cron.New()
_, err := c.AddFunc("30 1 * * *", func() {
err := acme.Cron()
if err != nil {
log.Fatal(err)
}
})
if err != nil {
log.Fatal(err)
}
c.Start()
// Start the service
e.Logger.Fatal(e.Start(":1323"))
}