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-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Online.API.Requests
|
|
|
|
|
{
|
2019-06-11 22:06:08 +08:00
|
|
|
|
public class DownloadBeatmapSetRequest : ArchiveDownloadModelRequest<BeatmapSetInfo>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
private readonly bool noVideo;
|
2019-06-11 23:41:30 +08:00
|
|
|
|
private readonly BeatmapSetInfo set;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
public DownloadBeatmapSetRequest(BeatmapSetInfo set, bool noVideo)
|
2019-06-11 22:06:08 +08:00
|
|
|
|
: base(set)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
this.noVideo = noVideo;
|
2019-06-11 23:41:30 +08:00
|
|
|
|
this.set = set;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-11 23:41:30 +08:00
|
|
|
|
protected override string Target => $@"beatmapsets/{set.OnlineBeatmapSetID}/download{(noVideo ? "?noVideo=1" : "")}";
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|