mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 23:07:44 +08:00
44 lines
1.2 KiB
C#
44 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.
|
|
|
|
#nullable disable
|
|
|
|
using System.Net.Http;
|
|
using Newtonsoft.Json;
|
|
using osu.Framework.IO.Network;
|
|
using osu.Game.Online.API;
|
|
using osu.Game.Online.API.Requests.Responses;
|
|
using osu.Game.Scoring;
|
|
|
|
namespace osu.Game.Online.Rooms
|
|
{
|
|
public abstract class SubmitScoreRequest : APIRequest<MultiplayerScore>
|
|
{
|
|
public readonly SoloScoreInfo Score;
|
|
|
|
protected readonly long ScoreId;
|
|
|
|
protected SubmitScoreRequest(ScoreInfo scoreInfo, long scoreId)
|
|
{
|
|
Score = SoloScoreInfo.ForSubmission(scoreInfo);
|
|
ScoreId = scoreId;
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|