37 lines
1.7 KiB
C#
37 lines
1.7 KiB
C#
using System.Globalization;
|
|
using System.Net;
|
|
|
|
using YandexMusic.API.Common;
|
|
using YandexMusic.API.Models.Track;
|
|
using YandexMusic.API.Requests.Common;
|
|
using YandexMusic.API.Requests.Common.Attributes;
|
|
|
|
namespace YandexMusic.API.Requests.Track;
|
|
|
|
[YApiRequest(WebRequestMethods.Http.Post, "play-audio")]
|
|
public class YSendTrackInfoBuilder : YRequestBuilder<string, (YTrack track, string from, bool fromCache, string playId, string playlistId, double totalPlayedSeconds, double endPositionSeconds)>
|
|
{
|
|
public YSendTrackInfoBuilder(YandexMusicApi yandex, AuthStorage auth) : base(yandex, auth)
|
|
{
|
|
}
|
|
|
|
protected override HttpContent GetContent((YTrack track, string from, bool fromCache, string playId, string playlistId, double totalPlayedSeconds, double endPositionSeconds) tuple)
|
|
{
|
|
Dictionary<string, string> formData = new() {
|
|
{ "track_id", tuple.track.Id },
|
|
{ "from-cache", tuple.fromCache.ToString() },
|
|
{ "play_id", tuple.playId },
|
|
{ "uid", storage.User.Uid },
|
|
{ "timestamp", DateTime.Now.ToString("o", CultureInfo.InvariantCulture) },
|
|
{ "client-now", DateTime.Now.ToString("o", CultureInfo.InvariantCulture) },
|
|
{ "album-id", tuple.track.Albums.FirstOrDefault()?.Id },
|
|
{ "from", tuple.from },
|
|
{ "playlist-id", tuple.playlistId },
|
|
{ "track-length-seconds", ((double)(tuple.track.DurationMs / 1000)).ToString(CultureInfo.InvariantCulture) },
|
|
{ "total-played-seconds", tuple.totalPlayedSeconds.ToString(CultureInfo.InvariantCulture) },
|
|
{ "end-position-seconds", tuple.endPositionSeconds.ToString(CultureInfo.InvariantCulture) },
|
|
};
|
|
|
|
return new FormUrlEncodedContent(formData);
|
|
}
|
|
} |