32 lines
1.1 KiB
C#
32 lines
1.1 KiB
C#
using System.Collections.Specialized;
|
|
using System.Globalization;
|
|
using System.Net;
|
|
|
|
using YandexMusic.API.Common;
|
|
using YandexMusic.API.Models.Playlist;
|
|
using YandexMusic.API.Models.Ugc;
|
|
using YandexMusic.API.Requests.Common;
|
|
using YandexMusic.API.Requests.Common.Attributes;
|
|
|
|
namespace YandexMusic.API.Requests.Ugc;
|
|
|
|
[YWebApiRequest(WebRequestMethods.Http.Get, "handlers/ugc-upload.jsx")]
|
|
public class YUgcGetUploadLinkBuilder : YRequestBuilder<YUgcUpload, (YPlaylist playlist, string fileName)>
|
|
{
|
|
private static readonly Lazy<Random> Random = new(() => new Random());
|
|
|
|
public YUgcGetUploadLinkBuilder(YandexMusicApi yandex, AuthStorage auth) : base(yandex, auth)
|
|
{
|
|
}
|
|
|
|
protected override NameValueCollection GetQueryParams((YPlaylist playlist, string fileName) tuple)
|
|
{
|
|
return new NameValueCollection {
|
|
{ "filename", tuple.fileName },
|
|
{ "kind", tuple.playlist.Kind },
|
|
{ "visibility", "private" },
|
|
{ "external-domain", "music.yandex.ru" },
|
|
{ "ncrnd", Random.Value.NextDouble().ToString(CultureInfo.InvariantCulture) }
|
|
};
|
|
}
|
|
} |