mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 07:38:21 +08:00
65 lines
2.1 KiB
C#
65 lines
2.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 osu.Framework.IO.Network;
|
|
using osu.Game.Overlays;
|
|
using osu.Game.Overlays.BeatmapListing;
|
|
using osu.Game.Overlays.Direct;
|
|
using osu.Game.Rulesets;
|
|
|
|
namespace osu.Game.Online.API.Requests
|
|
{
|
|
public class SearchBeatmapSetsRequest : APIRequest<SearchBeatmapSetsResponse>
|
|
{
|
|
public SearchCategory SearchCategory { get; set; }
|
|
|
|
public DirectSortCriteria SortCriteria { get; set; }
|
|
|
|
public SortDirection SortDirection { get; set; }
|
|
|
|
public SearchGenre Genre { get; set; }
|
|
|
|
public SearchLanguage Language { get; set; }
|
|
|
|
private readonly string query;
|
|
private readonly RulesetInfo ruleset;
|
|
|
|
private string directionString => SortDirection == SortDirection.Descending ? @"desc" : @"asc";
|
|
|
|
public SearchBeatmapSetsRequest(string query, RulesetInfo ruleset)
|
|
{
|
|
this.query = string.IsNullOrEmpty(query) ? string.Empty : System.Uri.EscapeDataString(query);
|
|
this.ruleset = ruleset;
|
|
|
|
SearchCategory = SearchCategory.Any;
|
|
SortCriteria = DirectSortCriteria.Ranked;
|
|
SortDirection = SortDirection.Descending;
|
|
Genre = SearchGenre.Any;
|
|
Language = SearchLanguage.Any;
|
|
}
|
|
|
|
protected override WebRequest CreateWebRequest()
|
|
{
|
|
var req = base.CreateWebRequest();
|
|
req.AddParameter("q", query);
|
|
|
|
if (ruleset.ID.HasValue)
|
|
req.AddParameter("m", ruleset.ID.Value.ToString());
|
|
|
|
req.AddParameter("s", SearchCategory.ToString().ToLowerInvariant());
|
|
|
|
if (Genre != SearchGenre.Any)
|
|
req.AddParameter("g", ((int)Genre).ToString());
|
|
|
|
if (Language != SearchLanguage.Any)
|
|
req.AddParameter("l", ((int)Language).ToString());
|
|
|
|
req.AddParameter("sort", $"{SortCriteria.ToString().ToLowerInvariant()}_{directionString}");
|
|
|
|
return req;
|
|
}
|
|
|
|
protected override string Target => @"beatmapsets/search";
|
|
}
|
|
}
|