2019-10-07 16:48:05 +03:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
2022-06-17 16:37:17 +09:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2019-10-07 16:48:05 +03:00
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using System.Collections.Generic;
|
2021-08-13 19:22:46 +07:00
|
|
|
|
using System.Linq;
|
2019-10-07 16:48:05 +03:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Online.API.Requests.Responses
|
|
|
|
|
{
|
2019-10-15 11:20:06 +03:00
|
|
|
|
public class CommentBundle
|
2019-10-07 16:48:05 +03:00
|
|
|
|
{
|
|
|
|
|
[JsonProperty(@"comments")]
|
2020-02-10 15:43:11 +03:00
|
|
|
|
public List<Comment> Comments { get; set; }
|
2019-10-07 16:48:05 +03:00
|
|
|
|
|
|
|
|
|
[JsonProperty(@"has_more")]
|
|
|
|
|
public bool HasMore { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty(@"has_more_id")]
|
2019-10-07 18:26:07 +03:00
|
|
|
|
public long? HasMoreId { get; set; }
|
2019-10-07 16:48:05 +03:00
|
|
|
|
|
|
|
|
|
[JsonProperty(@"user_follow")]
|
|
|
|
|
public bool UserFollow { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty(@"included_comments")]
|
|
|
|
|
public List<Comment> IncludedComments { get; set; }
|
|
|
|
|
|
2021-08-13 13:13:28 +07:00
|
|
|
|
[JsonProperty(@"pinned_comments")]
|
|
|
|
|
public List<Comment> PinnedComments { get; set; }
|
|
|
|
|
|
2020-01-29 06:44:39 +03:00
|
|
|
|
private List<long> userVotes;
|
|
|
|
|
|
2019-10-17 12:35:12 +03:00
|
|
|
|
[JsonProperty(@"user_votes")]
|
2020-01-29 06:44:39 +03:00
|
|
|
|
public List<long> UserVotes
|
2019-10-17 12:35:12 +03:00
|
|
|
|
{
|
2020-01-29 06:44:39 +03:00
|
|
|
|
get => userVotes;
|
|
|
|
|
set
|
2019-10-17 12:35:12 +03:00
|
|
|
|
{
|
2020-01-29 06:44:39 +03:00
|
|
|
|
userVotes = value;
|
|
|
|
|
|
2020-01-30 00:53:05 +03:00
|
|
|
|
Comments.ForEach(c => c.IsVoted = value.Contains(c.Id));
|
2020-02-21 18:41:03 +09:00
|
|
|
|
IncludedComments.ForEach(c => c.IsVoted = value.Contains(c.Id));
|
2020-01-29 06:44:39 +03:00
|
|
|
|
}
|
2019-10-17 12:35:12 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-11-04 18:02:44 +09:00
|
|
|
|
private List<APIUser> users;
|
2019-10-08 13:45:13 +03:00
|
|
|
|
|
2019-10-07 16:48:05 +03:00
|
|
|
|
[JsonProperty(@"users")]
|
2021-11-04 18:02:44 +09:00
|
|
|
|
public List<APIUser> Users
|
2019-10-08 13:45:13 +03:00
|
|
|
|
{
|
|
|
|
|
get => users;
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
users = value;
|
|
|
|
|
|
2021-08-13 19:22:46 +07:00
|
|
|
|
foreach (var user in value)
|
2019-10-08 13:45:13 +03:00
|
|
|
|
{
|
2021-08-13 19:22:46 +07:00
|
|
|
|
foreach (var comment in Comments.Concat(IncludedComments).Concat(PinnedComments))
|
2019-10-08 13:45:13 +03:00
|
|
|
|
{
|
2021-08-13 19:22:46 +07:00
|
|
|
|
if (comment.UserId == user.Id)
|
|
|
|
|
comment.User = user;
|
2019-10-09 11:32:17 +03:00
|
|
|
|
|
2021-08-13 19:22:46 +07:00
|
|
|
|
if (comment.EditedById == user.Id)
|
|
|
|
|
comment.EditedUser = user;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-10-08 13:45:13 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-10-07 16:48:05 +03:00
|
|
|
|
|
|
|
|
|
[JsonProperty(@"total")]
|
|
|
|
|
public int Total { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty(@"top_level_count")]
|
|
|
|
|
public int TopLevelCount { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|