1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 15:27:25 +08:00
osu-lazer/osu.Game/Online/API/Requests/PostMessageRequest.cs

35 lines
950 B
C#
Raw Normal View History

// 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.
2018-04-13 17:19:50 +08:00
2022-06-17 15:37:17 +08:00
#nullable disable
using System.Net.Http;
2018-04-13 17:19:50 +08:00
using osu.Framework.IO.Network;
using osu.Game.Online.Chat;
namespace osu.Game.Online.API.Requests
{
public class PostMessageRequest : APIRequest<Message>
{
2021-06-29 15:30:46 +08:00
public readonly Message Message;
2018-04-13 17:19:50 +08:00
public PostMessageRequest(Message message)
{
2021-06-29 15:30:46 +08:00
Message = message;
2018-04-13 17:19:50 +08:00
}
protected override WebRequest CreateWebRequest()
{
var req = base.CreateWebRequest();
req.Method = HttpMethod.Post;
2021-06-29 15:30:46 +08:00
req.AddParameter(@"is_action", Message.IsAction.ToString().ToLowerInvariant());
req.AddParameter(@"message", Message.Content);
2018-04-13 17:19:50 +08:00
return req;
}
2021-06-29 15:30:46 +08:00
protected override string Target => $@"chat/channels/{Message.ChannelId}/messages";
2018-04-13 17:19:50 +08:00
}
}