2019-01-24 16:43:03 +08: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 17:19:50 +08:00
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2018-09-25 19:53:24 +08:00
|
|
|
|
using System.Net.Http;
|
2017-04-19 17:46:26 +08:00
|
|
|
|
using osu.Framework.IO.Network;
|
|
|
|
|
using osu.Game.Online.Chat;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-04-19 17:46:26 +08:00
|
|
|
|
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
|
|
|
|
|
2017-04-19 17:46:26 +08:00
|
|
|
|
public PostMessageRequest(Message message)
|
|
|
|
|
{
|
2021-06-29 15:30:46 +08:00
|
|
|
|
Message = message;
|
2017-04-19 17:46:26 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-04-19 17:46:26 +08:00
|
|
|
|
protected override WebRequest CreateWebRequest()
|
|
|
|
|
{
|
|
|
|
|
var req = base.CreateWebRequest();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-09-25 19:53:24 +08:00
|
|
|
|
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
|
|
|
|
|
2017-04-19 17:46:26 +08:00
|
|
|
|
return req;
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-06-29 15:30:46 +08:00
|
|
|
|
protected override string Target => $@"chat/channels/{Message.ChannelId}/messages";
|
2017-04-19 17:46:26 +08:00
|
|
|
|
}
|
2017-09-22 07:47:24 +08:00
|
|
|
|
}
|