// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.IO.Network; using Humanizer; using osu.Game.Online.API.Requests.Responses; using osu.Game.Overlays.Comments; namespace osu.Game.Online.API.Requests { public class GetCommentsRequest : APIRequest { private readonly long id; private readonly int page; private readonly CommentableType type; private readonly CommentsSortCriteria sort; public GetCommentsRequest(CommentableType type, long id, CommentsSortCriteria sort = CommentsSortCriteria.New, int page = 1) { this.type = type; this.sort = sort; this.id = id; this.page = page; } protected override WebRequest CreateWebRequest() { var req = base.CreateWebRequest(); req.AddParameter("commentable_type", type.ToString().Underscore().ToLowerInvariant()); req.AddParameter("commentable_id", id.ToString()); req.AddParameter("sort", sort.ToString().ToLowerInvariant()); req.AddParameter("page", page.ToString()); return req; } protected override string Target => "comments"; } public enum CommentableType { Build, Beatmapset, NewsPost } }