* 重构 publish tab 选择逻辑,把公共代码提取到同一个函数中 * feat: 为视频发布功能新增HTTP API接口和完善文档 - 新增 /api/v1/publish_video HTTP接口 - 添加 publishVideoHandler 处理函数 - 更新 API.md 增加视频发布接口文档 - 更新 README.md 和 README_EN.md 增加视频发布功能说明 - 在MCP工具列表中补充 publish_with_video 工具说明
211 lines
5.9 KiB
Go
211 lines
5.9 KiB
Go
package main
|
||
|
||
import (
|
||
"net/http"
|
||
|
||
"github.com/gin-gonic/gin"
|
||
"github.com/sirupsen/logrus"
|
||
)
|
||
|
||
// respondError 返回错误响应
|
||
func respondError(c *gin.Context, statusCode int, code, message string, details any) {
|
||
response := ErrorResponse{
|
||
Error: message,
|
||
Code: code,
|
||
Details: details,
|
||
}
|
||
|
||
logrus.Errorf("%s %s %s %d", c.Request.Method, c.Request.URL.Path,
|
||
c.GetString("account"), statusCode)
|
||
|
||
c.JSON(statusCode, response)
|
||
}
|
||
|
||
// respondSuccess 返回成功响应
|
||
func respondSuccess(c *gin.Context, data any, message string) {
|
||
response := SuccessResponse{
|
||
Success: true,
|
||
Data: data,
|
||
Message: message,
|
||
}
|
||
|
||
logrus.Infof("%s %s %s %d", c.Request.Method, c.Request.URL.Path,
|
||
c.GetString("account"), http.StatusOK)
|
||
|
||
c.JSON(http.StatusOK, response)
|
||
}
|
||
|
||
// checkLoginStatusHandler 检查登录状态
|
||
func (s *AppServer) checkLoginStatusHandler(c *gin.Context) {
|
||
status, err := s.xiaohongshuService.CheckLoginStatus(c.Request.Context())
|
||
if err != nil {
|
||
respondError(c, http.StatusInternalServerError, "STATUS_CHECK_FAILED",
|
||
"检查登录状态失败", err.Error())
|
||
return
|
||
}
|
||
|
||
c.Set("account", "ai-report")
|
||
respondSuccess(c, status, "检查登录状态成功")
|
||
}
|
||
|
||
// getLoginQrcodeHandler 处理 [GET /api/login/qrcode] 请求。
|
||
// 用于生成并返回登录二维码(Base64 图片 + 超时时间),供前端展示给用户扫码登录。
|
||
func (s *AppServer) getLoginQrcodeHandler(c *gin.Context) {
|
||
result, err := s.xiaohongshuService.GetLoginQrcode(c.Request.Context())
|
||
if err != nil {
|
||
respondError(c, http.StatusInternalServerError, "STATUS_CHECK_FAILED",
|
||
"获取登录二维码失败", err.Error())
|
||
return
|
||
}
|
||
|
||
respondSuccess(c, result, "获取登录二维码成功")
|
||
}
|
||
|
||
// publishHandler 发布内容
|
||
func (s *AppServer) publishHandler(c *gin.Context) {
|
||
var req PublishRequest
|
||
if err := c.ShouldBindJSON(&req); err != nil {
|
||
respondError(c, http.StatusBadRequest, "INVALID_REQUEST",
|
||
"请求参数错误", err.Error())
|
||
return
|
||
}
|
||
|
||
// 执行发布
|
||
result, err := s.xiaohongshuService.PublishContent(c.Request.Context(), &req)
|
||
if err != nil {
|
||
respondError(c, http.StatusInternalServerError, "PUBLISH_FAILED",
|
||
"发布失败", err.Error())
|
||
return
|
||
}
|
||
|
||
respondSuccess(c, result, "发布成功")
|
||
}
|
||
|
||
// publishVideoHandler 发布视频内容
|
||
func (s *AppServer) publishVideoHandler(c *gin.Context) {
|
||
var req PublishVideoRequest
|
||
if err := c.ShouldBindJSON(&req); err != nil {
|
||
respondError(c, http.StatusBadRequest, "INVALID_REQUEST",
|
||
"请求参数错误", err.Error())
|
||
return
|
||
}
|
||
|
||
// 执行视频发布
|
||
result, err := s.xiaohongshuService.PublishVideo(c.Request.Context(), &req)
|
||
if err != nil {
|
||
respondError(c, http.StatusInternalServerError, "PUBLISH_VIDEO_FAILED",
|
||
"视频发布失败", err.Error())
|
||
return
|
||
}
|
||
|
||
respondSuccess(c, result, "视频发布成功")
|
||
}
|
||
|
||
// listFeedsHandler 获取Feeds列表
|
||
func (s *AppServer) listFeedsHandler(c *gin.Context) {
|
||
// 获取 Feeds 列表
|
||
result, err := s.xiaohongshuService.ListFeeds(c.Request.Context())
|
||
if err != nil {
|
||
respondError(c, http.StatusInternalServerError, "LIST_FEEDS_FAILED",
|
||
"获取Feeds列表失败", err.Error())
|
||
return
|
||
}
|
||
|
||
c.Set("account", "ai-report")
|
||
respondSuccess(c, result, "获取Feeds列表成功")
|
||
}
|
||
|
||
// searchFeedsHandler 搜索Feeds
|
||
func (s *AppServer) searchFeedsHandler(c *gin.Context) {
|
||
keyword := c.Query("keyword")
|
||
if keyword == "" {
|
||
respondError(c, http.StatusBadRequest, "MISSING_KEYWORD",
|
||
"缺少关键词参数", "keyword parameter is required")
|
||
return
|
||
}
|
||
|
||
// 搜索 Feeds
|
||
result, err := s.xiaohongshuService.SearchFeeds(c.Request.Context(), keyword)
|
||
if err != nil {
|
||
respondError(c, http.StatusInternalServerError, "SEARCH_FEEDS_FAILED",
|
||
"搜索Feeds失败", err.Error())
|
||
return
|
||
}
|
||
|
||
c.Set("account", "ai-report")
|
||
respondSuccess(c, result, "搜索Feeds成功")
|
||
}
|
||
|
||
// getFeedDetailHandler 获取Feed详情
|
||
func (s *AppServer) getFeedDetailHandler(c *gin.Context) {
|
||
var req FeedDetailRequest
|
||
if err := c.ShouldBindJSON(&req); err != nil {
|
||
respondError(c, http.StatusBadRequest, "INVALID_REQUEST",
|
||
"请求参数错误", err.Error())
|
||
return
|
||
}
|
||
|
||
// 获取 Feed 详情
|
||
result, err := s.xiaohongshuService.GetFeedDetail(c.Request.Context(), req.FeedID, req.XsecToken)
|
||
if err != nil {
|
||
respondError(c, http.StatusInternalServerError, "GET_FEED_DETAIL_FAILED",
|
||
"获取Feed详情失败", err.Error())
|
||
return
|
||
}
|
||
|
||
c.Set("account", "ai-report")
|
||
respondSuccess(c, result, "获取Feed详情成功")
|
||
}
|
||
|
||
// userProfileHandler 用户主页
|
||
func (s *AppServer) userProfileHandler(c *gin.Context) {
|
||
var req UserProfileRequest
|
||
if err := c.ShouldBindJSON(&req); err != nil {
|
||
respondError(c, http.StatusBadRequest, "INVALID_REQUEST",
|
||
"请求参数错误", err.Error())
|
||
return
|
||
}
|
||
|
||
// 获取用户信息
|
||
result, err := s.xiaohongshuService.UserProfile(c.Request.Context(), req.UserID, req.XsecToken)
|
||
if err != nil {
|
||
respondError(c, http.StatusInternalServerError, "GET_USER_PROFILE_FAILED",
|
||
"获取用户主页失败", err.Error())
|
||
return
|
||
}
|
||
|
||
c.Set("account", "ai-report")
|
||
respondSuccess(c, map[string]any{"data": result}, "result.Message")
|
||
}
|
||
|
||
// postCommentHandler 发表评论到Feed
|
||
func (s *AppServer) postCommentHandler(c *gin.Context) {
|
||
var req PostCommentRequest
|
||
if err := c.ShouldBindJSON(&req); err != nil {
|
||
respondError(c, http.StatusBadRequest, "INVALID_REQUEST",
|
||
"请求参数错误", err.Error())
|
||
return
|
||
}
|
||
|
||
// 发表评论
|
||
result, err := s.xiaohongshuService.PostCommentToFeed(c.Request.Context(), req.FeedID, req.XsecToken, req.Content)
|
||
if err != nil {
|
||
respondError(c, http.StatusInternalServerError, "POST_COMMENT_FAILED",
|
||
"发表评论失败", err.Error())
|
||
return
|
||
}
|
||
|
||
c.Set("account", "ai-report")
|
||
respondSuccess(c, result, result.Message)
|
||
}
|
||
|
||
// healthHandler 健康检查
|
||
func healthHandler(c *gin.Context) {
|
||
respondSuccess(c, map[string]any{
|
||
"status": "healthy",
|
||
"service": "xiaohongshu-mcp",
|
||
"account": "ai-report",
|
||
"timestamp": "now",
|
||
}, "服务正常")
|
||
}
|