## CI 修复 (P0/P1) P0 — 编译阻塞: - interfaces.go: postUseCase ISP 接口移除不用的 Create/Update/Delete P1 — 必须修复: - ST1000: 为 13 个包添加包注释 (common/config/model/service/...) - ST1005: redis_store.go 全部错误消息改为小写开头 - errcheck (19处): defer Close()→闭包忽略, notifier.Create→_=, r.Run→检查error - errorlint (9处): switch-on-error→errors.Is 链, ==→errors.Is - ST1020/ST1022: 导出符号注释以符号名开头 P2 — 安全评审: - gosec (12处): G203/G301/G304/G306 添加 nolint 注释并附理由 P3 — 清理: - unused: 移除 hasUnicode/energyStore/current/energyAdminUseCase - gofumpt + goimports 全量格式化 (35+ 文件)
167 lines
4.8 KiB
Go
167 lines
4.8 KiB
Go
package controller
|
||
|
||
import (
|
||
"errors"
|
||
"net/http"
|
||
"strconv"
|
||
|
||
"metazone.cc/mce/internal/common"
|
||
"metazone.cc/mce/internal/model"
|
||
|
||
"github.com/gin-gonic/gin"
|
||
)
|
||
|
||
// UpdateProfile 修改个人资料(用户名 + 个性签名,需登录)
|
||
// 普通用户走审核流程,管理员及以上直接落库
|
||
func (sc *SettingsController) UpdateProfile(c *gin.Context) {
|
||
uid, exists := c.Get("uid")
|
||
if !exists {
|
||
common.Error(c, http.StatusUnauthorized, "请先登录")
|
||
return
|
||
}
|
||
|
||
var req struct {
|
||
Username string `json:"username"`
|
||
Bio string `json:"bio"`
|
||
}
|
||
if err := c.ShouldBindJSON(&req); err != nil {
|
||
common.Error(c, http.StatusBadRequest, "参数错误")
|
||
return
|
||
}
|
||
|
||
userID := uid.(uint)
|
||
|
||
// 判断是否需要审核
|
||
shouldAudit, err := sc.auditService.ShouldAudit(userID)
|
||
if err != nil {
|
||
common.Error(c, http.StatusInternalServerError, "操作失败")
|
||
return
|
||
}
|
||
|
||
if shouldAudit {
|
||
user, err := sc.authService.GetProfile(userID)
|
||
if err != nil {
|
||
common.Error(c, http.StatusInternalServerError, "操作失败")
|
||
return
|
||
}
|
||
|
||
// 改名:首次免费,非首次扣 6 域能
|
||
if req.Username != "" && req.Username != user.Username && sc.energySvc != nil {
|
||
hasCompleted, _ := sc.levelSvc.HasCompletedTask(userID, "username")
|
||
if hasCompleted {
|
||
if err := sc.energySvc.DeductOnRename(userID); err != nil {
|
||
if errors.Is(err, common.ErrInsufficientEnergy) {
|
||
common.Error(c, http.StatusBadRequest, "域能不足,无法改名。可通过每日签到或创作被赋能获取")
|
||
} else {
|
||
common.Error(c, http.StatusInternalServerError, "操作失败")
|
||
}
|
||
return
|
||
}
|
||
}
|
||
}
|
||
|
||
if err := sc.auditService.SubmitProfileChanges(userID, user, req.Username, req.Bio); err != nil {
|
||
handleAuditSubmitError(c, err)
|
||
return
|
||
}
|
||
common.OkMessage(c, "修改已提交审核,通过前当前信息保持不变")
|
||
return
|
||
}
|
||
|
||
// 管理员及以上直接更新
|
||
// 先获取当前用户信息,判断是否改名
|
||
currentUser, err := sc.authService.GetProfile(userID)
|
||
if err != nil {
|
||
common.Error(c, http.StatusInternalServerError, "操作失败")
|
||
return
|
||
}
|
||
|
||
// 改名:首次免费,非首次扣 6 域能
|
||
if req.Username != "" && req.Username != currentUser.Username && sc.energySvc != nil {
|
||
hasCompleted, _ := sc.levelSvc.HasCompletedTask(userID, "username")
|
||
if hasCompleted {
|
||
if err := sc.energySvc.DeductOnRename(userID); err != nil {
|
||
if errors.Is(err, common.ErrInsufficientEnergy) {
|
||
common.Error(c, http.StatusBadRequest, "域能不足,无法改名。可通过每日签到或创作被赋能获取")
|
||
} else {
|
||
common.Error(c, http.StatusInternalServerError, "操作失败")
|
||
}
|
||
return
|
||
}
|
||
}
|
||
}
|
||
|
||
if err := sc.authService.UpdateProfile(userID, req.Username, req.Bio); err != nil {
|
||
handleSettingsError(c, err)
|
||
return
|
||
}
|
||
|
||
// 触发首次任务奖励(静默失败不影响主流程)
|
||
if req.Username != "" {
|
||
_, _, _ = sc.levelSvc.CompleteTask(userID, "username")
|
||
}
|
||
if req.Bio != "" {
|
||
_, _, _ = sc.levelSvc.CompleteTask(userID, "bio")
|
||
}
|
||
|
||
common.OkMessage(c, "个人资料已更新")
|
||
}
|
||
|
||
// UploadAvatar 上传头像(需登录,multipart/form-data)
|
||
// 普通用户走审核流程,管理员及以上直接更新
|
||
func (sc *SettingsController) UploadAvatar(c *gin.Context) {
|
||
uid, exists := c.Get("uid")
|
||
if !exists {
|
||
common.Error(c, http.StatusUnauthorized, "请先登录")
|
||
return
|
||
}
|
||
|
||
file, header, err := c.Request.FormFile("avatar")
|
||
if err != nil {
|
||
common.Error(c, http.StatusBadRequest, "请选择文件")
|
||
return
|
||
}
|
||
defer func() { _ = file.Close() }()
|
||
|
||
// 裁切参数(可选,来自前端裁切弹窗)
|
||
cropX, _ := strconv.Atoi(c.PostForm("crop_x"))
|
||
cropY, _ := strconv.Atoi(c.PostForm("crop_y"))
|
||
cropSize, _ := strconv.Atoi(c.PostForm("crop_size"))
|
||
|
||
userID := uid.(uint)
|
||
|
||
// 判断是否需要审核
|
||
shouldAudit, err := sc.auditService.ShouldAudit(userID)
|
||
if err != nil {
|
||
common.Error(c, http.StatusInternalServerError, "操作失败")
|
||
return
|
||
}
|
||
|
||
if shouldAudit {
|
||
// 仅处理图片,不更新用户
|
||
avatarURL, err := sc.avatarService.ProcessImage(userID, file, header.Header.Get("Content-Type"), cropX, cropY, cropSize)
|
||
if err != nil {
|
||
common.Error(c, http.StatusBadRequest, err.Error())
|
||
return
|
||
}
|
||
if err := sc.auditService.Submit(userID, model.AuditTypeAvatar, avatarURL); err != nil {
|
||
handleAuditSubmitError(c, err)
|
||
return
|
||
}
|
||
common.OkMessage(c, "头像已提交审核,通过前当前头像保持不变")
|
||
return
|
||
}
|
||
|
||
// 管理员及以上直接更新
|
||
url, err := sc.avatarService.ProcessAvatar(userID, file, header.Header.Get("Content-Type"), cropX, cropY, cropSize)
|
||
if err != nil {
|
||
common.Error(c, http.StatusBadRequest, err.Error())
|
||
return
|
||
}
|
||
|
||
// 触发首次上传头像奖励
|
||
_, _, _ = sc.levelSvc.CompleteTask(userID, "avatar")
|
||
|
||
common.Ok(c, gin.H{"url": url})
|
||
}
|