2026-04-25 16:03:29 +08:00
|
|
|
package account
|
|
|
|
|
|
|
|
|
|
import (
|
2026-04-25 18:49:16 +08:00
|
|
|
"crypto/rand"
|
|
|
|
|
"encoding/hex"
|
2026-04-25 16:03:29 +08:00
|
|
|
"errors"
|
2026-04-25 18:49:16 +08:00
|
|
|
"fmt"
|
|
|
|
|
"net/http"
|
|
|
|
|
"os"
|
|
|
|
|
"path"
|
|
|
|
|
"path/filepath"
|
|
|
|
|
"strconv"
|
|
|
|
|
"strings"
|
2026-04-25 16:03:29 +08:00
|
|
|
|
2026-04-25 16:18:57 +08:00
|
|
|
"feedsystem_video_go/internal/apierror"
|
2026-04-25 16:03:29 +08:00
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
|
"gorm.io/gorm"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type AccountHandler struct {
|
|
|
|
|
accountService *AccountService
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func NewAccountHandler(accountService *AccountService) *AccountHandler {
|
|
|
|
|
return &AccountHandler{accountService: accountService}
|
|
|
|
|
}
|
|
|
|
|
func (h *AccountHandler) CreateAccount(c *gin.Context) {
|
|
|
|
|
var req CreateAccountRequest
|
|
|
|
|
if err := c.ShouldBindJSON(&req); err != nil {
|
2026-04-25 16:18:57 +08:00
|
|
|
c.JSON(apierror.ClassifyHTTPStatus(err), gin.H{"error": err.Error()})
|
2026-04-25 16:03:29 +08:00
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if err := h.accountService.CreateAccount(c.Request.Context(), &Account{
|
|
|
|
|
Username: req.Username,
|
|
|
|
|
Password: req.Password,
|
|
|
|
|
}); err != nil {
|
|
|
|
|
c.JSON(500, gin.H{"error": err.Error()})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
c.JSON(200, gin.H{"message": "account created"})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (h *AccountHandler) Rename(c *gin.Context) {
|
|
|
|
|
var req RenameRequest
|
|
|
|
|
if err := c.ShouldBindJSON(&req); err != nil {
|
2026-04-25 16:18:57 +08:00
|
|
|
c.JSON(apierror.ClassifyHTTPStatus(err), gin.H{"error": err.Error()})
|
2026-04-25 16:03:29 +08:00
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
accountID, err := getAccountID(c)
|
|
|
|
|
if err != nil {
|
2026-04-25 16:18:57 +08:00
|
|
|
c.JSON(apierror.ClassifyHTTPStatus(err), gin.H{"error": err.Error()})
|
2026-04-25 16:03:29 +08:00
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
token, err := h.accountService.Rename(c.Request.Context(), accountID, req.NewUsername)
|
|
|
|
|
if err != nil {
|
|
|
|
|
if errors.Is(err, ErrNewUsernameRequired) {
|
2026-04-25 16:18:57 +08:00
|
|
|
c.JSON(apierror.ClassifyHTTPStatus(err), gin.H{"error": err.Error()})
|
2026-04-25 16:03:29 +08:00
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if errors.Is(err, ErrUsernameTaken) {
|
|
|
|
|
c.JSON(409, gin.H{"error": err.Error()})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if errors.Is(err, gorm.ErrRecordNotFound) {
|
|
|
|
|
c.JSON(404, gin.H{"error": "account not found"})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
c.JSON(500, gin.H{"error": err.Error()})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
c.JSON(200, gin.H{"token": token})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (h *AccountHandler) ChangePassword(c *gin.Context) {
|
|
|
|
|
var req ChangePasswordRequest
|
|
|
|
|
if err := c.ShouldBindJSON(&req); err != nil {
|
2026-04-25 16:18:57 +08:00
|
|
|
c.JSON(apierror.ClassifyHTTPStatus(err), gin.H{"error": err.Error()})
|
2026-04-25 16:03:29 +08:00
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if err := h.accountService.ChangePassword(c.Request.Context(), req.Username, req.OldPassword, req.NewPassword); err != nil {
|
|
|
|
|
c.JSON(400, gin.H{"error": "unsuccessfully password changed"})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
c.JSON(200, gin.H{"message": "successfully password changed"})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (h *AccountHandler) FindByID(c *gin.Context) {
|
|
|
|
|
var req FindByIDRequest
|
|
|
|
|
if err := c.ShouldBindJSON(&req); err != nil {
|
2026-04-25 16:18:57 +08:00
|
|
|
c.JSON(apierror.ClassifyHTTPStatus(err), gin.H{"error": err.Error()})
|
2026-04-25 16:03:29 +08:00
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if account, err := h.accountService.FindByID(c.Request.Context(), req.ID); err != nil {
|
|
|
|
|
c.JSON(500, gin.H{"error": err.Error()})
|
|
|
|
|
return
|
|
|
|
|
} else {
|
|
|
|
|
c.JSON(200, account)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (h *AccountHandler) FindByUsername(c *gin.Context) {
|
|
|
|
|
var req FindByUsernameRequest
|
|
|
|
|
if err := c.ShouldBindJSON(&req); err != nil {
|
2026-04-25 16:18:57 +08:00
|
|
|
c.JSON(apierror.ClassifyHTTPStatus(err), gin.H{"error": err.Error()})
|
2026-04-25 16:03:29 +08:00
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if account, err := h.accountService.FindByUsername(c.Request.Context(), req.Username); err != nil {
|
|
|
|
|
c.JSON(500, gin.H{"error": err.Error()})
|
|
|
|
|
return
|
|
|
|
|
} else {
|
|
|
|
|
c.JSON(200, account)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (h *AccountHandler) Login(c *gin.Context) {
|
|
|
|
|
var req LoginRequest
|
|
|
|
|
if err := c.ShouldBindJSON(&req); err != nil {
|
2026-04-25 16:18:57 +08:00
|
|
|
c.JSON(apierror.ClassifyHTTPStatus(err), gin.H{"error": err.Error()})
|
2026-04-25 16:03:29 +08:00
|
|
|
return
|
|
|
|
|
}
|
2026-04-25 18:49:16 +08:00
|
|
|
account, err := h.accountService.FindByUsername(c.Request.Context(), req.Username)
|
|
|
|
|
if err != nil {
|
|
|
|
|
c.JSON(500, gin.H{"error": err.Error()})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
accessToken, refreshToken, err := h.accountService.Login(c.Request.Context(), req.Username, req.Password)
|
|
|
|
|
if err != nil {
|
2026-04-25 16:03:29 +08:00
|
|
|
c.JSON(500, gin.H{"error": err.Error()})
|
|
|
|
|
return
|
|
|
|
|
}
|
2026-04-25 18:49:16 +08:00
|
|
|
c.JSON(200, LoginResponse{Token: accessToken, RefreshToken: refreshToken, AccountID: account.ID, Username: account.Username})
|
2026-04-25 16:03:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (h *AccountHandler) Logout(c *gin.Context) {
|
|
|
|
|
accountID, err := getAccountID(c)
|
|
|
|
|
if err != nil {
|
2026-04-25 16:18:57 +08:00
|
|
|
c.JSON(apierror.ClassifyHTTPStatus(err), gin.H{"error": err.Error()})
|
2026-04-25 16:03:29 +08:00
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if err := h.accountService.Logout(c.Request.Context(), accountID); err != nil {
|
|
|
|
|
c.JSON(500, gin.H{"error": err.Error()})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
c.JSON(200, gin.H{"message": "account logged out"})
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-25 18:49:16 +08:00
|
|
|
func (h *AccountHandler) UploadAvatar(c *gin.Context) {
|
|
|
|
|
accountID, err := getAccountID(c)
|
|
|
|
|
if err != nil {
|
|
|
|
|
c.JSON(http.StatusUnauthorized, gin.H{"error": err.Error()})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
f, err := c.FormFile("file")
|
|
|
|
|
if err != nil {
|
|
|
|
|
c.JSON(http.StatusBadRequest, gin.H{"error": "missing file"})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
const maxSize = 10 << 20
|
|
|
|
|
if f.Size <= 0 || f.Size > maxSize {
|
|
|
|
|
c.JSON(http.StatusBadRequest, gin.H{"error": "invalid file size"})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
ext := strings.ToLower(filepath.Ext(f.Filename))
|
|
|
|
|
switch ext {
|
|
|
|
|
case ".jpg", ".jpeg", ".png", ".webp":
|
|
|
|
|
default:
|
|
|
|
|
c.JSON(http.StatusBadRequest, gin.H{"error": "only .jpg/.jpeg/.png/.webp allowed"})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
dir := filepath.Join(".run", "uploads", "avatars", strconv.FormatUint(uint64(accountID), 10))
|
|
|
|
|
if err := os.MkdirAll(dir, 0o755); err != nil {
|
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
filename, err := randHex(16)
|
|
|
|
|
if err != nil {
|
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
filename = filename + ext
|
|
|
|
|
absPath := filepath.Join(dir, filename)
|
|
|
|
|
if err := c.SaveUploadedFile(f, absPath); err != nil {
|
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
urlPath := path.Join("/static", "avatars", strconv.FormatUint(uint64(accountID), 10), filename)
|
|
|
|
|
avatarURL := buildAbsoluteURL(c, urlPath)
|
|
|
|
|
if err := h.accountService.UpdateAvatar(c.Request.Context(), accountID, avatarURL); err != nil {
|
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
c.JSON(http.StatusOK, gin.H{"avatar_url": avatarURL})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (h *AccountHandler) UpdateProfile(c *gin.Context) {
|
|
|
|
|
accountID, err := getAccountID(c)
|
|
|
|
|
if err != nil {
|
|
|
|
|
c.JSON(http.StatusUnauthorized, gin.H{"error": err.Error()})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
var req UpdateProfileRequest
|
|
|
|
|
if err := c.ShouldBindJSON(&req); err != nil {
|
|
|
|
|
c.JSON(apierror.ClassifyHTTPStatus(err), gin.H{"error": err.Error()})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if err := h.accountService.UpdateProfile(c.Request.Context(), accountID, &req); err != nil {
|
|
|
|
|
c.JSON(apierror.ClassifyHTTPStatus(err), gin.H{"error": err.Error()})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
c.JSON(http.StatusOK, gin.H{"message": "profile updated"})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (h *AccountHandler) Refresh(c *gin.Context) {
|
|
|
|
|
var req RefreshRequest
|
|
|
|
|
if err := c.ShouldBindJSON(&req); err != nil {
|
|
|
|
|
c.JSON(apierror.ClassifyHTTPStatus(err), gin.H{"error": err.Error()})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
newToken, accountID, username, err := h.accountService.RefreshAccessToken(c.Request.Context(), req.RefreshToken)
|
|
|
|
|
if err != nil {
|
|
|
|
|
c.JSON(http.StatusUnauthorized, gin.H{"error": "invalid refresh token"})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
c.JSON(http.StatusOK, LoginResponse{Token: newToken, AccountID: accountID, Username: username})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func randHex(n int) (string, error) {
|
|
|
|
|
b := make([]byte, n)
|
|
|
|
|
if _, err := rand.Read(b); err != nil {
|
|
|
|
|
return "", fmt.Errorf("rand.Read: %w", err)
|
|
|
|
|
}
|
|
|
|
|
return hex.EncodeToString(b), nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func buildAbsoluteURL(c *gin.Context, p string) string {
|
|
|
|
|
scheme := "http"
|
|
|
|
|
if c.Request.TLS != nil {
|
|
|
|
|
scheme = "https"
|
|
|
|
|
}
|
|
|
|
|
if xf := c.GetHeader("X-Forwarded-Proto"); xf != "" {
|
|
|
|
|
scheme = xf
|
|
|
|
|
}
|
|
|
|
|
return fmt.Sprintf("%s://%s%s", scheme, c.Request.Host, p)
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-25 16:03:29 +08:00
|
|
|
func getAccountID(c *gin.Context) (uint, error) {
|
|
|
|
|
value, exists := c.Get("accountID")
|
|
|
|
|
if !exists {
|
|
|
|
|
return 0, errors.New("accountID not found")
|
|
|
|
|
}
|
|
|
|
|
id, ok := value.(uint)
|
|
|
|
|
if !ok {
|
|
|
|
|
return 0, errors.New("accountID has invalid type")
|
|
|
|
|
}
|
|
|
|
|
return id, nil
|
|
|
|
|
}
|