改点样式

This commit is contained in:
wood
2023-11-16 05:02:34 +08:00
parent 05ee4d5977
commit 5e503d671e
11 changed files with 150 additions and 42 deletions

View File

@@ -174,7 +174,7 @@ func UpdateToken(c *gin.Context) {
if len(token.Name) > 30 {
c.JSON(http.StatusOK, gin.H{
"success": false,
"message": "Key名称过长",
"message": "Key名称过长,不能超过30位",
})
return
}

View File

@@ -553,6 +553,7 @@ func CreateUser(c *gin.Context) {
type ManageRequest struct {
Username string `json:"username"`
Action string `json:"action"`
NewGroup string `json:"newGroup"`
}
@@ -591,8 +592,68 @@ func ManageUser(c *gin.Context) {
return
}
// 更新用户分组
user.Group = req.NewGroup
switch req.Action {
case "disable":
user.Status = common.UserStatusDisabled
if user.Role == common.RoleRootUser {
c.JSON(http.StatusOK, gin.H{
"success": false,
"message": "无法禁用超级管理员用户",
})
return
}
case "enable":
user.Status = common.UserStatusEnabled
case "delete":
if user.Role == common.RoleRootUser {
c.JSON(http.StatusOK, gin.H{
"success": false,
"message": "无法删除超级管理员用户",
})
return
}
if err := user.Delete(); err != nil {
c.JSON(http.StatusOK, gin.H{
"success": false,
"message": err.Error(),
})
return
}
case "promote":
if myRole != common.RoleRootUser {
c.JSON(http.StatusOK, gin.H{
"success": false,
"message": "普通管理员用户无法提升其他用户为管理员",
})
return
}
if user.Role >= common.RoleAdminUser {
c.JSON(http.StatusOK, gin.H{
"success": false,
"message": "该用户已经是管理员",
})
return
}
user.Role = common.RoleAdminUser
case "demote":
if user.Role == common.RoleRootUser {
c.JSON(http.StatusOK, gin.H{
"success": false,
"message": "无法降级超级管理员用户",
})
return
}
if user.Role == common.RoleCommonUser {
c.JSON(http.StatusOK, gin.H{
"success": false,
"message": "该用户已经是普通用户",
})
return
}
user.Role = common.RoleCommonUser
case "changeGroup":
user.Group = req.NewGroup
}
if err := user.Update(false); err != nil {
c.JSON(http.StatusOK, gin.H{
@@ -617,6 +678,7 @@ func ManageUser(c *gin.Context) {
}
func EmailBind(c *gin.Context) {
email := c.Query("email")
code := c.Query("code")