⚗️ Adjust the algorithm for both the featured post and the activity feed

This commit is contained in:
2025-09-03 23:44:27 +08:00
parent 7f110313e9
commit 3ee04d0b24
3 changed files with 29 additions and 9 deletions

View File

@@ -23,7 +23,7 @@ public class ActivityService(
var postTime = post.PublishedAt ?? post.CreatedAt;
var hours = (now - postTime).TotalHours;
// Add 1 to score to prevent negative results for posts with more downvotes than upvotes
return (score + 1) / Math.Pow(hours + 2, 1.8);
return (score + 1) / Math.Pow(hours + 1.5, 2.0);
}
public async Task<List<Activity>> GetActivitiesForAnyone(

View File

@@ -11,8 +11,7 @@ namespace DysonNetwork.Sphere.Post;
public enum PostType
{
Moment,
Article,
Video
Article
}
public enum PostVisibility

View File

@@ -818,19 +818,40 @@ public partial class PostService(
var periodStart = today.InUtc().Date.AtStartOfDayInZone(DateTimeZone.Utc).ToInstant().Minus(Duration.FromDays(1));
var periodEnd = today.InUtc().Date.AtStartOfDayInZone(DateTimeZone.Utc).ToInstant();
var reactSocialPoints = await db.PostReactions
.Include(e => e.Post)
.Where(e => e.Post.Visibility == PostVisibility.Public)
.Where(e => e.Post.CreatedAt >= periodStart && e.Post.CreatedAt < periodEnd)
var postsInPeriod = await db.Posts
.Where(e => e.Visibility == PostVisibility.Public)
.Where(e => e.CreatedAt >= periodStart && e.CreatedAt < periodEnd)
.Select(e => e.Id)
.ToListAsync();
var reactionScores = await db.PostReactions
.Where(e => postsInPeriod.Contains(e.PostId))
.GroupBy(e => e.PostId)
.Select(e => new
{
PostId = e.Key,
Count = e.Sum(r => r.Attitude == PostReactionAttitude.Positive ? 1 : -1)
Score = e.Sum(r => r.Attitude == PostReactionAttitude.Positive ? 1 : -1)
})
.ToDictionaryAsync(e => e.PostId, e => e.Score);
var repliesCounts = await db.Posts
.Where(p => p.RepliedPostId != null && postsInPeriod.Contains(p.RepliedPostId.Value))
.GroupBy(p => p.RepliedPostId!.Value)
.ToDictionaryAsync(
g => g.Key,
g => g.Count()
);
var reactSocialPoints = postsInPeriod
.Select(postId => new
{
PostId = postId,
Count = (reactionScores.TryGetValue(postId, out var rScore) ? rScore : 0) +
(repliesCounts.TryGetValue(postId, out var repCount) ? repCount : 0)
})
.OrderByDescending(e => e.Count)
.Take(5)
.ToDictionaryAsync(e => e.PostId, e => e.Count);
.ToDictionary(e => e.PostId, e => e.Count);
featuredIds = reactSocialPoints.Select(e => e.Key).ToList();