Skip to content

Commit ce23fbc

Browse files
committed
fix: wrong transformer logic
1 parent d1dae15 commit ce23fbc

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/LinkDotNet.Blog.Web/Features/TransformBlogPostRecordsService.cs

+5
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,11 @@ from date in clicksPerDay.Keys.Where(k => k.blogPostId == blogPost.Id)
7777
foreach (var userRecord in userRecords)
7878
{
7979
var id = userRecord.UrlClicked.Replace("blogPost/", string.Empty, StringComparison.OrdinalIgnoreCase);
80+
var suffix = id.IndexOf('/', StringComparison.InvariantCultureIgnoreCase);
81+
if (suffix != -1)
82+
{
83+
id = id[..suffix];
84+
}
8085
var key = (id, userRecord.DateClicked);
8186
clicksPerDay.TryGetValue(key, out var count);
8287
clicksPerDay[key] = count + 1;

tests/LinkDotNet.Blog.IntegrationTests/Web/Features/TransformBlogPostRecordsServiceTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public async Task ShouldTransformRecords()
4949
var userRecords = new List<UserRecord>
5050
{
5151
new() { Id = "A", DateClicked = someDate, UrlClicked = $"blogPost/{blogPosts[0].Id}" },
52-
new() { Id = "B", DateClicked = someDate, UrlClicked = $"blogPost/{blogPosts[0].Id}" },
52+
new() { Id = "B", DateClicked = someDate, UrlClicked = $"blogPost/{blogPosts[0].Id}/suffix" },
5353
new() { Id = "C", DateClicked = someDate.AddDays(-3), UrlClicked = $"blogPost/{blogPosts[1].Id}" },
5454
new() { Id = "D", DateClicked = someDate.AddDays(-3), UrlClicked = $"blogPost/{blogPosts[1].Id}" },
5555
new() { Id = "E", DateClicked = someDate.AddDays(-2), UrlClicked = $"blogPost/{blogPosts[2].Id}" }

0 commit comments

Comments
 (0)