feat: 添加了根据关注的feed流
This commit is contained in:
@@ -38,3 +38,13 @@ type ListLikesCountResponse struct {
|
|||||||
NextLikesCountBefore int64 `json:"next_likes_count_before"`
|
NextLikesCountBefore int64 `json:"next_likes_count_before"`
|
||||||
HasMore bool `json:"has_more"`
|
HasMore bool `json:"has_more"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type ListByFollowingRequest struct {
|
||||||
|
Limit int `json:"limit"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ListByFollowingResponse struct {
|
||||||
|
VideoList []FeedVideoItem `json:"video_list"`
|
||||||
|
NextTime int64 `json:"next_time"`
|
||||||
|
HasMore bool `json:"has_more"`
|
||||||
|
}
|
||||||
|
|||||||
@@ -60,3 +60,24 @@ func (f *FeedHandler) ListLikesCount(c *gin.Context) {
|
|||||||
}
|
}
|
||||||
c.JSON(200, feedItems)
|
c.JSON(200, feedItems)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (f *FeedHandler) ListByFollowing(c *gin.Context) {
|
||||||
|
var req ListByFollowingRequest
|
||||||
|
if err := c.ShouldBindJSON(&req); err != nil {
|
||||||
|
c.JSON(400, gin.H{"error": err.Error()})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if req.Limit <= 0 || req.Limit > 50 {
|
||||||
|
req.Limit = 10
|
||||||
|
}
|
||||||
|
viewerAccountID, err := middleware.GetAccountID(c)
|
||||||
|
if err != nil {
|
||||||
|
viewerAccountID = 0
|
||||||
|
}
|
||||||
|
feedItems, err := f.service.ListByFollowing(c.Request.Context(), req.Limit, viewerAccountID)
|
||||||
|
if err != nil {
|
||||||
|
c.JSON(500, gin.H{"error": err.Error()})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
c.JSON(200, feedItems)
|
||||||
|
}
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ package feed
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"feedsystem_video_go/internal/social"
|
||||||
"feedsystem_video_go/internal/video"
|
"feedsystem_video_go/internal/video"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@@ -41,3 +42,20 @@ func (repo *FeedRepository) ListLikesCount(ctx context.Context, limit int, likes
|
|||||||
}
|
}
|
||||||
return videos, nil
|
return videos, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (repo *FeedRepository) ListByFollowing(ctx context.Context, limit int, viewerAccountID uint) ([]video.Video, error) {
|
||||||
|
var videos []video.Video
|
||||||
|
query := repo.db.WithContext(ctx).Model(&video.Video{}).
|
||||||
|
Order("create_time DESC")
|
||||||
|
if viewerAccountID > 0 {
|
||||||
|
followingSubQuery := repo.db.WithContext(ctx).
|
||||||
|
Model(&social.Social{}).
|
||||||
|
Select("vlogger_id").
|
||||||
|
Where("follower_id = ?", viewerAccountID)
|
||||||
|
query = query.Where("author_id IN (?)", followingSubQuery)
|
||||||
|
}
|
||||||
|
if err := query.Limit(limit).Find(&videos).Error; err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return videos, nil
|
||||||
|
}
|
||||||
|
|||||||
@@ -99,3 +99,45 @@ func (f *FeedService) ListLikesCount(ctx context.Context, limit int, likesCountB
|
|||||||
}
|
}
|
||||||
return resp, nil
|
return resp, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (f *FeedService) ListByFollowing(ctx context.Context, limit int, viewerAccountID uint) (ListByFollowingResponse, error) {
|
||||||
|
videos, err := f.repo.ListByFollowing(ctx, limit, viewerAccountID)
|
||||||
|
if err != nil {
|
||||||
|
return ListByFollowingResponse{}, err
|
||||||
|
}
|
||||||
|
var nextTime int64
|
||||||
|
if len(videos) > 0 {
|
||||||
|
nextTime = videos[len(videos)-1].CreateTime.Unix()
|
||||||
|
} else {
|
||||||
|
nextTime = 0
|
||||||
|
}
|
||||||
|
hasMore := len(videos) == limit
|
||||||
|
feedVideos := make([]FeedVideoItem, 0, len(videos))
|
||||||
|
for _, video := range videos {
|
||||||
|
var isLiked bool
|
||||||
|
if viewerAccountID == 0 {
|
||||||
|
isLiked = false
|
||||||
|
} else {
|
||||||
|
isLiked, err = f.likeRepo.IsLiked(ctx, video.ID, viewerAccountID)
|
||||||
|
if err != nil {
|
||||||
|
return ListByFollowingResponse{}, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
feedVideos = append(feedVideos, FeedVideoItem{
|
||||||
|
ID: video.ID,
|
||||||
|
Author: FeedAuthor{ID: video.AuthorID, Username: video.Username},
|
||||||
|
Title: video.Title,
|
||||||
|
Description: video.Description,
|
||||||
|
PlayURL: video.PlayURL,
|
||||||
|
CoverURL: video.CoverURL,
|
||||||
|
LikesCount: video.LikesCount,
|
||||||
|
IsLiked: isLiked,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
resp := ListByFollowingResponse{
|
||||||
|
VideoList: feedVideos,
|
||||||
|
NextTime: nextTime,
|
||||||
|
HasMore: hasMore,
|
||||||
|
}
|
||||||
|
return resp, nil
|
||||||
|
}
|
||||||
|
|||||||
@@ -97,5 +97,10 @@ func SetRouter(db *gorm.DB) *gin.Engine {
|
|||||||
feedGroup.POST("/listLatest", feedHandler.ListLatest)
|
feedGroup.POST("/listLatest", feedHandler.ListLatest)
|
||||||
feedGroup.POST("/listLikesCount", feedHandler.ListLikesCount)
|
feedGroup.POST("/listLikesCount", feedHandler.ListLikesCount)
|
||||||
}
|
}
|
||||||
|
protectedFeedGroup := feedGroup.Group("")
|
||||||
|
protectedFeedGroup.Use(middleware.JWTAuth(accountRepository))
|
||||||
|
{
|
||||||
|
protectedFeedGroup.POST("/listByFollowing", feedHandler.ListByFollowing)
|
||||||
|
}
|
||||||
return r
|
return r
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user