Migrate the hardcoded wechat field to the new extensible user attributes system and improve the users management UI. Migration: - Add migration 019 to move wechat data to user_attribute_values - Remove wechat field from User entity, DTOs, and API contracts - Clean up wechat-related code from backend and frontend UsersView enhancements: - Add text labels to action buttons (Filter Settings, Column Settings, Attributes Config) for better UX - Change status column to show colored dot + Chinese text instead of English text - Add dynamic attribute columns support with batch loading - Add column visibility settings with localStorage persistence - Add filter settings modal for search and filter preferences - Update i18n translations 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
113 lines
2.9 KiB
Go
113 lines
2.9 KiB
Go
package handler
|
||
|
||
import (
|
||
"github.com/Wei-Shaw/sub2api/internal/handler/dto"
|
||
"github.com/Wei-Shaw/sub2api/internal/pkg/response"
|
||
middleware2 "github.com/Wei-Shaw/sub2api/internal/server/middleware"
|
||
"github.com/Wei-Shaw/sub2api/internal/service"
|
||
|
||
"github.com/gin-gonic/gin"
|
||
)
|
||
|
||
// UserHandler handles user-related requests
|
||
type UserHandler struct {
|
||
userService *service.UserService
|
||
}
|
||
|
||
// NewUserHandler creates a new UserHandler
|
||
func NewUserHandler(userService *service.UserService) *UserHandler {
|
||
return &UserHandler{
|
||
userService: userService,
|
||
}
|
||
}
|
||
|
||
// ChangePasswordRequest represents the change password request payload
|
||
type ChangePasswordRequest struct {
|
||
OldPassword string `json:"old_password" binding:"required"`
|
||
NewPassword string `json:"new_password" binding:"required,min=6"`
|
||
}
|
||
|
||
// UpdateProfileRequest represents the update profile request payload
|
||
type UpdateProfileRequest struct {
|
||
Username *string `json:"username"`
|
||
}
|
||
|
||
// GetProfile handles getting user profile
|
||
// GET /api/v1/users/me
|
||
func (h *UserHandler) GetProfile(c *gin.Context) {
|
||
subject, ok := middleware2.GetAuthSubjectFromContext(c)
|
||
if !ok {
|
||
response.Unauthorized(c, "User not authenticated")
|
||
return
|
||
}
|
||
|
||
userData, err := h.userService.GetByID(c.Request.Context(), subject.UserID)
|
||
if err != nil {
|
||
response.ErrorFrom(c, err)
|
||
return
|
||
}
|
||
|
||
// 清空notes字段,普通用户不应看到备注
|
||
userData.Notes = ""
|
||
|
||
response.Success(c, dto.UserFromService(userData))
|
||
}
|
||
|
||
// ChangePassword handles changing user password
|
||
// POST /api/v1/users/me/password
|
||
func (h *UserHandler) ChangePassword(c *gin.Context) {
|
||
subject, ok := middleware2.GetAuthSubjectFromContext(c)
|
||
if !ok {
|
||
response.Unauthorized(c, "User not authenticated")
|
||
return
|
||
}
|
||
|
||
var req ChangePasswordRequest
|
||
if err := c.ShouldBindJSON(&req); err != nil {
|
||
response.BadRequest(c, "Invalid request: "+err.Error())
|
||
return
|
||
}
|
||
|
||
svcReq := service.ChangePasswordRequest{
|
||
CurrentPassword: req.OldPassword,
|
||
NewPassword: req.NewPassword,
|
||
}
|
||
err := h.userService.ChangePassword(c.Request.Context(), subject.UserID, svcReq)
|
||
if err != nil {
|
||
response.ErrorFrom(c, err)
|
||
return
|
||
}
|
||
|
||
response.Success(c, gin.H{"message": "Password changed successfully"})
|
||
}
|
||
|
||
// UpdateProfile handles updating user profile
|
||
// PUT /api/v1/users/me
|
||
func (h *UserHandler) UpdateProfile(c *gin.Context) {
|
||
subject, ok := middleware2.GetAuthSubjectFromContext(c)
|
||
if !ok {
|
||
response.Unauthorized(c, "User not authenticated")
|
||
return
|
||
}
|
||
|
||
var req UpdateProfileRequest
|
||
if err := c.ShouldBindJSON(&req); err != nil {
|
||
response.BadRequest(c, "Invalid request: "+err.Error())
|
||
return
|
||
}
|
||
|
||
svcReq := service.UpdateProfileRequest{
|
||
Username: req.Username,
|
||
}
|
||
updatedUser, err := h.userService.UpdateProfile(c.Request.Context(), subject.UserID, svcReq)
|
||
if err != nil {
|
||
response.ErrorFrom(c, err)
|
||
return
|
||
}
|
||
|
||
// 清空notes字段,普通用户不应看到备注
|
||
updatedUser.Notes = ""
|
||
|
||
response.Success(c, dto.UserFromService(updatedUser))
|
||
}
|