2019-07-19 14:33:09 +08:00
|
|
|
// 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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2019-07-19 14:33:09 +08:00
|
|
|
using System.Globalization;
|
|
|
|
using osu.Framework.IO.Network;
|
|
|
|
|
|
|
|
namespace osu.Game.Online.API.Requests
|
|
|
|
{
|
2020-03-30 14:05:40 +08:00
|
|
|
public abstract class PaginatedAPIRequest<T> : APIRequest<T> where T : class
|
2019-07-19 14:33:09 +08:00
|
|
|
{
|
2022-04-19 07:48:34 +08:00
|
|
|
private readonly PaginationParameters pagination;
|
2019-07-19 14:33:09 +08:00
|
|
|
|
2022-04-19 07:48:34 +08:00
|
|
|
protected PaginatedAPIRequest(PaginationParameters pagination)
|
2019-07-19 14:33:09 +08:00
|
|
|
{
|
2022-04-19 07:04:23 +08:00
|
|
|
this.pagination = pagination;
|
2019-07-19 14:33:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override WebRequest CreateWebRequest()
|
|
|
|
{
|
|
|
|
var req = base.CreateWebRequest();
|
|
|
|
|
2022-04-19 07:04:23 +08:00
|
|
|
req.AddParameter("offset", pagination.Offset.ToString(CultureInfo.InvariantCulture));
|
|
|
|
req.AddParameter("limit", pagination.Limit.ToString(CultureInfo.InvariantCulture));
|
2019-07-19 14:33:09 +08:00
|
|
|
|
|
|
|
return req;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|