mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 21:27:23 +08:00
39 lines
1.1 KiB
C#
39 lines
1.1 KiB
C#
// 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 System.Collections.Generic;
|
|
using Humanizer;
|
|
using osu.Framework.IO.Network;
|
|
using osu.Game.Online.API;
|
|
using osu.Game.Screens.Multi.Lounge.Components;
|
|
|
|
namespace osu.Game.Online.Multiplayer
|
|
{
|
|
public class GetRoomsRequest : APIRequest<List<Room>>
|
|
{
|
|
private readonly RoomStatusFilter status;
|
|
private readonly string category;
|
|
|
|
public GetRoomsRequest(RoomStatusFilter status, string category)
|
|
{
|
|
this.status = status;
|
|
this.category = category;
|
|
}
|
|
|
|
protected override WebRequest CreateWebRequest()
|
|
{
|
|
var req = base.CreateWebRequest();
|
|
|
|
if (status != RoomStatusFilter.Open)
|
|
req.AddParameter("mode", status.ToString().Underscore().ToLowerInvariant());
|
|
|
|
if (!string.IsNullOrEmpty(category))
|
|
req.AddParameter("category", category);
|
|
|
|
return req;
|
|
}
|
|
|
|
protected override string Target => "rooms";
|
|
}
|
|
}
|