⚗️ Adjust the algorithm for both the featured post and the activity feed
This commit is contained in:
@@ -23,7 +23,7 @@ public class ActivityService(
|
|||||||
var postTime = post.PublishedAt ?? post.CreatedAt;
|
var postTime = post.PublishedAt ?? post.CreatedAt;
|
||||||
var hours = (now - postTime).TotalHours;
|
var hours = (now - postTime).TotalHours;
|
||||||
// Add 1 to score to prevent negative results for posts with more downvotes than upvotes
|
// 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(
|
public async Task<List<Activity>> GetActivitiesForAnyone(
|
||||||
|
@@ -11,8 +11,7 @@ namespace DysonNetwork.Sphere.Post;
|
|||||||
public enum PostType
|
public enum PostType
|
||||||
{
|
{
|
||||||
Moment,
|
Moment,
|
||||||
Article,
|
Article
|
||||||
Video
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public enum PostVisibility
|
public enum PostVisibility
|
||||||
|
@@ -817,20 +817,41 @@ public partial class PostService(
|
|||||||
var today = SystemClock.Instance.GetCurrentInstant();
|
var today = SystemClock.Instance.GetCurrentInstant();
|
||||||
var periodStart = today.InUtc().Date.AtStartOfDayInZone(DateTimeZone.Utc).ToInstant().Minus(Duration.FromDays(1));
|
var periodStart = today.InUtc().Date.AtStartOfDayInZone(DateTimeZone.Utc).ToInstant().Minus(Duration.FromDays(1));
|
||||||
var periodEnd = today.InUtc().Date.AtStartOfDayInZone(DateTimeZone.Utc).ToInstant();
|
var periodEnd = today.InUtc().Date.AtStartOfDayInZone(DateTimeZone.Utc).ToInstant();
|
||||||
|
|
||||||
|
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 reactSocialPoints = await db.PostReactions
|
var reactionScores = await db.PostReactions
|
||||||
.Include(e => e.Post)
|
.Where(e => postsInPeriod.Contains(e.PostId))
|
||||||
.Where(e => e.Post.Visibility == PostVisibility.Public)
|
|
||||||
.Where(e => e.Post.CreatedAt >= periodStart && e.Post.CreatedAt < periodEnd)
|
|
||||||
.GroupBy(e => e.PostId)
|
.GroupBy(e => e.PostId)
|
||||||
.Select(e => new
|
.Select(e => new
|
||||||
{
|
{
|
||||||
PostId = e.Key,
|
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)
|
.OrderByDescending(e => e.Count)
|
||||||
.Take(5)
|
.Take(5)
|
||||||
.ToDictionaryAsync(e => e.PostId, e => e.Count);
|
.ToDictionary(e => e.PostId, e => e.Count);
|
||||||
|
|
||||||
featuredIds = reactSocialPoints.Select(e => e.Key).ToList();
|
featuredIds = reactSocialPoints.Select(e => e.Key).ToList();
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user