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-12-22 11:50:37 +08:00
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2018-12-22 11:50:37 +08:00
|
|
|
using System.Net.Http;
|
|
|
|
using osu.Framework.IO.Network;
|
2020-07-22 17:29:50 +08:00
|
|
|
using osu.Game.Online.API;
|
2018-12-22 11:50:37 +08:00
|
|
|
|
2020-12-25 12:38:11 +08:00
|
|
|
namespace osu.Game.Online.Rooms
|
2018-12-22 11:50:37 +08:00
|
|
|
{
|
2018-12-22 14:45:16 +08:00
|
|
|
public class CreateRoomScoreRequest : APIRequest<APIScoreToken>
|
2018-12-22 11:50:37 +08:00
|
|
|
{
|
2021-02-16 18:29:40 +08:00
|
|
|
private readonly long roomId;
|
|
|
|
private readonly long playlistItemId;
|
2020-07-29 12:18:40 +08:00
|
|
|
private readonly string versionHash;
|
2018-12-22 11:50:37 +08:00
|
|
|
|
2021-02-16 18:29:40 +08:00
|
|
|
public CreateRoomScoreRequest(long roomId, long playlistItemId, string versionHash)
|
2018-12-22 11:50:37 +08:00
|
|
|
{
|
|
|
|
this.roomId = roomId;
|
|
|
|
this.playlistItemId = playlistItemId;
|
2020-07-29 12:18:40 +08:00
|
|
|
this.versionHash = versionHash;
|
2018-12-22 11:50:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override WebRequest CreateWebRequest()
|
|
|
|
{
|
|
|
|
var req = base.CreateWebRequest();
|
|
|
|
req.Method = HttpMethod.Post;
|
2020-07-29 12:18:40 +08:00
|
|
|
req.AddParameter("version_hash", versionHash);
|
2018-12-22 11:50:37 +08:00
|
|
|
return req;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override string Target => $@"rooms/{roomId}/playlist/{playlistItemId}/scores";
|
|
|
|
}
|
|
|
|
}
|