zdravko/internal/handlers/settingsworkergroups.go

125 lines
3 KiB
Go
Raw Normal View History

2024-02-24 21:07:49 +00:00
package handlers
import (
"context"
"fmt"
"net/http"
2024-02-27 11:04:05 +00:00
"code.tjo.space/mentos1386/zdravko/database/models"
2024-02-24 21:07:49 +00:00
"code.tjo.space/mentos1386/zdravko/internal/jwt"
"code.tjo.space/mentos1386/zdravko/internal/services"
"code.tjo.space/mentos1386/zdravko/web/templates/components"
"github.com/go-playground/validator/v10"
"github.com/gosimple/slug"
"github.com/labstack/echo/v4"
)
type WorkerWithToken struct {
*models.WorkerGroup
Token string
}
type SettingsWorkerGroups struct {
*Settings
2024-02-27 11:04:05 +00:00
WorkerGroups []*models.WorkerGroupWithMonitors
2024-02-24 21:07:49 +00:00
WorkerGroupsLength int
}
type SettingsWorker struct {
*Settings
Worker *WorkerWithToken
}
func (h *BaseHandler) SettingsWorkerGroupsGET(c echo.Context) error {
cc := c.(AuthenticatedContext)
2024-02-27 11:04:05 +00:00
workerGroups, err := services.GetWorkerGroupsWithMonitors(context.Background(), h.db)
2024-02-24 21:07:49 +00:00
if err != nil {
return err
}
return c.Render(http.StatusOK, "settings_worker_groups.tmpl", &SettingsWorkerGroups{
Settings: NewSettings(
cc.Principal.User,
GetPageByTitle(SettingsPages, "Worker Groups"),
[]*components.Page{GetPageByTitle(SettingsPages, "Worker Groups")},
),
WorkerGroups: workerGroups,
WorkerGroupsLength: len(workerGroups),
})
}
func (h *BaseHandler) SettingsWorkerGroupsDescribeGET(c echo.Context) error {
cc := c.(AuthenticatedContext)
slug := c.Param("slug")
2024-02-27 11:04:05 +00:00
worker, err := services.GetWorkerGroup(context.Background(), h.db, slug)
2024-02-24 21:07:49 +00:00
if err != nil {
return err
}
// Allow write access to default namespace
token, err := jwt.NewTokenForWorker(h.config.Jwt.PrivateKey, h.config.Jwt.PublicKey, worker)
if err != nil {
return err
}
return c.Render(http.StatusOK, "settings_worker_groups_describe.tmpl", &SettingsWorker{
Settings: NewSettings(
cc.Principal.User,
GetPageByTitle(SettingsPages, "Worker Groups"),
[]*components.Page{
GetPageByTitle(SettingsPages, "Worker Groups"),
{
Path: fmt.Sprintf("/settings/worker-groups/%s", slug),
Title: "Describe",
Breadcrumb: worker.Name,
},
}),
Worker: &WorkerWithToken{
WorkerGroup: worker,
Token: token,
},
})
}
func (h *BaseHandler) SettingsWorkerGroupsCreateGET(c echo.Context) error {
cc := c.(AuthenticatedContext)
return c.Render(http.StatusOK, "settings_worker_groups_create.tmpl", NewSettings(
cc.Principal.User,
GetPageByTitle(SettingsPages, "Worker Groups"),
[]*components.Page{
GetPageByTitle(SettingsPages, "Worker Groups"),
GetPageByTitle(SettingsPages, "Worker Groups Create"),
},
))
}
func (h *BaseHandler) SettingsWorkerGroupsCreatePOST(c echo.Context) error {
ctx := context.Background()
slug := slug.Make(c.FormValue("name"))
2024-02-27 11:04:05 +00:00
workerGroup := &models.WorkerGroup{
2024-02-24 21:07:49 +00:00
Name: c.FormValue("name"),
Slug: slug,
}
2024-02-27 11:04:05 +00:00
err := validator.New(validator.WithRequiredStructEnabled()).Struct(workerGroup)
2024-02-24 21:07:49 +00:00
if err != nil {
return err
}
2024-02-27 11:04:05 +00:00
err = services.CreateWorkerGroup(
2024-02-24 21:07:49 +00:00
ctx,
2024-02-27 11:04:05 +00:00
h.db,
workerGroup,
2024-02-24 21:07:49 +00:00
)
if err != nil {
return err
}
return c.Redirect(http.StatusSeeOther, fmt.Sprintf("/settings/worker-groups/%s", slug))
}