1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 01:27:35 +08:00
osu-lazer/osu.Game/Online/API/Requests/DownloadBeatmapSetRequest.cs

31 lines
916 B
C#
Raw Normal View History

// 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
2021-02-22 16:14:39 +08:00
using osu.Framework.IO.Network;
2018-04-13 17:19:50 +08:00
using osu.Game.Beatmaps;
namespace osu.Game.Online.API.Requests
{
2019-06-12 12:30:23 +08:00
public class DownloadBeatmapSetRequest : ArchiveDownloadRequest<BeatmapSetInfo>
2018-04-13 17:19:50 +08:00
{
private readonly bool noVideo;
public DownloadBeatmapSetRequest(BeatmapSetInfo set, bool noVideo)
: base(set)
2018-04-13 17:19:50 +08:00
{
this.noVideo = noVideo;
}
2021-02-22 16:14:39 +08:00
protected override WebRequest CreateWebRequest()
{
var req = base.CreateWebRequest();
req.Timeout = 60000;
return req;
}
protected override string FileExtension => ".osz";
protected override string Target => $@"beatmapsets/{Model.OnlineBeatmapSetID}/download{(noVideo ? "?noVideo=1" : "")}";
2018-04-13 17:19:50 +08:00
}
}