Files
juwan-backend/app/search/api/internal/handler/favorites/addFavoriteHandler.go
T
2026-04-24 13:24:58 +08:00

33 lines
778 B
Go

// Code scaffolded by goctl. Safe to edit.
// goctl 1.10.1
package favorites
import (
"net/http"
"github.com/zeromicro/go-zero/rest/httpx"
"juwan-backend/app/search/api/internal/logic/favorites"
"juwan-backend/app/search/api/internal/svc"
"juwan-backend/app/search/api/internal/types"
)
// 添加收藏
func AddFavoriteHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
var req types.FavoriteReq
if err := httpx.Parse(r, &req); err != nil {
httpx.ErrorCtx(r.Context(), w, err)
return
}
l := favorites.NewAddFavoriteLogic(r.Context(), svcCtx)
resp, err := l.AddFavorite(&req)
if err != nil {
httpx.ErrorCtx(r.Context(), w, err)
} else {
httpx.OkJsonCtx(r.Context(), w, resp)
}
}
}