1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 14:07:24 +08:00
osu-lazer/osu.Game/Online/API/APIRequest.cs

202 lines
5.9 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 17:19:50 +08:00
using System;
2019-11-12 18:34:20 +08:00
using Newtonsoft.Json;
2018-04-13 17:19:50 +08:00
using osu.Framework.IO.Network;
using osu.Framework.Logging;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Online.API
{
/// <summary>
/// An API request with a well-defined response type.
/// </summary>
/// <typeparam name="T">Type of the response (used for deserialisation).</typeparam>
public abstract class APIRequest<T> : APIRequest where T : class
2018-04-13 17:19:50 +08:00
{
2019-12-28 23:07:55 +08:00
protected override WebRequest CreateWebRequest() => new OsuJsonWebRequest<T>(Uri);
2018-04-13 17:19:50 +08:00
2020-04-11 17:02:49 +08:00
public T Result { get; private set; }
2018-06-08 13:37:27 +08:00
/// <summary>
/// Invoked on successful completion of an API request.
/// This will be scheduled to the API's internal scheduler (run on update thread automatically).
/// </summary>
2018-04-13 17:19:50 +08:00
public new event APISuccessHandler<T> Success;
2020-04-11 16:47:51 +08:00
protected override void PostProcess()
{
base.PostProcess();
Result = ((OsuJsonWebRequest<T>)WebRequest)?.ResponseObject;
}
2020-04-11 17:02:49 +08:00
internal void TriggerSuccess(T result)
{
2020-04-13 20:24:47 +08:00
if (Result != null)
throw new InvalidOperationException("Attempted to trigger success more than once");
2020-04-11 17:02:49 +08:00
Result = result;
TriggerSuccess();
}
internal override void TriggerSuccess()
{
base.TriggerSuccess();
Success?.Invoke(Result);
2020-04-11 17:02:49 +08:00
}
2018-04-13 17:19:50 +08:00
}
/// <summary>
/// AN API request with no specified response type.
/// </summary>
public abstract class APIRequest
{
protected abstract string Target { get; }
2018-04-13 17:19:50 +08:00
2019-12-28 23:07:55 +08:00
protected virtual WebRequest CreateWebRequest() => new OsuWebRequest(Uri);
2018-04-13 17:19:50 +08:00
protected virtual string Uri => $@"{API.Endpoint}/api/v2/{Target}";
protected APIAccess API;
protected WebRequest WebRequest;
2018-06-08 13:37:27 +08:00
/// <summary>
/// Invoked on successful completion of an API request.
/// This will be scheduled to the API's internal scheduler (run on update thread automatically).
/// </summary>
2018-04-13 17:19:50 +08:00
public event APISuccessHandler Success;
2018-06-08 13:37:27 +08:00
/// <summary>
/// Invoked on failure to complete an API request.
/// This will be scheduled to the API's internal scheduler (run on update thread automatically).
/// </summary>
2018-04-13 17:19:50 +08:00
public event APIFailureHandler Failure;
private bool cancelled;
private Action pendingFailure;
public void Perform(IAPIProvider api)
2018-04-13 17:19:50 +08:00
{
if (!(api is APIAccess apiAccess))
2019-09-25 14:00:08 +08:00
{
Fail(new NotSupportedException($"A {nameof(APIAccess)} is required to perform requests."));
return;
}
API = apiAccess;
2018-04-13 17:19:50 +08:00
if (checkAndScheduleFailure())
2018-04-13 17:19:50 +08:00
return;
WebRequest = CreateWebRequest();
WebRequest.Failed += Fail;
2018-04-13 17:19:50 +08:00
WebRequest.AllowRetryOnTimeout = false;
WebRequest.AddHeader("Authorization", $"Bearer {API.AccessToken}");
2018-04-13 17:19:50 +08:00
if (checkAndScheduleFailure())
2018-04-13 17:19:50 +08:00
return;
if (!WebRequest.Aborted) //could have been aborted by a Cancel() call
{
Logger.Log($@"Performing request {this}", LoggingTarget.Network);
2018-04-13 17:19:50 +08:00
WebRequest.Perform();
}
2018-04-13 17:19:50 +08:00
if (checkAndScheduleFailure())
2018-04-13 17:19:50 +08:00
return;
PostProcess();
API.Schedule(delegate
{
if (cancelled) return;
2020-04-11 17:02:43 +08:00
TriggerSuccess();
});
2018-04-13 17:19:50 +08:00
}
/// <summary>
/// Perform any post-processing actions after a successful request.
/// </summary>
protected virtual void PostProcess()
{
}
internal virtual void TriggerSuccess()
2020-04-11 17:02:43 +08:00
{
Success?.Invoke();
}
2018-04-13 17:19:50 +08:00
public void Cancel() => Fail(new OperationCanceledException(@"Request cancelled"));
public void Fail(Exception e)
{
if (WebRequest?.Completed == true)
return;
if (cancelled)
return;
2018-04-13 17:19:50 +08:00
cancelled = true;
2018-04-13 17:19:50 +08:00
WebRequest?.Abort();
2019-11-21 09:55:31 +08:00
string responseString = WebRequest?.GetResponseString();
2019-11-12 18:34:20 +08:00
if (!string.IsNullOrEmpty(responseString))
{
try
{
// attempt to decode a displayable error string.
var error = JsonConvert.DeserializeObject<DisplayableError>(responseString);
if (error != null)
2019-11-28 21:52:05 +08:00
e = new APIException(error.ErrorMessage, e);
2019-11-12 18:34:20 +08:00
}
catch
{
}
}
Logger.Log($@"Failing request {this} ({e})", LoggingTarget.Network);
2018-04-13 17:19:50 +08:00
pendingFailure = () => Failure?.Invoke(e);
checkAndScheduleFailure();
2018-04-13 17:19:50 +08:00
}
/// <summary>
/// Checked for cancellation or error. Also queues up the Failed event if we can.
/// </summary>
/// <returns>Whether we are in a failed or cancelled state.</returns>
private bool checkAndScheduleFailure()
2018-04-13 17:19:50 +08:00
{
if (API == null || pendingFailure == null) return cancelled;
API.Schedule(pendingFailure);
pendingFailure = null;
return true;
}
2019-11-12 18:34:20 +08:00
private class DisplayableError
{
[JsonProperty("error")]
2019-11-25 10:30:55 +08:00
public string ErrorMessage { get; set; }
2019-11-12 18:34:20 +08:00
}
2018-04-13 17:19:50 +08:00
}
2019-11-28 21:52:05 +08:00
public class APIException : InvalidOperationException
{
public APIException(string messsage, Exception innerException)
: base(messsage, innerException)
{
}
}
2018-04-13 17:19:50 +08:00
public delegate void APIFailureHandler(Exception e);
2019-02-28 12:31:40 +08:00
2018-04-13 17:19:50 +08:00
public delegate void APISuccessHandler();
2019-02-28 12:31:40 +08:00
2018-04-13 17:19:50 +08:00
public delegate void APIProgressHandler(long current, long total);
2019-02-28 12:31:40 +08:00
2018-04-13 17:19:50 +08:00
public delegate void APISuccessHandler<in T>(T content);
}