1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 16:07:31 +08:00
osu-lazer/osu.Game/Online/API/Requests/GetNewsRequest.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
935 B
C#
Raw Normal View History

2020-07-08 22:58: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.
using osu.Framework.IO.Network;
using osu.Game.Extensions;
namespace osu.Game.Online.API.Requests
{
public class GetNewsRequest : APIRequest<GetNewsResponse>
{
private readonly int? year;
private readonly Cursor? cursor;
2020-07-08 22:58:09 +08:00
public GetNewsRequest(int? year = null, Cursor? cursor = null)
2020-07-08 22:58:09 +08:00
{
2021-05-19 20:17:57 +08:00
this.year = year;
2020-07-08 22:58:09 +08:00
this.cursor = cursor;
}
protected override WebRequest CreateWebRequest()
{
var req = base.CreateWebRequest();
if (cursor != null)
req.AddCursor(cursor);
2021-05-19 20:17:57 +08:00
if (year.HasValue)
req.AddParameter("year", year.Value.ToString());
2021-05-19 20:17:57 +08:00
2020-07-08 22:58:09 +08:00
return req;
}
protected override string Target => "news";
}
}