mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 08:27:49 +08:00
Merge pull request #28349 from bdach/do-not-hardcode-api-version
Derive API response version from game version
This commit is contained in:
commit
0a7336ef17
@ -42,7 +42,11 @@ namespace osu.Game.Online.API
|
|||||||
|
|
||||||
public string WebsiteRootUrl { get; }
|
public string WebsiteRootUrl { get; }
|
||||||
|
|
||||||
public int APIVersion => 20220705; // We may want to pull this from the game version eventually.
|
/// <summary>
|
||||||
|
/// The API response version.
|
||||||
|
/// See: https://osu.ppy.sh/docs/index.html#api-versions
|
||||||
|
/// </summary>
|
||||||
|
public int APIVersion { get; }
|
||||||
|
|
||||||
public Exception LastLoginError { get; private set; }
|
public Exception LastLoginError { get; private set; }
|
||||||
|
|
||||||
@ -84,12 +88,23 @@ namespace osu.Game.Online.API
|
|||||||
this.config = config;
|
this.config = config;
|
||||||
this.versionHash = versionHash;
|
this.versionHash = versionHash;
|
||||||
|
|
||||||
|
if (game.IsDeployedBuild)
|
||||||
|
APIVersion = game.AssemblyVersion.Major * 10000 + game.AssemblyVersion.Minor;
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var now = DateTimeOffset.Now;
|
||||||
|
APIVersion = now.Year * 10000 + now.Month * 100 + now.Day;
|
||||||
|
}
|
||||||
|
|
||||||
APIEndpointUrl = endpointConfiguration.APIEndpointUrl;
|
APIEndpointUrl = endpointConfiguration.APIEndpointUrl;
|
||||||
WebsiteRootUrl = endpointConfiguration.WebsiteRootUrl;
|
WebsiteRootUrl = endpointConfiguration.WebsiteRootUrl;
|
||||||
NotificationsClient = setUpNotificationsClient();
|
NotificationsClient = setUpNotificationsClient();
|
||||||
|
|
||||||
authentication = new OAuth(endpointConfiguration.APIClientID, endpointConfiguration.APIClientSecret, APIEndpointUrl);
|
authentication = new OAuth(endpointConfiguration.APIClientID, endpointConfiguration.APIClientSecret, APIEndpointUrl);
|
||||||
|
|
||||||
log = Logger.GetLogger(LoggingTarget.Network);
|
log = Logger.GetLogger(LoggingTarget.Network);
|
||||||
|
log.Add($@"API endpoint root: {APIEndpointUrl}");
|
||||||
|
log.Add($@"API request version: {APIVersion}");
|
||||||
|
|
||||||
ProvidedUsername = config.Get<string>(OsuSetting.Username);
|
ProvidedUsername = config.Get<string>(OsuSetting.Username);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user