mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 12:57:25 +08:00
47 lines
1.4 KiB
C#
47 lines
1.4 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.Online.API;
|
|
using osu.Game.Online.Solo;
|
|
using osu.Game.Scoring;
|
|
|
|
namespace osu.Game.Online.Rooms
|
|
{
|
|
public class SubmitRoomScoreRequest : APIRequest<MultiplayerScore>
|
|
{
|
|
private readonly long scoreId;
|
|
private readonly long roomId;
|
|
private readonly long playlistItemId;
|
|
private readonly SubmittableScore score;
|
|
|
|
public SubmitRoomScoreRequest(long scoreId, long roomId, long playlistItemId, ScoreInfo scoreInfo)
|
|
{
|
|
this.scoreId = scoreId;
|
|
this.roomId = roomId;
|
|
this.playlistItemId = playlistItemId;
|
|
score = new SubmittableScore(scoreInfo);
|
|
}
|
|
|
|
protected override WebRequest CreateWebRequest()
|
|
{
|
|
var req = base.CreateWebRequest();
|
|
|
|
req.ContentType = "application/json";
|
|
req.Method = HttpMethod.Put;
|
|
req.Timeout = 30000;
|
|
|
|
req.AddRaw(JsonConvert.SerializeObject(score, new JsonSerializerSettings
|
|
{
|
|
ReferenceLoopHandling = ReferenceLoopHandling.Ignore
|
|
}));
|
|
|
|
return req;
|
|
}
|
|
|
|
protected override string Target => $@"rooms/{roomId}/playlist/{playlistItemId}/scores/{scoreId}";
|
|
}
|
|
}
|