-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathgroup_ctl.go
50 lines (39 loc) · 1.08 KB
/
group_ctl.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
package controller
import (
"context"
"net/http"
"github.com/GitDataAI/jiaozifs/models/rbacmodel"
"github.com/GitDataAI/jiaozifs/utils"
"github.com/GitDataAI/jiaozifs/auth"
"github.com/GitDataAI/jiaozifs/auth/rbac"
"github.com/GitDataAI/jiaozifs/api"
"github.com/GitDataAI/jiaozifs/models"
"go.uber.org/fx"
)
type GroupController struct {
fx.In
BaseController
Repo models.IRepo
}
func (gCtl GroupController) ListRepoGroup(ctx context.Context, w *api.JiaozifsResponse, _ *http.Request) {
_, err := auth.GetOperator(ctx)
if err != nil {
w.Forbidden()
return
}
groups, err := gCtl.Repo.GroupRepo().List(ctx, rbacmodel.NewListGroupParams().SetNames(rbac.RepoAdmin, rbac.RepoWrite, rbac.RepoRead))
if err != nil {
w.Error(err)
return
}
w.JSON(utils.Silent(utils.ArrMap[*rbacmodel.Group, *api.Group](groups, groupToDto)))
}
func groupToDto(group *rbacmodel.Group) (*api.Group, error) {
return &api.Group{
Id: group.ID,
Name: group.Name,
Policies: group.Policies,
CreatedAt: group.CreatedAt.UnixMilli(),
UpdatedAt: group.UpdatedAt.UnixMilli(),
}, nil
}