mirror of
https://github.com/cuigh/swirl
synced 2025-01-03 17:42:29 +00:00
83 lines
2.1 KiB
Go
83 lines
2.1 KiB
Go
|
package controller
|
||
|
|
||
|
import (
|
||
|
"strings"
|
||
|
|
||
|
"github.com/cuigh/auxo/net/web"
|
||
|
"github.com/cuigh/auxo/util/cast"
|
||
|
"github.com/cuigh/swirl/biz"
|
||
|
"github.com/cuigh/swirl/biz/docker"
|
||
|
"github.com/cuigh/swirl/model"
|
||
|
)
|
||
|
|
||
|
type SecretController struct {
|
||
|
List web.HandlerFunc `path:"/" name:"secret.list" authorize:"!" desc:"secret list page"`
|
||
|
Delete web.HandlerFunc `path:"/delete" method:"post" name:"secret.delete" authorize:"!" desc:"delete secret"`
|
||
|
New web.HandlerFunc `path:"/new" name:"secret.new" authorize:"!" desc:"new secret page"`
|
||
|
Create web.HandlerFunc `path:"/new" method:"post" name:"secret.create" authorize:"!" desc:"create secret"`
|
||
|
}
|
||
|
|
||
|
func Secret() (c *SecretController) {
|
||
|
c = &SecretController{}
|
||
|
|
||
|
c.List = func(ctx web.Context) error {
|
||
|
name := ctx.Q("name")
|
||
|
page := cast.ToIntD(ctx.Q("page"), 1)
|
||
|
secrets, totalCount, err := docker.SecretList(name, page, model.PageSize)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
m := newPagerModel(ctx, totalCount, model.PageSize, page).
|
||
|
Add("Name", name).
|
||
|
Add("Secrets", secrets)
|
||
|
return ctx.Render("secret/list", m)
|
||
|
}
|
||
|
|
||
|
c.Delete = func(ctx web.Context) error {
|
||
|
ids := strings.Split(ctx.F("ids"), ",")
|
||
|
for _, id := range ids {
|
||
|
err := docker.SecretRemove(id)
|
||
|
if err != nil {
|
||
|
return ajaxResult(ctx, err)
|
||
|
} else {
|
||
|
// todo:
|
||
|
biz.Event.CreateSecret(model.EventActionDelete, id, ctx.User())
|
||
|
}
|
||
|
}
|
||
|
return ajaxSuccess(ctx, nil)
|
||
|
}
|
||
|
|
||
|
c.New = func(ctx web.Context) error {
|
||
|
m := newModel(ctx)
|
||
|
return ctx.Render("secret/new", m)
|
||
|
}
|
||
|
|
||
|
c.Create = func(ctx web.Context) error {
|
||
|
v := struct {
|
||
|
Name string `json:"name"`
|
||
|
Data string `json:"data"`
|
||
|
Labels []struct {
|
||
|
Name string `json:"name"`
|
||
|
Value string `json:"value"`
|
||
|
} `json:"labels"`
|
||
|
}{}
|
||
|
err := ctx.Bind(&v)
|
||
|
if err == nil {
|
||
|
labels := make(map[string]string)
|
||
|
for _, l := range v.Labels {
|
||
|
if l.Name != "" && l.Value != "" {
|
||
|
labels[l.Name] = l.Value
|
||
|
}
|
||
|
}
|
||
|
err = docker.SecretCreate(v.Name, []byte(v.Data), labels)
|
||
|
if err == nil {
|
||
|
biz.Event.CreateSecret(model.EventActionCreate, v.Name, ctx.User())
|
||
|
}
|
||
|
}
|
||
|
return ajaxResult(ctx, err)
|
||
|
}
|
||
|
|
||
|
return
|
||
|
}
|