2017-09-14 19:05:43 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Online.API.Requests
|
|
|
|
|
{
|
|
|
|
|
public class GetUserScoresRequest : APIRequest<List<OnlineScore>>
|
|
|
|
|
{
|
|
|
|
|
private readonly long userId;
|
|
|
|
|
private readonly ScoreType type;
|
2017-09-22 04:07:23 +08:00
|
|
|
|
private readonly int offset;
|
2017-09-14 19:05:43 +08:00
|
|
|
|
|
2017-09-22 04:07:23 +08:00
|
|
|
|
public GetUserScoresRequest(long userId, ScoreType type, int offset = 0)
|
2017-09-14 19:05:43 +08:00
|
|
|
|
{
|
|
|
|
|
this.userId = userId;
|
|
|
|
|
this.type = type;
|
2017-09-22 04:07:23 +08:00
|
|
|
|
this.offset = offset;
|
2017-09-14 19:05:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-09-22 04:07:23 +08:00
|
|
|
|
protected override string Target => $@"users/{userId}/scores/{type.ToString().ToLower()}?offset={offset}";
|
2017-09-14 19:05:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum ScoreType
|
|
|
|
|
{
|
|
|
|
|
Best,
|
|
|
|
|
Firsts,
|
|
|
|
|
Recent
|
|
|
|
|
}
|
|
|
|
|
}
|