osu/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 09:19:50 +00:00
2021-02-22 08:14:39 +00:00
using osu.Framework.IO.Network;
2018-04-13 09:19:50 +00:00
using osu.Game.Beatmaps;
namespace osu.Game.Online.API.Requests
{
2019-06-12 04:30:23 +00:00
public class DownloadBeatmapSetRequest : ArchiveDownloadRequest<BeatmapSetInfo>
2018-04-13 09:19:50 +00:00
{
private readonly bool noVideo;
public DownloadBeatmapSetRequest(BeatmapSetInfo set, bool noVideo)
: base(set)
2018-04-13 09:19:50 +00:00
{
this.noVideo = noVideo;
}
2021-02-22 08:14:39 +00: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 09:19:50 +00:00
}
}