bottin-ag/cmd/web.go

55 lines
1.2 KiB
Go
Raw Normal View History

2023-09-15 13:14:43 -04:00
/*
Copyright © 2023 AGECEM & Victor Lacasse-Beaudoin
*/
package cmd
import (
"fmt"
2023-09-15 16:36:56 -04:00
"log"
"net/http"
2023-09-15 13:14:43 -04:00
"git.agecem.com/agecem/bottin-ag/apiclient"
2023-09-15 16:36:56 -04:00
"git.agecem.com/agecem/bottin-ag/config"
2023-09-17 01:12:46 -04:00
"git.agecem.com/agecem/bottin-ag/webcontent"
"git.agecem.com/agecem/bottin-ag/webhandler"
2023-09-15 16:36:56 -04:00
"github.com/labstack/echo/v4"
"github.com/labstack/echo/v4/middleware"
2023-09-15 13:14:43 -04:00
"github.com/spf13/cobra"
)
// webCmd represents the web command
var webCmd = &cobra.Command{
Use: "web",
Short: "Start the webserver",
Run: func(cmd *cobra.Command, args []string) {
cfg, err := config.UnmarshalConfig()
2023-09-15 16:36:56 -04:00
if err != nil {
log.Fatal(err)
}
e := echo.New()
2023-09-17 01:12:46 -04:00
e.Renderer = webcontent.TemplateHTMLFS()
2023-09-15 16:36:56 -04:00
e.Pre(middleware.AddTrailingSlash())
apiClient := apiclient.New(cfg.Web.API.Key, cfg.Web.API.Host, cfg.Web.API.Protocol, cfg.Web.API.Port)
handler := webhandler.New(apiClient)
2023-09-17 01:12:46 -04:00
webhandler.DeclareRoutes(e, &handler)
publicGroup := e.Group("/public/*")
publicGroup.Use(middleware.StaticWithConfig(middleware.StaticConfig{
Root: "/",
Filesystem: http.FS(webcontent.PublicFS()),
}))
2023-09-15 16:36:56 -04:00
e.Start(fmt.Sprintf(":%d", cfg.Web.Port))
2023-09-15 13:14:43 -04:00
},
}
func init() {
rootCmd.AddCommand(webCmd)
}