Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ppy
GitHub Repository: ppy/osu
Path: blob/master/osu.Game/Online/API/Requests/CommentPostRequest.cs
4397 views
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.

using System.Net.Http;
using osu.Framework.IO.Network;
using osu.Game.Online.API.Requests.Responses;

namespace osu.Game.Online.API.Requests
{
    public class CommentPostRequest : APIRequest<CommentBundle>
    {
        public readonly CommentableType Commentable;
        public readonly long CommentableId;
        public readonly string Message;
        public readonly long? ParentCommentId;

        public CommentPostRequest(CommentableType commentable, long commentableId, string message, long? parentCommentId = null)
        {
            Commentable = commentable;
            CommentableId = commentableId;
            Message = message;
            ParentCommentId = parentCommentId;
        }

        protected override WebRequest CreateWebRequest()
        {
            var req = base.CreateWebRequest();
            req.Method = HttpMethod.Post;

            req.AddParameter(@"comment[commentable_type]", Commentable.ToString().ToLowerInvariant());
            req.AddParameter(@"comment[commentable_id]", $"{CommentableId}");
            req.AddParameter(@"comment[message]", Message);
            if (ParentCommentId.HasValue)
                req.AddParameter(@"comment[parent_id]", $"{ParentCommentId}");

            return req;
        }

        protected override string Target => "comments";
    }
}