1Panel/backend/app/api/v1/website_group.go

57 lines
1.8 KiB
Go
Raw Normal View History

2022-10-28 09:04:57 +00:00
package v1
import (
"github.com/1Panel-dev/1Panel/backend/app/api/v1/helper"
2022-12-13 09:20:13 +00:00
"github.com/1Panel-dev/1Panel/backend/app/dto/request"
2022-10-28 09:04:57 +00:00
"github.com/1Panel-dev/1Panel/backend/constant"
"github.com/gin-gonic/gin"
)
2022-11-02 07:19:14 +00:00
func (b *BaseApi) GetWebGroups(c *gin.Context) {
2022-10-28 09:04:57 +00:00
list, err := websiteGroupService.GetGroups()
if err != nil {
helper.ErrorWithDetail(c, constant.CodeErrInternalServer, constant.ErrTypeInternalServer, err)
return
}
helper.SuccessWithData(c, list)
}
2022-11-02 07:19:14 +00:00
func (b *BaseApi) CreateWebGroup(c *gin.Context) {
2022-12-13 09:20:13 +00:00
var req request.WebsiteGroupCreate
2022-11-02 07:19:14 +00:00
if err := c.ShouldBindJSON(&req); err != nil {
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrTypeInvalidParams, err)
return
}
if err := websiteGroupService.CreateGroup(req); err != nil {
helper.ErrorWithDetail(c, constant.CodeErrInternalServer, constant.ErrTypeInternalServer, err)
return
}
helper.SuccessWithData(c, nil)
}
2022-11-02 10:18:20 +00:00
func (b *BaseApi) UpdateWebGroup(c *gin.Context) {
2022-12-13 09:20:13 +00:00
var req request.WebsiteGroupUpdate
2022-11-02 10:18:20 +00:00
if err := c.ShouldBindJSON(&req); err != nil {
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrTypeInvalidParams, err)
return
}
if err := websiteGroupService.UpdateGroup(req); err != nil {
helper.ErrorWithDetail(c, constant.CodeErrInternalServer, constant.ErrTypeInternalServer, err)
return
}
helper.SuccessWithData(c, nil)
}
func (b *BaseApi) DeleteWebGroup(c *gin.Context) {
2022-11-03 09:06:48 +00:00
groupId, err := helper.GetIntParamByKey(c, "groupId")
2022-11-02 10:18:20 +00:00
if err != nil {
2022-11-03 09:06:48 +00:00
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrTypeInternalServer, nil)
2022-11-02 10:18:20 +00:00
return
}
2022-11-03 09:06:48 +00:00
if err := websiteGroupService.DeleteGroup(groupId); err != nil {
2022-11-02 10:18:20 +00:00
helper.ErrorWithDetail(c, constant.CodeErrInternalServer, constant.ErrTypeInternalServer, err)
return
}
helper.SuccessWithData(c, nil)
}