mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 19:17:25 +08:00
55 lines
1.7 KiB
C#
55 lines
1.7 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 osu.Game.Users;
|
|
using osu.Game.Rulesets;
|
|
|
|
namespace osu.Game.Online.API.Requests
|
|
{
|
|
public class GetUserRequest : APIRequest<User>
|
|
{
|
|
private readonly string lookup;
|
|
public readonly RulesetInfo Ruleset;
|
|
private readonly LookupType lookupType;
|
|
|
|
/// <summary>
|
|
/// Gets the currently logged-in user.
|
|
/// </summary>
|
|
public GetUserRequest()
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a user from their ID.
|
|
/// </summary>
|
|
/// <param name="userId">The user to get.</param>
|
|
/// <param name="ruleset">The ruleset to get the user's info for.</param>
|
|
public GetUserRequest(long? userId = null, RulesetInfo ruleset = null)
|
|
{
|
|
lookup = userId.ToString();
|
|
lookupType = LookupType.Id;
|
|
Ruleset = ruleset;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a user from their username.
|
|
/// </summary>
|
|
/// <param name="username">The user to get.</param>
|
|
/// <param name="ruleset">The ruleset to get the user's info for.</param>
|
|
public GetUserRequest(string username = null, RulesetInfo ruleset = null)
|
|
{
|
|
lookup = username;
|
|
lookupType = LookupType.Username;
|
|
Ruleset = ruleset;
|
|
}
|
|
|
|
protected override string Target => lookup != null ? $@"users/{lookup}/{Ruleset?.ShortName}?k={lookupType.ToString().ToLower()}" : $@"me/{Ruleset?.ShortName}";
|
|
|
|
private enum LookupType
|
|
{
|
|
Id,
|
|
Username
|
|
}
|
|
}
|
|
}
|