mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 18:20:34 +08:00
41 lines
1.2 KiB
C#
41 lines
1.2 KiB
C#
// 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.
|
|
|
|
using System.Net.Http;
|
|
using Newtonsoft.Json;
|
|
using osu.Framework.IO.Network;
|
|
using osu.Game.Scoring;
|
|
|
|
namespace osu.Game.Online.API.Requests
|
|
{
|
|
public class SubmitRoomScoreRequest : APIRequest
|
|
{
|
|
private readonly int scoreId;
|
|
private readonly int roomId;
|
|
private readonly int playlistItemId;
|
|
private readonly ScoreInfo scoreInfo;
|
|
|
|
public SubmitRoomScoreRequest(int scoreId, int roomId, int playlistItemId, ScoreInfo scoreInfo)
|
|
{
|
|
this.scoreId = scoreId;
|
|
this.roomId = roomId;
|
|
this.playlistItemId = playlistItemId;
|
|
this.scoreInfo = scoreInfo;
|
|
}
|
|
|
|
protected override WebRequest CreateWebRequest()
|
|
{
|
|
var req = base.CreateWebRequest();
|
|
|
|
req.ContentType = "application/json";
|
|
req.Method = HttpMethod.Put;
|
|
|
|
req.AddRaw(JsonConvert.SerializeObject(scoreInfo));
|
|
|
|
return req;
|
|
}
|
|
|
|
protected override string Target => $@"rooms/{roomId}/playlist/{playlistItemId}/scores/{scoreId}";
|
|
}
|
|
}
|