osu/osu.Game/Online/API/Requests/GetUserScoresRequest.cs

35 lines
1.0 KiB
C#
Raw Normal View History

// 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 09:19:50 +00:00
using System.Collections.Generic;
using osu.Game.Online.API.Requests.Responses;
2018-04-13 09:19:50 +00:00
namespace osu.Game.Online.API.Requests
{
public class GetUserScoresRequest : APIRequest<List<APILegacyScoreInfo>>
2018-04-13 09:19:50 +00:00
{
private readonly long userId;
private readonly ScoreType type;
private readonly int offset;
2019-07-15 10:31:57 +00:00
private readonly int limit;
2018-04-13 09:19:50 +00:00
2019-07-15 10:31:57 +00:00
public GetUserScoresRequest(long userId, ScoreType type, int offset = 0, int limit = 5)
2018-04-13 09:19:50 +00:00
{
this.userId = userId;
this.type = type;
this.offset = offset;
2019-07-15 10:37:25 +00:00
this.limit = limit;
2018-04-13 09:19:50 +00:00
}
// ReSharper disable once ImpureMethodCallOnReadonlyValueField
2019-07-15 10:31:57 +00:00
protected override string Target => $@"users/{userId}/scores/{type.ToString().ToLowerInvariant()}?offset={offset}&limit={limit}";
2018-04-13 09:19:50 +00:00
}
public enum ScoreType
{
Best,
Firsts,
Recent
}
}