2019-01-24 16:43:03 +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.
|
2018-12-22 11:50:37 +08:00
|
|
|
|
|
|
|
using System.Net.Http;
|
|
|
|
using osu.Framework.IO.Network;
|
2020-07-22 17:29:50 +08:00
|
|
|
using osu.Game.Online.API;
|
2018-12-22 11:50:37 +08:00
|
|
|
|
2020-12-25 12:38:11 +08:00
|
|
|
namespace osu.Game.Online.Rooms
|
2018-12-22 11:50:37 +08:00
|
|
|
{
|
|
|
|
public class PartRoomRequest : APIRequest
|
|
|
|
{
|
|
|
|
private readonly Room room;
|
|
|
|
|
2020-07-14 12:07:17 +08:00
|
|
|
public PartRoomRequest(Room room)
|
2018-12-22 11:50:37 +08:00
|
|
|
{
|
|
|
|
this.room = room;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override WebRequest CreateWebRequest()
|
|
|
|
{
|
|
|
|
var req = base.CreateWebRequest();
|
|
|
|
req.Method = HttpMethod.Delete;
|
|
|
|
return req;
|
|
|
|
}
|
|
|
|
|
2020-07-14 12:07:17 +08:00
|
|
|
protected override string Target => $"rooms/{room.RoomID.Value}/users/{User.Id}";
|
2018-12-22 11:50:37 +08:00
|
|
|
}
|
|
|
|
}
|