mirror of
https://github.com/mentos1386/zdravko.git
synced 2024-11-22 15:53:45 +00:00
157 lines
4 KiB
Go
157 lines
4 KiB
Go
package handlers
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/http"
|
|
"strings"
|
|
|
|
"github.com/go-playground/validator/v10"
|
|
"github.com/gosimple/slug"
|
|
"github.com/labstack/echo/v4"
|
|
"github.com/mentos1386/zdravko/database/models"
|
|
"github.com/mentos1386/zdravko/internal/server/services"
|
|
"github.com/mentos1386/zdravko/pkg/jwt"
|
|
"github.com/mentos1386/zdravko/web/templates/components"
|
|
)
|
|
|
|
type WorkerWithTokenAndActiveWorkers struct {
|
|
*models.WorkerGroup
|
|
Token string
|
|
ActiveWorkers []string
|
|
}
|
|
|
|
type WorkerGroupWithActiveWorkers struct {
|
|
*models.WorkerGroupWithChecks
|
|
ActiveWorkers []string
|
|
}
|
|
|
|
type SettingsWorkerGroups struct {
|
|
*Settings
|
|
WorkerGroups []*WorkerGroupWithActiveWorkers
|
|
}
|
|
|
|
type SettingsWorker struct {
|
|
*Settings
|
|
Worker *WorkerWithTokenAndActiveWorkers
|
|
}
|
|
|
|
func (h *BaseHandler) SettingsWorkerGroupsGET(c echo.Context) error {
|
|
cc := c.(AuthenticatedContext)
|
|
|
|
workerGroups, err := services.GetWorkerGroupsWithChecks(context.Background(), h.db)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
workerGroupsWithActiveWorkers := make([]*WorkerGroupWithActiveWorkers, len(workerGroups))
|
|
for i, workerGroup := range workerGroups {
|
|
activeWorkers, err := services.GetActiveWorkers(context.Background(), workerGroup.Id, h.temporal)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
workerGroupsWithActiveWorkers[i] = &WorkerGroupWithActiveWorkers{
|
|
WorkerGroupWithChecks: workerGroup,
|
|
ActiveWorkers: activeWorkers,
|
|
}
|
|
}
|
|
|
|
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: workerGroupsWithActiveWorkers,
|
|
})
|
|
}
|
|
|
|
func (h *BaseHandler) SettingsWorkerGroupsDescribeGET(c echo.Context) error {
|
|
cc := c.(AuthenticatedContext)
|
|
id := c.Param("id")
|
|
|
|
worker, err := services.GetWorkerGroup(context.Background(), h.db, id)
|
|
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
|
|
}
|
|
|
|
activeWorkers, err := services.GetActiveWorkers(context.Background(), worker.Id, h.temporal)
|
|
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", id),
|
|
Title: "Describe",
|
|
Breadcrumb: worker.Name,
|
|
},
|
|
}),
|
|
Worker: &WorkerWithTokenAndActiveWorkers{
|
|
WorkerGroup: worker,
|
|
Token: token,
|
|
ActiveWorkers: activeWorkers,
|
|
},
|
|
})
|
|
}
|
|
|
|
func (h *BaseHandler) SettingsWorkerGroupsDescribeDELETE(c echo.Context) error {
|
|
id := c.Param("id")
|
|
|
|
err := services.DeleteWorkerGroup(context.Background(), h.db, id)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return c.Redirect(http.StatusSeeOther, "/settings/worker-groups")
|
|
}
|
|
|
|
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()
|
|
id := slug.Make(c.FormValue("name"))
|
|
|
|
workerGroup := &models.WorkerGroup{
|
|
Name: strings.ToLower(c.FormValue("name")),
|
|
Id: id,
|
|
}
|
|
|
|
err := validator.New(validator.WithRequiredStructEnabled()).Struct(workerGroup)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = services.CreateWorkerGroup(
|
|
ctx,
|
|
h.db,
|
|
workerGroup,
|
|
)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return c.Redirect(http.StatusSeeOther, fmt.Sprintf("/settings/worker-groups/%s", id))
|
|
}
|