2019-01-24 17:43:03 +09: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.
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2018-09-25 20:53:24 +09:00
|
|
|
|
using System.Net.Http;
|
2018-04-13 18:19:50 +09: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 16:30:46 +09:00
|
|
|
|
public readonly Message Message;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
|
|
|
|
public PostMessageRequest(Message message)
|
|
|
|
|
{
|
2021-06-29 16:30:46 +09:00
|
|
|
|
Message = message;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override WebRequest CreateWebRequest()
|
|
|
|
|
{
|
|
|
|
|
var req = base.CreateWebRequest();
|
|
|
|
|
|
2018-09-25 20:53:24 +09:00
|
|
|
|
req.Method = HttpMethod.Post;
|
2021-06-29 16:30:46 +09:00
|
|
|
|
req.AddParameter(@"is_action", Message.IsAction.ToString().ToLowerInvariant());
|
|
|
|
|
req.AddParameter(@"message", Message.Content);
|
2022-11-04 16:42:59 +09:00
|
|
|
|
req.AddParameter(@"uuid", Message.Uuid);
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
|
|
|
|
return req;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-29 16:30:46 +09:00
|
|
|
|
protected override string Target => $@"chat/channels/{Message.ChannelId}/messages";
|
2018-04-13 18:19:50 +09:00
|
|
|
|
}
|
|
|
|
|
}
|