1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 12:47:24 +08:00
osu-lazer/osu.Game/Online/API/Requests/PostBeatmapFavouriteRequest.cs

38 lines
1008 B
C#
Raw Normal View History

2019-10-07 20:36:23 +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 System.Net.Http;
namespace osu.Game.Online.API.Requests
{
public class PostBeatmapFavouriteRequest : APIRequest
{
2021-10-23 05:11:31 +08:00
public readonly BeatmapFavouriteAction Action;
2019-10-07 20:36:23 +08:00
private readonly int id;
public PostBeatmapFavouriteRequest(int id, BeatmapFavouriteAction action)
{
this.id = id;
2021-10-23 05:11:31 +08:00
Action = action;
2019-10-07 20:36:23 +08:00
}
protected override WebRequest CreateWebRequest()
{
var req = base.CreateWebRequest();
req.Method = HttpMethod.Post;
2021-10-23 05:11:31 +08:00
req.AddParameter(@"action", Action.ToString().ToLowerInvariant());
2019-10-07 20:36:23 +08:00
return req;
}
protected override string Target => $@"beatmapsets/{id}/favourites";
}
public enum BeatmapFavouriteAction
{
Favourite,
UnFavourite
}
}