2015-10-16 23:44:35 +01:00
|
|
|
|
using Newtonsoft.Json;
|
2015-07-07 17:11:11 +01:00
|
|
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
|
using SpotifyAPI.Web.Enums;
|
|
|
|
|
using SpotifyAPI.Web.Models;
|
2015-10-16 23:44:35 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2015-11-06 19:57:03 +00:00
|
|
|
|
using System.Runtime.InteropServices;
|
2015-11-05 20:20:22 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2015-07-07 17:11:11 +01:00
|
|
|
|
|
|
|
|
|
namespace SpotifyAPI.Web
|
|
|
|
|
{
|
2015-10-16 23:31:01 +01:00
|
|
|
|
public sealed class SpotifyWebAPI : IDisposable
|
2015-07-07 17:11:11 +01:00
|
|
|
|
{
|
2015-11-05 20:20:22 +00:00
|
|
|
|
[Obsolete("This Property will be removed soon. Please use SpotifyWebBuilder.APIBase")]
|
|
|
|
|
public const String APIBase = SpotifyWebBuilder.APIBase;
|
|
|
|
|
|
|
|
|
|
private readonly SpotifyWebBuilder _builder;
|
2015-07-07 17:11:11 +01:00
|
|
|
|
|
|
|
|
|
public SpotifyWebAPI()
|
|
|
|
|
{
|
2015-11-05 20:20:22 +00:00
|
|
|
|
_builder = new SpotifyWebBuilder();
|
2015-07-07 17:11:11 +01:00
|
|
|
|
UseAuth = true;
|
|
|
|
|
WebClient = new SpotifyWebClient
|
|
|
|
|
{
|
|
|
|
|
JsonSettings =
|
|
|
|
|
new JsonSerializerSettings
|
|
|
|
|
{
|
|
|
|
|
NullValueHandling = NullValueHandling.Ignore,
|
|
|
|
|
TypeNameHandling = TypeNameHandling.All
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String TokenType { get; set; }
|
|
|
|
|
public String AccessToken { get; set; }
|
|
|
|
|
public Boolean UseAuth { get; set; }
|
|
|
|
|
public IClient WebClient { get; set; }
|
|
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
WebClient.Dispose();
|
2015-11-07 19:18:39 +00:00
|
|
|
|
GC.SuppressFinalize(this);
|
2015-07-07 17:11:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-07-26 12:59:13 +01:00
|
|
|
|
#region Search
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get Spotify catalog information about artists, albums, tracks or playlists that match a keyword string.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="q">The search query's keywords (and optional field filters and operators), for example q=roadhouse+blues.</param>
|
|
|
|
|
/// <param name="type">A list of item types to search across.</param>
|
|
|
|
|
/// <param name="limit">The maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50.</param>
|
|
|
|
|
/// <param name="offset">The index of the first result to return. Default: 0</param>
|
|
|
|
|
/// <param name="market">An ISO 3166-1 alpha-2 country code or the string from_token.</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public SearchItem SearchItems(String q, SearchType type, int limit = 20, int offset = 0, String market = "")
|
|
|
|
|
{
|
2015-11-05 20:20:22 +00:00
|
|
|
|
return DownloadData<SearchItem>(_builder.SearchItems(q, type, limit, offset, market));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get Spotify catalog information about artists, albums, tracks or playlists that match a keyword string asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="q">The search query's keywords (and optional field filters and operators), for example q=roadhouse+blues.</param>
|
|
|
|
|
/// <param name="type">A list of item types to search across.</param>
|
|
|
|
|
/// <param name="limit">The maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50.</param>
|
|
|
|
|
/// <param name="offset">The index of the first result to return. Default: 0</param>
|
|
|
|
|
/// <param name="market">An ISO 3166-1 alpha-2 country code or the string from_token.</param>
|
|
|
|
|
/// <returns></returns>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<SearchItem> SearchItemsAsync(String q, SearchType type, int limit = 20, int offset = 0, String market = "")
|
2015-11-05 20:20:22 +00:00
|
|
|
|
{
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await DownloadDataAsync<SearchItem>(_builder.SearchItems(q, type, limit, offset, market));
|
2015-07-26 12:59:13 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-10-16 23:44:35 +01:00
|
|
|
|
#endregion Search
|
2015-07-26 12:59:13 +01:00
|
|
|
|
|
2015-07-15 16:35:32 +01:00
|
|
|
|
#region Albums
|
2015-07-07 17:11:11 +01:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// Get Spotify catalog information about an album’s tracks. Optional parameters can be used to limit the number of
|
|
|
|
|
/// tracks returned.
|
2015-07-07 17:11:11 +01:00
|
|
|
|
/// </summary>
|
2015-07-15 16:35:32 +01:00
|
|
|
|
/// <param name="id">The Spotify ID for the album.</param>
|
|
|
|
|
/// <param name="limit">The maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50.</param>
|
|
|
|
|
/// <param name="offset">The index of the first track to return. Default: 0 (the first object).</param>
|
|
|
|
|
/// <param name="market">An ISO 3166-1 alpha-2 country code. Provide this parameter if you want to apply Track Relinking.</param>
|
2015-07-07 17:11:11 +01:00
|
|
|
|
/// <returns></returns>
|
2015-07-15 16:35:32 +01:00
|
|
|
|
public Paging<SimpleTrack> GetAlbumTracks(String id, int limit = 20, int offset = 0, String market = "")
|
|
|
|
|
{
|
2015-11-06 17:08:24 +00:00
|
|
|
|
return DownloadData<Paging<SimpleTrack>>(_builder.GetAlbumTracks(id, limit, offset, market));
|
2015-11-06 13:36:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get Spotify catalog information about an album’s tracks asynchronously. Optional parameters can be used to limit the number of
|
|
|
|
|
/// tracks returned.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="id">The Spotify ID for the album.</param>
|
|
|
|
|
/// <param name="limit">The maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50.</param>
|
|
|
|
|
/// <param name="offset">The index of the first track to return. Default: 0 (the first object).</param>
|
|
|
|
|
/// <param name="market">An ISO 3166-1 alpha-2 country code. Provide this parameter if you want to apply Track Relinking.</param>
|
|
|
|
|
/// <returns></returns>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<Paging<SimpleTrack>> GetAlbumTracksAsync(String id, int limit = 20, int offset = 0, String market = "")
|
2015-11-06 13:36:08 +00:00
|
|
|
|
{
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await DownloadDataAsync<Paging<SimpleTrack>>(_builder.GetAlbumTracks(id, limit, offset, market));
|
2015-07-15 16:35:32 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get Spotify catalog information for a single album.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="id">The Spotify ID for the album.</param>
|
|
|
|
|
/// <param name="market">An ISO 3166-1 alpha-2 country code. Provide this parameter if you want to apply Track Relinking.</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public FullAlbum GetAlbum(String id, String market = "")
|
|
|
|
|
{
|
2015-11-06 17:08:24 +00:00
|
|
|
|
return DownloadData<FullAlbum>(_builder.GetAlbum(id, market));
|
2015-11-06 13:36:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get Spotify catalog information for a single album asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="id">The Spotify ID for the album.</param>
|
|
|
|
|
/// <param name="market">An ISO 3166-1 alpha-2 country code. Provide this parameter if you want to apply Track Relinking.</param>
|
|
|
|
|
/// <returns></returns>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<FullAlbum> GetAlbumAsync(String id, String market = "")
|
2015-11-06 13:36:08 +00:00
|
|
|
|
{
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await DownloadDataAsync<FullAlbum>(_builder.GetAlbum(id, market));
|
2015-07-15 16:35:32 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get Spotify catalog information for multiple albums identified by their Spotify IDs.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="ids">A list of the Spotify IDs for the albums. Maximum: 20 IDs.</param>
|
|
|
|
|
/// <param name="market">An ISO 3166-1 alpha-2 country code. Provide this parameter if you want to apply Track Relinking.</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public SeveralAlbums GetSeveralAlbums(List<String> ids, String market = "")
|
|
|
|
|
{
|
2015-11-06 17:08:24 +00:00
|
|
|
|
return DownloadData<SeveralAlbums>(_builder.GetSeveralAlbums(ids, market));
|
2015-11-06 13:36:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get Spotify catalog information for multiple albums identified by their Spotify IDs asynchrously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="ids">A list of the Spotify IDs for the albums. Maximum: 20 IDs.</param>
|
|
|
|
|
/// <param name="market">An ISO 3166-1 alpha-2 country code. Provide this parameter if you want to apply Track Relinking.</param>
|
|
|
|
|
/// <returns></returns>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<SeveralAlbums> GetSeveralAlbumsAsync(List<String> ids, String market = "")
|
2015-11-06 13:36:08 +00:00
|
|
|
|
{
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await DownloadDataAsync<SeveralAlbums>(_builder.GetSeveralAlbums(ids, market));
|
2015-07-15 16:35:32 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-10-16 23:44:35 +01:00
|
|
|
|
#endregion Albums
|
2015-07-15 16:35:32 +01:00
|
|
|
|
|
|
|
|
|
#region Artists
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get Spotify catalog information for a single artist identified by their unique Spotify ID.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="id">The Spotify ID for the artist.</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public FullArtist GetArtist(String id)
|
|
|
|
|
{
|
2015-11-06 17:08:24 +00:00
|
|
|
|
return DownloadData<FullArtist>(_builder.GetArtist(id));
|
2015-11-06 13:36:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get Spotify catalog information for a single artist identified by their unique Spotify ID asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="id">The Spotify ID for the artist.</param>
|
|
|
|
|
/// <returns></returns>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<FullArtist> GetArtistAsync(String id)
|
2015-11-06 13:36:08 +00:00
|
|
|
|
{
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await DownloadDataAsync<FullArtist>(_builder.GetArtist(id));
|
2015-07-15 16:35:32 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get Spotify catalog information about artists similar to a given artist. Similarity is based on analysis of the
|
|
|
|
|
/// Spotify community’s listening history.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="id">The Spotify ID for the artist.</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public SeveralArtists GetRelatedArtists(String id)
|
|
|
|
|
{
|
2015-11-06 17:08:24 +00:00
|
|
|
|
return DownloadData<SeveralArtists>(_builder.GetRelatedArtists(id));
|
2015-11-06 13:36:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get Spotify catalog information about artists similar to a given artist asynchronously. Similarity is based on analysis of the
|
|
|
|
|
/// Spotify community’s listening history.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="id">The Spotify ID for the artist.</param>
|
|
|
|
|
/// <returns></returns>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<SeveralArtists> GetRelatedArtistsAsync(String id)
|
2015-11-06 13:36:08 +00:00
|
|
|
|
{
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await DownloadDataAsync<SeveralArtists>(_builder.GetRelatedArtists(id));
|
2015-07-15 16:35:32 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get Spotify catalog information about an artist’s top tracks by country.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="id">The Spotify ID for the artist.</param>
|
|
|
|
|
/// <param name="country">The country: an ISO 3166-1 alpha-2 country code.</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public SeveralTracks GetArtistsTopTracks(String id, String country)
|
|
|
|
|
{
|
2015-11-06 17:08:24 +00:00
|
|
|
|
return DownloadData<SeveralTracks>(_builder.GetArtistsTopTracks(id, country));
|
2015-11-06 13:36:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get Spotify catalog information about an artist’s top tracks by country asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="id">The Spotify ID for the artist.</param>
|
|
|
|
|
/// <param name="country">The country: an ISO 3166-1 alpha-2 country code.</param>
|
|
|
|
|
/// <returns></returns>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<SeveralTracks> GetArtistsTopTracksAsync(String id, String country)
|
2015-11-06 13:36:08 +00:00
|
|
|
|
{
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await DownloadDataAsync<SeveralTracks>(_builder.GetArtistsTopTracks(id, country));
|
2015-07-15 16:35:32 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// Get Spotify catalog information about an artist’s albums. Optional parameters can be specified in the query string
|
|
|
|
|
/// to filter and sort the response.
|
2015-07-15 16:35:32 +01:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="id">The Spotify ID for the artist.</param>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <param name="type">
|
|
|
|
|
/// A list of keywords that will be used to filter the response. If not supplied, all album types will
|
|
|
|
|
/// be returned
|
|
|
|
|
/// </param>
|
2015-07-15 16:35:32 +01:00
|
|
|
|
/// <param name="limit">The maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50.</param>
|
|
|
|
|
/// <param name="offset">The index of the first album to return. Default: 0</param>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <param name="market">
|
|
|
|
|
/// An ISO 3166-1 alpha-2 country code. Supply this parameter to limit the response to one particular
|
|
|
|
|
/// geographical market
|
|
|
|
|
/// </param>
|
2015-07-15 16:35:32 +01:00
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public Paging<SimpleAlbum> GetArtistsAlbums(String id, AlbumType type = AlbumType.All, int limit = 20, int offset = 0, String market = "")
|
|
|
|
|
{
|
2015-11-06 17:08:24 +00:00
|
|
|
|
return DownloadData<Paging<SimpleAlbum>>(_builder.GetArtistsAlbums(id, type, limit, offset, market));
|
2015-11-06 13:36:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get Spotify catalog information about an artist’s albums asynchronously. Optional parameters can be specified in the query string
|
|
|
|
|
/// to filter and sort the response.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="id">The Spotify ID for the artist.</param>
|
|
|
|
|
/// <param name="type">
|
|
|
|
|
/// A list of keywords that will be used to filter the response. If not supplied, all album types will
|
|
|
|
|
/// be returned
|
|
|
|
|
/// </param>
|
|
|
|
|
/// <param name="limit">The maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50.</param>
|
|
|
|
|
/// <param name="offset">The index of the first album to return. Default: 0</param>
|
|
|
|
|
/// <param name="market">
|
|
|
|
|
/// An ISO 3166-1 alpha-2 country code. Supply this parameter to limit the response to one particular
|
|
|
|
|
/// geographical market
|
|
|
|
|
/// </param>
|
|
|
|
|
/// <returns></returns>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<Paging<SimpleAlbum>> GetArtistsAlbumsAsync(String id, AlbumType type = AlbumType.All, int limit = 20, int offset = 0, String market = "")
|
2015-11-06 13:36:08 +00:00
|
|
|
|
{
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await DownloadDataAsync<Paging<SimpleAlbum>>(_builder.GetArtistsAlbums(id, type, limit, offset, market));
|
2015-07-15 16:35:32 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get Spotify catalog information for several artists based on their Spotify IDs.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="ids">A list of the Spotify IDs for the artists. Maximum: 50 IDs.</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public SeveralArtists GetSeveralArtists(List<String> ids)
|
|
|
|
|
{
|
2015-11-06 17:08:24 +00:00
|
|
|
|
return DownloadData<SeveralArtists>(_builder.GetSeveralArtists(ids));
|
2015-11-06 13:36:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get Spotify catalog information for several artists based on their Spotify IDs asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="ids">A list of the Spotify IDs for the artists. Maximum: 50 IDs.</param>
|
|
|
|
|
/// <returns></returns>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<SeveralArtists> GetSeveralArtistsAsync(List<String> ids)
|
2015-11-06 13:36:08 +00:00
|
|
|
|
{
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await DownloadDataAsync<SeveralArtists>(_builder.GetSeveralArtists(ids));
|
2015-07-15 16:35:32 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-10-16 23:44:35 +01:00
|
|
|
|
#endregion Artists
|
2015-07-15 16:35:32 +01:00
|
|
|
|
|
|
|
|
|
#region Browse
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get a list of Spotify featured playlists (shown, for example, on a Spotify player’s “Browse” tab).
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="locale">
|
|
|
|
|
/// The desired language, consisting of a lowercase ISO 639 language code and an uppercase ISO 3166-1
|
|
|
|
|
/// alpha-2 country code, joined by an underscore.
|
|
|
|
|
/// </param>
|
|
|
|
|
/// <param name="country">A country: an ISO 3166-1 alpha-2 country code.</param>
|
|
|
|
|
/// <param name="timestamp">A timestamp in ISO 8601 format</param>
|
|
|
|
|
/// <param name="limit">The maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50.</param>
|
|
|
|
|
/// <param name="offset">The index of the first item to return. Default: 0</param>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-15 16:35:32 +01:00
|
|
|
|
public FeaturedPlaylists GetFeaturedPlaylists(String locale = "", String country = "", DateTime timestamp = default(DateTime), int limit = 20, int offset = 0)
|
2015-07-07 17:11:11 +01:00
|
|
|
|
{
|
|
|
|
|
if (!UseAuth)
|
2015-07-15 16:35:32 +01:00
|
|
|
|
throw new InvalidOperationException("Auth is required for GetFeaturedPlaylists");
|
2015-11-06 17:08:24 +00:00
|
|
|
|
return DownloadData<FeaturedPlaylists>(_builder.GetFeaturedPlaylists(locale, country, timestamp, limit, offset));
|
2015-11-06 13:36:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get a list of Spotify featured playlists asynchronously (shown, for example, on a Spotify player’s “Browse” tab).
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="locale">
|
|
|
|
|
/// The desired language, consisting of a lowercase ISO 639 language code and an uppercase ISO 3166-1
|
|
|
|
|
/// alpha-2 country code, joined by an underscore.
|
|
|
|
|
/// </param>
|
|
|
|
|
/// <param name="country">A country: an ISO 3166-1 alpha-2 country code.</param>
|
|
|
|
|
/// <param name="timestamp">A timestamp in ISO 8601 format</param>
|
|
|
|
|
/// <param name="limit">The maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50.</param>
|
|
|
|
|
/// <param name="offset">The index of the first item to return. Default: 0</param>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<FeaturedPlaylists> GetFeaturedPlaylistsAsync(String locale = "", String country = "", DateTime timestamp = default(DateTime), int limit = 20, int offset = 0)
|
2015-11-06 13:36:08 +00:00
|
|
|
|
{
|
|
|
|
|
if (!UseAuth)
|
|
|
|
|
throw new InvalidOperationException("Auth is required for GetFeaturedPlaylists");
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await DownloadDataAsync<FeaturedPlaylists>(_builder.GetFeaturedPlaylists(locale, country, timestamp, limit, offset));
|
2015-07-07 17:11:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2015-07-15 16:35:32 +01:00
|
|
|
|
/// Get a list of new album releases featured in Spotify (shown, for example, on a Spotify player’s “Browse” tab).
|
2015-07-07 17:11:11 +01:00
|
|
|
|
/// </summary>
|
2015-07-15 16:35:32 +01:00
|
|
|
|
/// <param name="country">A country: an ISO 3166-1 alpha-2 country code.</param>
|
|
|
|
|
/// <param name="limit">The maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50.</param>
|
|
|
|
|
/// <param name="offset">The index of the first item to return. Default: 0</param>
|
2015-07-07 17:11:11 +01:00
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-15 16:35:32 +01:00
|
|
|
|
public NewAlbumReleases GetNewAlbumReleases(String country = "", int limit = 20, int offset = 0)
|
2015-07-07 17:11:11 +01:00
|
|
|
|
{
|
2015-07-15 16:35:32 +01:00
|
|
|
|
if (!UseAuth)
|
|
|
|
|
throw new InvalidOperationException("Auth is required for GetNewAlbumReleases");
|
2015-11-06 17:08:24 +00:00
|
|
|
|
return DownloadData<NewAlbumReleases>(_builder.GetNewAlbumReleases(country, limit, offset));
|
2015-11-06 13:36:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get a list of new album releases featured in Spotify asynchronously (shown, for example, on a Spotify player’s “Browse” tab).
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="country">A country: an ISO 3166-1 alpha-2 country code.</param>
|
|
|
|
|
/// <param name="limit">The maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50.</param>
|
|
|
|
|
/// <param name="offset">The index of the first item to return. Default: 0</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<NewAlbumReleases> GetNewAlbumReleasesAsync(String country = "", int limit = 20, int offset = 0)
|
2015-11-06 13:36:08 +00:00
|
|
|
|
{
|
|
|
|
|
if (!UseAuth)
|
|
|
|
|
throw new InvalidOperationException("Auth is required for GetNewAlbumReleases");
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await DownloadDataAsync<NewAlbumReleases>(_builder.GetNewAlbumReleases(country, limit, offset));
|
2015-07-15 16:35:32 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get a list of categories used to tag items in Spotify (on, for example, the Spotify player’s “Browse” tab).
|
|
|
|
|
/// </summary>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <param name="country">
|
|
|
|
|
/// A country: an ISO 3166-1 alpha-2 country code. Provide this parameter if you want to narrow the
|
|
|
|
|
/// list of returned categories to those relevant to a particular country
|
|
|
|
|
/// </param>
|
|
|
|
|
/// <param name="locale">
|
|
|
|
|
/// The desired language, consisting of an ISO 639 language code and an ISO 3166-1 alpha-2 country
|
|
|
|
|
/// code, joined by an underscore
|
|
|
|
|
/// </param>
|
2015-07-15 16:35:32 +01:00
|
|
|
|
/// <param name="limit">The maximum number of categories to return. Default: 20. Minimum: 1. Maximum: 50. </param>
|
|
|
|
|
/// <param name="offset">The index of the first item to return. Default: 0 (the first object).</param>
|
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-15 16:35:32 +01:00
|
|
|
|
public CategoryList GetCategories(String country = "", String locale = "", int limit = 20, int offset = 0)
|
|
|
|
|
{
|
|
|
|
|
if (!UseAuth)
|
|
|
|
|
throw new InvalidOperationException("Auth is required for GetCategories");
|
2015-11-06 17:08:24 +00:00
|
|
|
|
return DownloadData<CategoryList>(_builder.GetCategories(country, locale, limit, offset));
|
2015-11-06 13:36:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get a list of categories used to tag items in Spotify asynchronously (on, for example, the Spotify player’s “Browse” tab).
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="country">
|
|
|
|
|
/// A country: an ISO 3166-1 alpha-2 country code. Provide this parameter if you want to narrow the
|
|
|
|
|
/// list of returned categories to those relevant to a particular country
|
|
|
|
|
/// </param>
|
|
|
|
|
/// <param name="locale">
|
|
|
|
|
/// The desired language, consisting of an ISO 639 language code and an ISO 3166-1 alpha-2 country
|
|
|
|
|
/// code, joined by an underscore
|
|
|
|
|
/// </param>
|
|
|
|
|
/// <param name="limit">The maximum number of categories to return. Default: 20. Minimum: 1. Maximum: 50. </param>
|
|
|
|
|
/// <param name="offset">The index of the first item to return. Default: 0 (the first object).</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<CategoryList> GetCategoriesAsync(String country = "", String locale = "", int limit = 20, int offset = 0)
|
2015-11-06 13:36:08 +00:00
|
|
|
|
{
|
|
|
|
|
if (!UseAuth)
|
|
|
|
|
throw new InvalidOperationException("Auth is required for GetCategories");
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await DownloadDataAsync<CategoryList>(_builder.GetCategories(country, locale, limit, offset));
|
2015-07-15 16:35:32 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get a single category used to tag items in Spotify (on, for example, the Spotify player’s “Browse” tab).
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="categoryId">The Spotify category ID for the category.</param>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <param name="country">
|
|
|
|
|
/// A country: an ISO 3166-1 alpha-2 country code. Provide this parameter to ensure that the category
|
|
|
|
|
/// exists for a particular country.
|
|
|
|
|
/// </param>
|
|
|
|
|
/// <param name="locale">
|
|
|
|
|
/// The desired language, consisting of an ISO 639 language code and an ISO 3166-1 alpha-2 country
|
|
|
|
|
/// code, joined by an underscore
|
|
|
|
|
/// </param>
|
2015-07-15 16:35:32 +01:00
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-15 16:35:32 +01:00
|
|
|
|
public Category GetCategory(String categoryId, String country = "", String locale = "")
|
|
|
|
|
{
|
2015-11-06 17:08:24 +00:00
|
|
|
|
return DownloadData<Category>(_builder.GetCategory(categoryId, country, locale));
|
2015-11-06 13:36:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get a single category used to tag items in Spotify asynchronously (on, for example, the Spotify player’s “Browse” tab).
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="categoryId">The Spotify category ID for the category.</param>
|
|
|
|
|
/// <param name="country">
|
|
|
|
|
/// A country: an ISO 3166-1 alpha-2 country code. Provide this parameter to ensure that the category
|
|
|
|
|
/// exists for a particular country.
|
|
|
|
|
/// </param>
|
|
|
|
|
/// <param name="locale">
|
|
|
|
|
/// The desired language, consisting of an ISO 639 language code and an ISO 3166-1 alpha-2 country
|
|
|
|
|
/// code, joined by an underscore
|
|
|
|
|
/// </param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<Category> GetCategoryAsync(String categoryId, String country = "", String locale = "")
|
2015-11-06 13:36:08 +00:00
|
|
|
|
{
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await DownloadDataAsync<Category>(_builder.GetCategory(categoryId, country, locale));
|
2015-07-15 16:35:32 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get a list of Spotify playlists tagged with a particular category.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="categoryId">The Spotify category ID for the category.</param>
|
|
|
|
|
/// <param name="country">A country: an ISO 3166-1 alpha-2 country code.</param>
|
|
|
|
|
/// <param name="limit">The maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50.</param>
|
|
|
|
|
/// <param name="offset">The index of the first item to return. Default: 0</param>
|
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-15 16:35:32 +01:00
|
|
|
|
public CategoryPlaylist GetCategoryPlaylists(String categoryId, String country = "", int limit = 20, int offset = 0)
|
|
|
|
|
{
|
2015-11-06 17:08:24 +00:00
|
|
|
|
return DownloadData<CategoryPlaylist>(_builder.GetCategoryPlaylists(categoryId, country, limit, offset));
|
2015-11-06 13:36:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get a list of Spotify playlists tagged with a particular category asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="categoryId">The Spotify category ID for the category.</param>
|
|
|
|
|
/// <param name="country">A country: an ISO 3166-1 alpha-2 country code.</param>
|
|
|
|
|
/// <param name="limit">The maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50.</param>
|
|
|
|
|
/// <param name="offset">The index of the first item to return. Default: 0</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<CategoryPlaylist> GetCategoryPlaylistsAsync(String categoryId, String country = "", int limit = 20, int offset = 0)
|
2015-11-06 13:36:08 +00:00
|
|
|
|
{
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await DownloadDataAsync<CategoryPlaylist>(_builder.GetCategoryPlaylists(categoryId, country, limit, offset));
|
2015-07-07 17:11:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-10-16 23:44:35 +01:00
|
|
|
|
#endregion Browse
|
2015-07-15 16:35:32 +01:00
|
|
|
|
|
|
|
|
|
#region Follow
|
|
|
|
|
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get the current user’s followed artists.
|
|
|
|
|
/// </summary>
|
2015-11-06 13:36:08 +00:00
|
|
|
|
/// <param name="followType">The ID type: currently only artist is supported. </param>
|
|
|
|
|
/// <param name="limit">The maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50. </param>
|
|
|
|
|
/// <param name="after">The last artist ID retrieved from the previous request.</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
|
|
|
|
public FollowedArtists GetFollowedArtists(FollowType followType, int limit = 20, String after = "")
|
|
|
|
|
{
|
|
|
|
|
if (!UseAuth)
|
|
|
|
|
throw new InvalidOperationException("Auth is required for GetFollowedArtists");
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return DownloadData<FollowedArtists>(_builder.GetFollowedArtists(limit, after));
|
2015-11-06 13:36:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get the current user’s followed artists asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="followType">The ID type: currently only artist is supported. </param>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <param name="limit">The maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50. </param>
|
|
|
|
|
/// <param name="after">The last artist ID retrieved from the previous request.</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<FollowedArtists> GetFollowedArtistsAsync(FollowType followType, int limit = 20, String after = "")
|
2015-07-26 12:59:13 +01:00
|
|
|
|
{
|
2015-10-16 23:44:35 +01:00
|
|
|
|
if (!UseAuth)
|
2015-07-26 12:59:13 +01:00
|
|
|
|
throw new InvalidOperationException("Auth is required for GetFollowedArtists");
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await DownloadDataAsync<FollowedArtists>(_builder.GetFollowedArtists(limit, after));
|
2015-07-26 12:59:13 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-07-07 17:11:11 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Add the current user as a follower of one or more artists or other Spotify users.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="followType">The ID type: either artist or user.</param>
|
|
|
|
|
/// <param name="ids">A list of the artist or the user Spotify IDs</param>
|
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-07 17:11:11 +01:00
|
|
|
|
public ErrorResponse Follow(FollowType followType, List<String> ids)
|
|
|
|
|
{
|
|
|
|
|
JObject ob = new JObject
|
|
|
|
|
{
|
|
|
|
|
{"ids", new JArray(ids)}
|
|
|
|
|
};
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return UploadData<ErrorResponse>(_builder.Follow(followType), ob.ToString(Formatting.None), "PUT") ?? new ErrorResponse();
|
2015-11-06 13:36:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Add the current user as a follower of one or more artists or other Spotify users asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="followType">The ID type: either artist or user.</param>
|
|
|
|
|
/// <param name="ids">A list of the artist or the user Spotify IDs</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<ErrorResponse> FollowAsync(FollowType followType, List<String> ids)
|
2015-11-06 13:36:08 +00:00
|
|
|
|
{
|
|
|
|
|
JObject ob = new JObject
|
|
|
|
|
{
|
|
|
|
|
{"ids", new JArray(ids)}
|
|
|
|
|
};
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await
|
|
|
|
|
UploadDataAsync<ErrorResponse>(_builder.Follow(followType),
|
2015-11-06 18:31:20 +00:00
|
|
|
|
ob.ToString(Formatting.None), "PUT") ?? new ErrorResponse();
|
2015-07-07 17:11:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Add the current user as a follower of one or more artists or other Spotify users.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="followType">The ID type: either artist or user.</param>
|
|
|
|
|
/// <param name="id">Artists or the Users Spotify ID</param>
|
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-07 17:11:11 +01:00
|
|
|
|
public ErrorResponse Follow(FollowType followType, String id)
|
|
|
|
|
{
|
2015-10-16 23:44:35 +01:00
|
|
|
|
return Follow(followType, new List<string> { id });
|
2015-07-07 17:11:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-11-06 13:36:08 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Add the current user as a follower of one or more artists or other Spotify users asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="followType">The ID type: either artist or user.</param>
|
|
|
|
|
/// <param name="id">Artists or the Users Spotify ID</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<ErrorResponse> FollowAsync(FollowType followType, String id)
|
2015-11-06 13:36:08 +00:00
|
|
|
|
{
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await FollowAsync(followType, new List<string> { id });
|
2015-11-06 13:36:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-07-07 17:11:11 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Remove the current user as a follower of one or more artists or other Spotify users.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="followType">The ID type: either artist or user.</param>
|
|
|
|
|
/// <param name="ids">A list of the artist or the user Spotify IDs</param>
|
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-07 17:11:11 +01:00
|
|
|
|
public ErrorResponse Unfollow(FollowType followType, List<String> ids)
|
|
|
|
|
{
|
|
|
|
|
JObject ob = new JObject
|
|
|
|
|
{
|
|
|
|
|
{"ids", new JArray(ids)}
|
|
|
|
|
};
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return UploadData<ErrorResponse>(_builder.Unfollow(followType), ob.ToString(Formatting.None), "DELETE") ?? new ErrorResponse();
|
2015-11-06 13:36:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Remove the current user as a follower of one or more artists or other Spotify users asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="followType">The ID type: either artist or user.</param>
|
|
|
|
|
/// <param name="ids">A list of the artist or the user Spotify IDs</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<ErrorResponse> UnfollowAsync(FollowType followType, List<String> ids)
|
2015-11-06 13:36:08 +00:00
|
|
|
|
{
|
|
|
|
|
JObject ob = new JObject
|
|
|
|
|
{
|
|
|
|
|
{"ids", new JArray(ids)}
|
|
|
|
|
};
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await UploadDataAsync<ErrorResponse>(_builder.Unfollow(followType), ob.ToString(Formatting.None), "DELETE") ?? new ErrorResponse();
|
2015-07-07 17:11:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Remove the current user as a follower of one or more artists or other Spotify users.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="followType">The ID type: either artist or user.</param>
|
|
|
|
|
/// <param name="id">Artists or the Users Spotify ID</param>
|
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-07 17:11:11 +01:00
|
|
|
|
public ErrorResponse Unfollow(FollowType followType, String id)
|
|
|
|
|
{
|
2015-10-16 23:44:35 +01:00
|
|
|
|
return Unfollow(followType, new List<string> { id });
|
2015-07-07 17:11:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-11-06 13:36:08 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Remove the current user as a follower of one or more artists or other Spotify users asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="followType">The ID type: either artist or user.</param>
|
|
|
|
|
/// <param name="id">Artists or the Users Spotify ID</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<ErrorResponse> UnfollowAsync(FollowType followType, String id)
|
2015-11-06 13:36:08 +00:00
|
|
|
|
{
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await UnfollowAsync(followType, new List<string> { id });
|
2015-11-06 13:36:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-07-07 17:11:11 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Check to see if the current user is following one or more artists or other Spotify users.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="followType">The ID type: either artist or user.</param>
|
|
|
|
|
/// <param name="ids">A list of the artist or the user Spotify IDs to check</param>
|
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-07 17:11:11 +01:00
|
|
|
|
public ListResponse<Boolean> IsFollowing(FollowType followType, List<String> ids)
|
|
|
|
|
{
|
|
|
|
|
if (!UseAuth)
|
|
|
|
|
throw new InvalidOperationException("Auth is required for IsFollowing");
|
2015-11-06 17:08:24 +00:00
|
|
|
|
JToken res = DownloadData<JToken>(_builder.IsFollowing(followType, ids));
|
2015-07-07 17:11:11 +01:00
|
|
|
|
if (res is JArray)
|
2015-10-16 23:44:35 +01:00
|
|
|
|
return new ListResponse<Boolean> { List = res.ToObject<List<Boolean>>(), Error = null };
|
|
|
|
|
return new ListResponse<Boolean> { List = null, Error = res["error"].ToObject<Error>() };
|
2015-07-07 17:11:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-11-06 13:36:08 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Check to see if the current user is following one or more artists or other Spotify users asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="followType">The ID type: either artist or user.</param>
|
|
|
|
|
/// <param name="ids">A list of the artist or the user Spotify IDs to check</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<ListResponse<Boolean>> IsFollowingAsync(FollowType followType, List<String> ids)
|
2015-11-06 13:36:08 +00:00
|
|
|
|
{
|
|
|
|
|
if (!UseAuth)
|
|
|
|
|
throw new InvalidOperationException("Auth is required for IsFollowing");
|
2015-11-06 19:57:03 +00:00
|
|
|
|
JToken res = await DownloadDataAsync<JToken>(_builder.IsFollowing(followType, ids));
|
|
|
|
|
if (res is JArray)
|
|
|
|
|
return new ListResponse<Boolean> { List = res.ToObject<List<Boolean>>(), Error = null };
|
|
|
|
|
return new ListResponse<Boolean> { List = null, Error = res["error"].ToObject<Error>() };
|
2015-11-06 13:36:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-07-07 17:11:11 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Check to see if the current user is following one artist or another Spotify user.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="followType">The ID type: either artist or user.</param>
|
|
|
|
|
/// <param name="id">Artists or the Users Spotify ID</param>
|
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-07 17:11:11 +01:00
|
|
|
|
public ListResponse<Boolean> IsFollowing(FollowType followType, String id)
|
|
|
|
|
{
|
2015-10-16 23:44:35 +01:00
|
|
|
|
return IsFollowing(followType, new List<string> { id });
|
2015-07-07 17:11:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-11-06 13:36:08 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Check to see if the current user is following one artist or another Spotify user asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="followType">The ID type: either artist or user.</param>
|
|
|
|
|
/// <param name="id">Artists or the Users Spotify ID</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<ListResponse<Boolean>> IsFollowingAsync(FollowType followType, String id)
|
2015-11-06 13:36:08 +00:00
|
|
|
|
{
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await IsFollowingAsync(followType, new List<string> { id });
|
2015-11-06 13:36:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-07-07 17:11:11 +01:00
|
|
|
|
/// <summary>
|
2015-07-15 16:35:32 +01:00
|
|
|
|
/// Add the current user as a follower of a playlist.
|
2015-07-07 17:11:11 +01:00
|
|
|
|
/// </summary>
|
2015-07-15 16:35:32 +01:00
|
|
|
|
/// <param name="ownerId">The Spotify user ID of the person who owns the playlist.</param>
|
|
|
|
|
/// <param name="playlistId">
|
|
|
|
|
/// The Spotify ID of the playlist. Any playlist can be followed, regardless of its public/private
|
|
|
|
|
/// status, as long as you know its playlist ID.
|
|
|
|
|
/// </param>
|
|
|
|
|
/// <param name="showPublic">
|
|
|
|
|
/// If true the playlist will be included in user's public playlists, if false it will remain
|
|
|
|
|
/// private.
|
|
|
|
|
/// </param>
|
2015-07-07 17:11:11 +01:00
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-15 16:35:32 +01:00
|
|
|
|
public ErrorResponse FollowPlaylist(String ownerId, String playlistId, bool showPublic = true)
|
2015-07-07 17:11:11 +01:00
|
|
|
|
{
|
2015-07-15 16:35:32 +01:00
|
|
|
|
JObject body = new JObject
|
|
|
|
|
{
|
|
|
|
|
{"public", showPublic}
|
|
|
|
|
};
|
2015-11-06 17:08:24 +00:00
|
|
|
|
return UploadData<ErrorResponse>(_builder.FollowPlaylist(ownerId, playlistId, showPublic), body.ToString(Formatting.None), "PUT");
|
2015-11-06 13:36:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Add the current user as a follower of a playlist asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="ownerId">The Spotify user ID of the person who owns the playlist.</param>
|
|
|
|
|
/// <param name="playlistId">
|
|
|
|
|
/// The Spotify ID of the playlist. Any playlist can be followed, regardless of its public/private
|
|
|
|
|
/// status, as long as you know its playlist ID.
|
|
|
|
|
/// </param>
|
|
|
|
|
/// <param name="showPublic">
|
|
|
|
|
/// If true the playlist will be included in user's public playlists, if false it will remain
|
|
|
|
|
/// private.
|
|
|
|
|
/// </param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<ErrorResponse> FollowPlaylistAsync(String ownerId, String playlistId, bool showPublic = true)
|
2015-11-06 13:36:08 +00:00
|
|
|
|
{
|
|
|
|
|
JObject body = new JObject
|
|
|
|
|
{
|
|
|
|
|
{"public", showPublic}
|
|
|
|
|
};
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await UploadDataAsync<ErrorResponse>(_builder.FollowPlaylist(ownerId, playlistId, showPublic), body.ToString(Formatting.None), "PUT");
|
2015-07-07 17:11:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2015-07-15 16:35:32 +01:00
|
|
|
|
/// Remove the current user as a follower of a playlist.
|
2015-07-07 17:11:11 +01:00
|
|
|
|
/// </summary>
|
2015-07-15 16:35:32 +01:00
|
|
|
|
/// <param name="ownerId">The Spotify user ID of the person who owns the playlist.</param>
|
|
|
|
|
/// <param name="playlistId">The Spotify ID of the playlist that is to be no longer followed.</param>
|
2015-07-07 17:11:11 +01:00
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-15 16:35:32 +01:00
|
|
|
|
public ErrorResponse UnfollowPlaylist(String ownerId, String playlistId)
|
2015-07-07 17:11:11 +01:00
|
|
|
|
{
|
2015-11-06 17:08:24 +00:00
|
|
|
|
return UploadData<ErrorResponse>(_builder.UnfollowPlaylist(ownerId, playlistId), "", "DELETE");
|
2015-11-06 13:36:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Remove the current user as a follower of a playlist asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="ownerId">The Spotify user ID of the person who owns the playlist.</param>
|
|
|
|
|
/// <param name="playlistId">The Spotify ID of the playlist that is to be no longer followed.</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<ErrorResponse> UnfollowPlaylistAsync(String ownerId, String playlistId)
|
2015-11-06 13:36:08 +00:00
|
|
|
|
{
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await UploadDataAsync<ErrorResponse>(_builder.UnfollowPlaylist(ownerId, playlistId), "", "DELETE");
|
2015-07-07 17:11:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2015-07-15 16:35:32 +01:00
|
|
|
|
/// Check to see if one or more Spotify users are following a specified playlist.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="ownerId">The Spotify user ID of the person who owns the playlist.</param>
|
|
|
|
|
/// <param name="playlistId">The Spotify ID of the playlist.</param>
|
|
|
|
|
/// <param name="ids">A list of Spotify User IDs</param>
|
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-15 16:35:32 +01:00
|
|
|
|
public ListResponse<Boolean> IsFollowingPlaylist(String ownerId, String playlistId, List<String> ids)
|
|
|
|
|
{
|
|
|
|
|
if (!UseAuth)
|
|
|
|
|
throw new InvalidOperationException("Auth is required for IsFollowingPlaylist");
|
2015-11-06 17:08:24 +00:00
|
|
|
|
JToken res = DownloadData<JToken>(_builder.IsFollowingPlaylist(ownerId, playlistId, ids));
|
2015-07-15 16:35:32 +01:00
|
|
|
|
if (res is JArray)
|
2015-10-16 23:44:35 +01:00
|
|
|
|
return new ListResponse<Boolean> { List = res.ToObject<List<Boolean>>(), Error = null };
|
|
|
|
|
return new ListResponse<Boolean> { List = null, Error = res["error"].ToObject<Error>() };
|
2015-07-15 16:35:32 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-11-06 13:36:08 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Check to see if one or more Spotify users are following a specified playlist asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="ownerId">The Spotify user ID of the person who owns the playlist.</param>
|
|
|
|
|
/// <param name="playlistId">The Spotify ID of the playlist.</param>
|
|
|
|
|
/// <param name="ids">A list of Spotify User IDs</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<ListResponse<Boolean>> IsFollowingPlaylistAsync(String ownerId, String playlistId, List<String> ids)
|
2015-11-06 13:36:08 +00:00
|
|
|
|
{
|
|
|
|
|
if (!UseAuth)
|
|
|
|
|
throw new InvalidOperationException("Auth is required for IsFollowingPlaylist");
|
2015-11-06 19:57:03 +00:00
|
|
|
|
JToken res = await DownloadDataAsync<JToken>(_builder.IsFollowingPlaylist(ownerId, playlistId, ids));
|
|
|
|
|
if (res is JArray)
|
|
|
|
|
return new ListResponse<Boolean> { List = res.ToObject<List<Boolean>>(), Error = null };
|
|
|
|
|
return new ListResponse<Boolean> { List = null, Error = res["error"].ToObject<Error>() };
|
2015-11-06 13:36:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-07-15 16:35:32 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Check to see if one or more Spotify users are following a specified playlist.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="ownerId">The Spotify user ID of the person who owns the playlist.</param>
|
|
|
|
|
/// <param name="playlistId">The Spotify ID of the playlist.</param>
|
|
|
|
|
/// <param name="id">A Spotify User ID</param>
|
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-15 16:35:32 +01:00
|
|
|
|
public ListResponse<Boolean> IsFollowingPlaylist(String ownerId, String playlistId, String id)
|
|
|
|
|
{
|
2015-10-16 23:44:35 +01:00
|
|
|
|
return IsFollowingPlaylist(ownerId, playlistId, new List<string> { id });
|
2015-07-15 16:35:32 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-11-06 13:36:08 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Check to see if one or more Spotify users are following a specified playlist asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="ownerId">The Spotify user ID of the person who owns the playlist.</param>
|
|
|
|
|
/// <param name="playlistId">The Spotify ID of the playlist.</param>
|
|
|
|
|
/// <param name="id">A Spotify User ID</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<ListResponse<Boolean>> IsFollowingPlaylistAsync(String ownerId, String playlistId, String id)
|
2015-11-06 13:36:08 +00:00
|
|
|
|
{
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await IsFollowingPlaylistAsync(ownerId, playlistId, new List<string> { id });
|
2015-11-06 13:36:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-10-16 23:44:35 +01:00
|
|
|
|
#endregion Follow
|
2015-07-15 16:35:32 +01:00
|
|
|
|
|
|
|
|
|
#region Library
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Save one or more tracks to the current user’s “Your Music” library.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="ids">A list of the Spotify IDs</param>
|
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-15 16:35:32 +01:00
|
|
|
|
public ErrorResponse SaveTracks(List<String> ids)
|
|
|
|
|
{
|
|
|
|
|
JArray array = new JArray(ids);
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return UploadData<ErrorResponse>(_builder.SaveTracks(), array.ToString(Formatting.None), "PUT") ?? new ErrorResponse();
|
2015-11-06 13:36:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Save one or more tracks to the current user’s “Your Music” library asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="ids">A list of the Spotify IDs</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<ErrorResponse> SaveTracksAsync(List<String> ids)
|
2015-11-06 13:36:08 +00:00
|
|
|
|
{
|
|
|
|
|
JArray array = new JArray(ids);
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await UploadDataAsync<ErrorResponse>(_builder.SaveTracks(), array.ToString(Formatting.None), "PUT") ?? new ErrorResponse();
|
2015-07-15 16:35:32 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Save one track to the current user’s “Your Music” library.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="id">A Spotify ID</param>
|
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-15 16:35:32 +01:00
|
|
|
|
public ErrorResponse SaveTrack(String id)
|
|
|
|
|
{
|
2015-10-16 23:44:35 +01:00
|
|
|
|
return SaveTracks(new List<string> { id });
|
2015-07-15 16:35:32 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-11-06 13:36:08 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Save one track to the current user’s “Your Music” library asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="id">A Spotify ID</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<ErrorResponse> SaveTrackAsync(String id)
|
2015-11-06 13:36:08 +00:00
|
|
|
|
{
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await SaveTracksAsync(new List<string> { id });
|
2015-11-06 13:36:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-07-15 16:35:32 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get a list of the songs saved in the current Spotify user’s “Your Music” library.
|
2015-07-07 17:11:11 +01:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="limit">The maximum number of objects to return. Default: 20. Minimum: 1. Maximum: 50.</param>
|
|
|
|
|
/// <param name="offset">The index of the first object to return. Default: 0 (i.e., the first object)</param>
|
|
|
|
|
/// <param name="market">An ISO 3166-1 alpha-2 country code. Provide this parameter if you want to apply Track Relinking.</param>
|
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-07 17:11:11 +01:00
|
|
|
|
public Paging<SavedTrack> GetSavedTracks(int limit = 20, int offset = 0, String market = "")
|
|
|
|
|
{
|
|
|
|
|
if (!UseAuth)
|
|
|
|
|
throw new InvalidOperationException("Auth is required for GetSavedTracks");
|
2015-11-06 17:08:24 +00:00
|
|
|
|
return DownloadData<Paging<SavedTrack>>(_builder.GetSavedTracks(limit, offset, market));
|
2015-11-06 13:36:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get a list of the songs saved in the current Spotify user’s “Your Music” library asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="limit">The maximum number of objects to return. Default: 20. Minimum: 1. Maximum: 50.</param>
|
|
|
|
|
/// <param name="offset">The index of the first object to return. Default: 0 (i.e., the first object)</param>
|
|
|
|
|
/// <param name="market">An ISO 3166-1 alpha-2 country code. Provide this parameter if you want to apply Track Relinking.</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<Paging<SavedTrack>> GetSavedTracksAsync(int limit = 20, int offset = 0, String market = "")
|
2015-11-06 13:36:08 +00:00
|
|
|
|
{
|
|
|
|
|
if (!UseAuth)
|
|
|
|
|
throw new InvalidOperationException("Auth is required for GetSavedTracks");
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await DownloadDataAsync<Paging<SavedTrack>>(_builder.GetSavedTracks(limit, offset, market));
|
2015-07-07 17:11:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Remove one or more tracks from the current user’s “Your Music” library.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="ids">A list of the Spotify IDs.</param>
|
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-07 17:11:11 +01:00
|
|
|
|
public ErrorResponse RemoveSavedTracks(List<String> ids)
|
|
|
|
|
{
|
|
|
|
|
JArray array = new JArray(ids);
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return UploadData<ErrorResponse>(_builder.RemoveSavedTracks(), array.ToString(Formatting.None), "DELETE") ?? new ErrorResponse();
|
2015-11-06 13:36:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Remove one or more tracks from the current user’s “Your Music” library asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="ids">A list of the Spotify IDs.</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<ErrorResponse> RemoveSavedTracksAsync(List<String> ids)
|
2015-11-06 13:36:08 +00:00
|
|
|
|
{
|
|
|
|
|
JArray array = new JArray(ids);
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await UploadDataAsync<ErrorResponse>(_builder.RemoveSavedTracks(), array.ToString(Formatting.None), "DELETE") ?? new ErrorResponse();
|
2015-07-07 17:11:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Check if one or more tracks is already saved in the current Spotify user’s “Your Music” library.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="ids">A list of the Spotify IDs.</param>
|
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-07 17:11:11 +01:00
|
|
|
|
public ListResponse<Boolean> CheckSavedTracks(List<String> ids)
|
|
|
|
|
{
|
|
|
|
|
if (!UseAuth)
|
|
|
|
|
throw new InvalidOperationException("Auth is required for CheckSavedTracks");
|
2015-11-06 17:08:24 +00:00
|
|
|
|
JToken res = DownloadData<JToken>(_builder.CheckSavedTracks(ids));
|
2015-07-07 17:11:11 +01:00
|
|
|
|
if (res is JArray)
|
2015-10-16 23:44:35 +01:00
|
|
|
|
return new ListResponse<Boolean> { List = res.ToObject<List<Boolean>>(), Error = null };
|
|
|
|
|
return new ListResponse<Boolean> { List = null, Error = res["error"].ToObject<Error>() };
|
2015-07-07 17:11:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-11-06 13:36:08 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Check if one or more tracks is already saved in the current Spotify user’s “Your Music” library asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="ids">A list of the Spotify IDs.</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<ListResponse<Boolean>> CheckSavedTracksAsync(List<String> ids)
|
2015-11-06 13:36:08 +00:00
|
|
|
|
{
|
|
|
|
|
if (!UseAuth)
|
|
|
|
|
throw new InvalidOperationException("Auth is required for CheckSavedTracks");
|
2015-11-06 19:57:03 +00:00
|
|
|
|
JToken res = await DownloadDataAsync<JToken>(_builder.CheckSavedTracks(ids));
|
|
|
|
|
if (res is JArray)
|
|
|
|
|
return new ListResponse<Boolean> { List = res.ToObject<List<Boolean>>(), Error = null };
|
|
|
|
|
return new ListResponse<Boolean> { List = null, Error = res["error"].ToObject<Error>() };
|
2015-11-06 13:36:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-10-16 23:44:35 +01:00
|
|
|
|
#endregion Library
|
2015-07-07 17:11:11 +01:00
|
|
|
|
|
2015-07-15 16:35:32 +01:00
|
|
|
|
#region Playlists
|
2015-07-07 17:11:11 +01:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get a list of the playlists owned or followed by a Spotify user.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="userId">The user's Spotify user ID.</param>
|
|
|
|
|
/// <param name="limit">The maximum number of playlists to return. Default: 20. Minimum: 1. Maximum: 50. </param>
|
|
|
|
|
/// <param name="offset">The index of the first playlist to return. Default: 0 (the first object)</param>
|
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-07 17:11:11 +01:00
|
|
|
|
public Paging<SimplePlaylist> GetUserPlaylists(String userId, int limit = 20, int offset = 0)
|
|
|
|
|
{
|
|
|
|
|
if (!UseAuth)
|
|
|
|
|
throw new InvalidOperationException("Auth is required for GetUserPlaylists");
|
2015-11-06 18:21:30 +00:00
|
|
|
|
return DownloadData<Paging<SimplePlaylist>>(_builder.GetUserPlaylists(userId, limit, offset));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get a list of the playlists owned or followed by a Spotify user asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="userId">The user's Spotify user ID.</param>
|
|
|
|
|
/// <param name="limit">The maximum number of playlists to return. Default: 20. Minimum: 1. Maximum: 50. </param>
|
|
|
|
|
/// <param name="offset">The index of the first playlist to return. Default: 0 (the first object)</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<Paging<SimplePlaylist>> GetUserPlaylistsAsync(String userId, int limit = 20, int offset = 0)
|
2015-11-06 18:21:30 +00:00
|
|
|
|
{
|
|
|
|
|
if (!UseAuth)
|
|
|
|
|
throw new InvalidOperationException("Auth is required for GetUserPlaylists");
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await DownloadDataAsync<Paging<SimplePlaylist>>(_builder.GetUserPlaylists(userId, limit, offset));
|
2015-07-07 17:11:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get a playlist owned by a Spotify user.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="userId">The user's Spotify user ID.</param>
|
|
|
|
|
/// <param name="playlistId">The Spotify ID for the playlist.</param>
|
|
|
|
|
/// <param name="fields">
|
|
|
|
|
/// Filters for the query: a comma-separated list of the fields to return. If omitted, all fields are
|
|
|
|
|
/// returned.
|
|
|
|
|
/// </param>
|
|
|
|
|
/// <param name="market">An ISO 3166-1 alpha-2 country code. Provide this parameter if you want to apply Track Relinking.</param>
|
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-07 17:11:11 +01:00
|
|
|
|
public FullPlaylist GetPlaylist(String userId, String playlistId, String fields = "", String market = "")
|
|
|
|
|
{
|
|
|
|
|
if (!UseAuth)
|
|
|
|
|
throw new InvalidOperationException("Auth is required for GetPlaylist");
|
2015-11-06 18:21:30 +00:00
|
|
|
|
return DownloadData<FullPlaylist>(_builder.GetPlaylist(userId, playlistId, fields, market));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get a playlist owned by a Spotify user asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="userId">The user's Spotify user ID.</param>
|
|
|
|
|
/// <param name="playlistId">The Spotify ID for the playlist.</param>
|
|
|
|
|
/// <param name="fields">
|
|
|
|
|
/// Filters for the query: a comma-separated list of the fields to return. If omitted, all fields are
|
|
|
|
|
/// returned.
|
|
|
|
|
/// </param>
|
|
|
|
|
/// <param name="market">An ISO 3166-1 alpha-2 country code. Provide this parameter if you want to apply Track Relinking.</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<FullPlaylist> GetPlaylistAsync(String userId, String playlistId, String fields = "", String market = "")
|
2015-11-06 18:21:30 +00:00
|
|
|
|
{
|
|
|
|
|
if (!UseAuth)
|
|
|
|
|
throw new InvalidOperationException("Auth is required for GetPlaylist");
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await DownloadDataAsync<FullPlaylist>(_builder.GetPlaylist(userId, playlistId, fields, market));
|
2015-07-07 17:11:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get full details of the tracks of a playlist owned by a Spotify user.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="userId">The user's Spotify user ID.</param>
|
|
|
|
|
/// <param name="playlistId">The Spotify ID for the playlist.</param>
|
|
|
|
|
/// <param name="fields">
|
|
|
|
|
/// Filters for the query: a comma-separated list of the fields to return. If omitted, all fields are
|
|
|
|
|
/// returned.
|
|
|
|
|
/// </param>
|
|
|
|
|
/// <param name="limit">The maximum number of tracks to return. Default: 100. Minimum: 1. Maximum: 100.</param>
|
|
|
|
|
/// <param name="offset">The index of the first object to return. Default: 0 (i.e., the first object)</param>
|
|
|
|
|
/// <param name="market">An ISO 3166-1 alpha-2 country code. Provide this parameter if you want to apply Track Relinking.</param>
|
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-07 17:11:11 +01:00
|
|
|
|
public Paging<PlaylistTrack> GetPlaylistTracks(String userId, String playlistId, String fields = "", int limit = 100, int offset = 0, String market = "")
|
|
|
|
|
{
|
|
|
|
|
if (!UseAuth)
|
|
|
|
|
throw new InvalidOperationException("Auth is required for GetPlaylistTracks");
|
2015-11-06 18:21:30 +00:00
|
|
|
|
return DownloadData<Paging<PlaylistTrack>>(_builder.GetPlaylistTracks(userId, playlistId, fields, limit, offset, market));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get full details of the tracks of a playlist owned by a Spotify user asyncronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="userId">The user's Spotify user ID.</param>
|
|
|
|
|
/// <param name="playlistId">The Spotify ID for the playlist.</param>
|
|
|
|
|
/// <param name="fields">
|
|
|
|
|
/// Filters for the query: a comma-separated list of the fields to return. If omitted, all fields are
|
|
|
|
|
/// returned.
|
|
|
|
|
/// </param>
|
|
|
|
|
/// <param name="limit">The maximum number of tracks to return. Default: 100. Minimum: 1. Maximum: 100.</param>
|
|
|
|
|
/// <param name="offset">The index of the first object to return. Default: 0 (i.e., the first object)</param>
|
|
|
|
|
/// <param name="market">An ISO 3166-1 alpha-2 country code. Provide this parameter if you want to apply Track Relinking.</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<Paging<PlaylistTrack>> GetPlaylistTracksAsync(String userId, String playlistId, String fields = "", int limit = 100, int offset = 0, String market = "")
|
2015-11-06 18:21:30 +00:00
|
|
|
|
{
|
|
|
|
|
if (!UseAuth)
|
|
|
|
|
throw new InvalidOperationException("Auth is required for GetPlaylistTracks");
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await DownloadDataAsync<Paging<PlaylistTrack>>(_builder.GetPlaylistTracks(userId, playlistId, fields, limit, offset, market));
|
2015-07-07 17:11:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Create a playlist for a Spotify user. (The playlist will be empty until you add tracks.)
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="userId">The user's Spotify user ID.</param>
|
|
|
|
|
/// <param name="playlistName">
|
|
|
|
|
/// The name for the new playlist, for example "Your Coolest Playlist". This name does not need
|
|
|
|
|
/// to be unique.
|
|
|
|
|
/// </param>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <param name="isPublic">
|
|
|
|
|
/// default true. If true the playlist will be public, if false it will be private. To be able to
|
|
|
|
|
/// create private playlists, the user must have granted the playlist-modify-private scope.
|
|
|
|
|
/// </param>
|
2015-07-07 17:11:11 +01:00
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-07 17:11:11 +01:00
|
|
|
|
public FullPlaylist CreatePlaylist(String userId, String playlistName, Boolean isPublic = true)
|
|
|
|
|
{
|
|
|
|
|
JObject body = new JObject
|
|
|
|
|
{
|
|
|
|
|
{"name", playlistName},
|
|
|
|
|
{"public", isPublic}
|
|
|
|
|
};
|
2015-11-06 18:21:30 +00:00
|
|
|
|
return UploadData<FullPlaylist>(_builder.CreatePlaylist(userId, playlistName, isPublic), body.ToString(Formatting.None));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Create a playlist for a Spotify user asynchronously. (The playlist will be empty until you add tracks.)
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="userId">The user's Spotify user ID.</param>
|
|
|
|
|
/// <param name="playlistName">
|
|
|
|
|
/// The name for the new playlist, for example "Your Coolest Playlist". This name does not need
|
|
|
|
|
/// to be unique.
|
|
|
|
|
/// </param>
|
|
|
|
|
/// <param name="isPublic">
|
|
|
|
|
/// default true. If true the playlist will be public, if false it will be private. To be able to
|
|
|
|
|
/// create private playlists, the user must have granted the playlist-modify-private scope.
|
|
|
|
|
/// </param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<FullPlaylist> CreatePlaylistAsync(String userId, String playlistName, Boolean isPublic = true)
|
2015-11-06 18:21:30 +00:00
|
|
|
|
{
|
|
|
|
|
JObject body = new JObject
|
|
|
|
|
{
|
|
|
|
|
{"name", playlistName},
|
|
|
|
|
{"public", isPublic}
|
|
|
|
|
};
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await UploadDataAsync<FullPlaylist>(_builder.CreatePlaylist(userId, playlistName, isPublic), body.ToString(Formatting.None));
|
2015-07-07 17:11:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Change a playlist’s name and public/private state. (The user must, of course, own the playlist.)
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="userId">The user's Spotify user ID.</param>
|
|
|
|
|
/// <param name="playlistId">The Spotify ID for the playlist.</param>
|
|
|
|
|
/// <param name="newName">The new name for the playlist, for example "My New Playlist Title".</param>
|
|
|
|
|
/// <param name="newPublic">If true the playlist will be public, if false it will be private.</param>
|
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-07 17:11:11 +01:00
|
|
|
|
public ErrorResponse UpdatePlaylist(String userId, String playlistId, String newName = null, Boolean? newPublic = null)
|
|
|
|
|
{
|
|
|
|
|
JObject body = new JObject();
|
|
|
|
|
if (newName != null)
|
|
|
|
|
body.Add("name", newName);
|
|
|
|
|
if (newPublic != null)
|
|
|
|
|
body.Add("public", newPublic);
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return UploadData<ErrorResponse>(_builder.UpdatePlaylist(userId, playlistId), body.ToString(Formatting.None), "PUT") ?? new ErrorResponse();
|
2015-11-06 18:21:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Change a playlist’s name and public/private state asynchronously. (The user must, of course, own the playlist.)
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="userId">The user's Spotify user ID.</param>
|
|
|
|
|
/// <param name="playlistId">The Spotify ID for the playlist.</param>
|
|
|
|
|
/// <param name="newName">The new name for the playlist, for example "My New Playlist Title".</param>
|
|
|
|
|
/// <param name="newPublic">If true the playlist will be public, if false it will be private.</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<ErrorResponse> UpdatePlaylistAsync(String userId, String playlistId, String newName = null, Boolean? newPublic = null)
|
2015-11-06 18:21:30 +00:00
|
|
|
|
{
|
|
|
|
|
JObject body = new JObject();
|
|
|
|
|
if (newName != null)
|
|
|
|
|
body.Add("name", newName);
|
|
|
|
|
if (newPublic != null)
|
|
|
|
|
body.Add("public", newPublic);
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await UploadDataAsync<ErrorResponse>(_builder.UpdatePlaylist(userId, playlistId), body.ToString(Formatting.None), "PUT") ?? new ErrorResponse();
|
2015-07-07 17:11:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Replace all the tracks in a playlist, overwriting its existing tracks. This powerful request can be useful for
|
|
|
|
|
/// replacing tracks, re-ordering existing tracks, or clearing the playlist.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="userId">The user's Spotify user ID.</param>
|
|
|
|
|
/// <param name="playlistId">The Spotify ID for the playlist.</param>
|
|
|
|
|
/// <param name="uris">A list of Spotify track URIs to set. A maximum of 100 tracks can be set in one request.</param>
|
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-07 17:11:11 +01:00
|
|
|
|
public ErrorResponse ReplacePlaylistTracks(String userId, String playlistId, List<String> uris)
|
|
|
|
|
{
|
|
|
|
|
JObject body = new JObject
|
|
|
|
|
{
|
|
|
|
|
{"uris", new JArray(uris.Take(100))}
|
|
|
|
|
};
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return UploadData<ErrorResponse>(_builder.ReplacePlaylistTracks(userId, playlistId), body.ToString(Formatting.None), "PUT") ?? new ErrorResponse();
|
2015-11-06 18:21:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Replace all the tracks in a playlist asynchronously, overwriting its existing tracks. This powerful request can be useful for
|
|
|
|
|
/// replacing tracks, re-ordering existing tracks, or clearing the playlist.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="userId">The user's Spotify user ID.</param>
|
|
|
|
|
/// <param name="playlistId">The Spotify ID for the playlist.</param>
|
|
|
|
|
/// <param name="uris">A list of Spotify track URIs to set. A maximum of 100 tracks can be set in one request.</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<ErrorResponse> ReplacePlaylistTracksAsync(String userId, String playlistId, List<String> uris)
|
2015-11-06 18:21:30 +00:00
|
|
|
|
{
|
|
|
|
|
JObject body = new JObject
|
|
|
|
|
{
|
|
|
|
|
{"uris", new JArray(uris.Take(100))}
|
|
|
|
|
};
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await UploadDataAsync<ErrorResponse>(_builder.ReplacePlaylistTracks(userId, playlistId), body.ToString(Formatting.None), "PUT") ?? new ErrorResponse();
|
2015-07-07 17:11:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Remove one or more tracks from a user’s playlist.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="userId">The user's Spotify user ID.</param>
|
|
|
|
|
/// <param name="playlistId">The Spotify ID for the playlist.</param>
|
|
|
|
|
/// <param name="uris">
|
|
|
|
|
/// array of objects containing Spotify URI strings (and their position in the playlist). A maximum of
|
|
|
|
|
/// 100 objects can be sent at once.
|
|
|
|
|
/// </param>
|
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-07 17:11:11 +01:00
|
|
|
|
public ErrorResponse RemovePlaylistTracks(String userId, String playlistId, List<DeleteTrackUri> uris)
|
|
|
|
|
{
|
|
|
|
|
JObject body = new JObject
|
|
|
|
|
{
|
|
|
|
|
{"tracks", JArray.FromObject(uris.Take(100))}
|
|
|
|
|
};
|
2015-11-06 18:21:30 +00:00
|
|
|
|
return UploadData<ErrorResponse>(_builder.RemovePlaylistTracks(userId, playlistId, uris), body.ToString(Formatting.None), "DELETE") ?? new ErrorResponse();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Remove one or more tracks from a user’s playlist asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="userId">The user's Spotify user ID.</param>
|
|
|
|
|
/// <param name="playlistId">The Spotify ID for the playlist.</param>
|
|
|
|
|
/// <param name="uris">
|
|
|
|
|
/// array of objects containing Spotify URI strings (and their position in the playlist). A maximum of
|
|
|
|
|
/// 100 objects can be sent at once.
|
|
|
|
|
/// </param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<ErrorResponse> RemovePlaylistTracksAsync(String userId, String playlistId, List<DeleteTrackUri> uris)
|
2015-11-06 18:21:30 +00:00
|
|
|
|
{
|
|
|
|
|
JObject body = new JObject
|
|
|
|
|
{
|
|
|
|
|
{"tracks", JArray.FromObject(uris.Take(100))}
|
|
|
|
|
};
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await UploadDataAsync<ErrorResponse>(_builder.RemovePlaylistTracks(userId, playlistId, uris), body.ToString(Formatting.None), "DELETE") ?? new ErrorResponse();
|
2015-07-07 17:11:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Remove one or more tracks from a user’s playlist.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="userId">The user's Spotify user ID.</param>
|
|
|
|
|
/// <param name="playlistId">The Spotify ID for the playlist.</param>
|
|
|
|
|
/// <param name="uri">Spotify URI</param>
|
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-07 17:11:11 +01:00
|
|
|
|
public ErrorResponse RemovePlaylistTrack(String userId, String playlistId, DeleteTrackUri uri)
|
|
|
|
|
{
|
2015-10-16 23:44:35 +01:00
|
|
|
|
return RemovePlaylistTracks(userId, playlistId, new List<DeleteTrackUri> { uri });
|
2015-07-07 17:11:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-11-06 18:21:30 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Remove one or more tracks from a user’s playlist asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="userId">The user's Spotify user ID.</param>
|
|
|
|
|
/// <param name="playlistId">The Spotify ID for the playlist.</param>
|
|
|
|
|
/// <param name="uri">Spotify URI</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<ErrorResponse> RemovePlaylistTrackAsync(String userId, String playlistId, DeleteTrackUri uri)
|
2015-11-06 18:21:30 +00:00
|
|
|
|
{
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await RemovePlaylistTracksAsync(userId, playlistId, new List<DeleteTrackUri> { uri });
|
2015-11-06 18:21:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-07-07 17:11:11 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Add one or more tracks to a user’s playlist.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="userId">The user's Spotify user ID.</param>
|
|
|
|
|
/// <param name="playlistId">The Spotify ID for the playlist.</param>
|
|
|
|
|
/// <param name="uris">A list of Spotify track URIs to add</param>
|
|
|
|
|
/// <param name="position">The position to insert the tracks, a zero-based index</param>
|
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-07 17:11:11 +01:00
|
|
|
|
public ErrorResponse AddPlaylistTracks(String userId, String playlistId, List<String> uris, int? position = null)
|
|
|
|
|
{
|
|
|
|
|
JObject body = new JObject
|
|
|
|
|
{
|
|
|
|
|
{"uris", JArray.FromObject(uris.Take(100))}
|
|
|
|
|
};
|
2015-11-06 18:21:30 +00:00
|
|
|
|
return UploadData<ErrorResponse>(_builder.AddPlaylistTracks(userId, playlistId, uris, position), body.ToString(Formatting.None)) ?? new ErrorResponse();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Add one or more tracks to a user’s playlist asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="userId">The user's Spotify user ID.</param>
|
|
|
|
|
/// <param name="playlistId">The Spotify ID for the playlist.</param>
|
|
|
|
|
/// <param name="uris">A list of Spotify track URIs to add</param>
|
|
|
|
|
/// <param name="position">The position to insert the tracks, a zero-based index</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<ErrorResponse> AddPlaylistTracksAsync(String userId, String playlistId, List<String> uris, int? position = null)
|
2015-11-06 18:21:30 +00:00
|
|
|
|
{
|
|
|
|
|
JObject body = new JObject
|
|
|
|
|
{
|
|
|
|
|
{"uris", JArray.FromObject(uris.Take(100))}
|
|
|
|
|
};
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await UploadDataAsync<ErrorResponse>(_builder.AddPlaylistTracks(userId, playlistId, uris, position), body.ToString(Formatting.None)) ?? new ErrorResponse();
|
2015-07-07 17:11:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Add one or more tracks to a user’s playlist.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="userId">The user's Spotify user ID.</param>
|
|
|
|
|
/// <param name="playlistId">The Spotify ID for the playlist.</param>
|
|
|
|
|
/// <param name="uri">A Spotify Track URI</param>
|
|
|
|
|
/// <param name="position">The position to insert the tracks, a zero-based index</param>
|
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-07 17:11:11 +01:00
|
|
|
|
public ErrorResponse AddPlaylistTrack(String userId, String playlistId, String uri, int? position = null)
|
|
|
|
|
{
|
2015-10-16 23:44:35 +01:00
|
|
|
|
return AddPlaylistTracks(userId, playlistId, new List<string> { uri }, position);
|
2015-07-07 17:11:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-11-06 18:21:30 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Add one or more tracks to a user’s playlist asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="userId">The user's Spotify user ID.</param>
|
|
|
|
|
/// <param name="playlistId">The Spotify ID for the playlist.</param>
|
|
|
|
|
/// <param name="uri">A Spotify Track URI</param>
|
|
|
|
|
/// <param name="position">The position to insert the tracks, a zero-based index</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<ErrorResponse> AddPlaylistTrackAsync(String userId, String playlistId, String uri, int? position = null)
|
2015-11-06 18:21:30 +00:00
|
|
|
|
{
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await AddPlaylistTracksAsync(userId, playlistId, new List<string> { uri }, position);
|
2015-11-06 18:21:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-07-07 17:11:11 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Reorder a track or a group of tracks in a playlist.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="userId">The user's Spotify user ID.</param>
|
|
|
|
|
/// <param name="playlistId">The Spotify ID for the playlist.</param>
|
|
|
|
|
/// <param name="rangeStart">The position of the first track to be reordered.</param>
|
|
|
|
|
/// <param name="insertBefore">The position where the tracks should be inserted. </param>
|
|
|
|
|
/// <param name="rangeLength">The amount of tracks to be reordered. Defaults to 1 if not set.</param>
|
|
|
|
|
/// <param name="snapshotId">The playlist's snapshot ID against which you want to make the changes.</param>
|
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-07 17:11:11 +01:00
|
|
|
|
public Snapshot ReorderPlaylist(String userId, String playlistId, int rangeStart, int insertBefore, int rangeLength = 1, String snapshotId = "")
|
|
|
|
|
{
|
|
|
|
|
JObject body = new JObject
|
|
|
|
|
{
|
|
|
|
|
{"range_start", rangeStart},
|
|
|
|
|
{"range_length", rangeLength},
|
|
|
|
|
{"insert_before", insertBefore}
|
|
|
|
|
};
|
2015-10-16 23:31:01 +01:00
|
|
|
|
if (!String.IsNullOrEmpty(snapshotId))
|
2015-07-07 17:11:11 +01:00
|
|
|
|
body.Add("snapshot_id", snapshotId);
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return UploadData<Snapshot>(_builder.ReorderPlaylist(userId, playlistId), body.ToString(Formatting.None), "PUT");
|
2015-11-06 18:21:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Reorder a track or a group of tracks in a playlist asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="userId">The user's Spotify user ID.</param>
|
|
|
|
|
/// <param name="playlistId">The Spotify ID for the playlist.</param>
|
|
|
|
|
/// <param name="rangeStart">The position of the first track to be reordered.</param>
|
|
|
|
|
/// <param name="insertBefore">The position where the tracks should be inserted. </param>
|
|
|
|
|
/// <param name="rangeLength">The amount of tracks to be reordered. Defaults to 1 if not set.</param>
|
|
|
|
|
/// <param name="snapshotId">The playlist's snapshot ID against which you want to make the changes.</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<Snapshot> ReorderPlaylistAsync(String userId, String playlistId, int rangeStart, int insertBefore, int rangeLength = 1, String snapshotId = "")
|
2015-11-06 18:21:30 +00:00
|
|
|
|
{
|
|
|
|
|
JObject body = new JObject
|
|
|
|
|
{
|
|
|
|
|
{"range_start", rangeStart},
|
|
|
|
|
{"range_length", rangeLength},
|
2015-11-06 19:57:03 +00:00
|
|
|
|
{"insert_before", insertBefore},
|
|
|
|
|
{"snapshot_id", snapshotId}
|
2015-11-06 18:21:30 +00:00
|
|
|
|
};
|
2015-11-06 19:57:03 +00:00
|
|
|
|
if (!String.IsNullOrEmpty(snapshotId))
|
|
|
|
|
body.Add("snapshot_id", snapshotId);
|
|
|
|
|
return await UploadDataAsync<Snapshot>(_builder.ReorderPlaylist(userId, playlistId), body.ToString(Formatting.None), "PUT");
|
2015-07-07 17:11:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-10-16 23:44:35 +01:00
|
|
|
|
#endregion Playlists
|
2015-07-07 17:11:11 +01:00
|
|
|
|
|
2015-07-15 16:35:32 +01:00
|
|
|
|
#region Profiles
|
2015-07-07 17:11:11 +01:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2015-07-15 16:35:32 +01:00
|
|
|
|
/// Get detailed profile information about the current user (including the current user’s username).
|
2015-07-07 17:11:11 +01:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns></returns>
|
2015-07-26 12:59:13 +01:00
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-07-15 16:35:32 +01:00
|
|
|
|
public PrivateProfile GetPrivateProfile()
|
2015-07-07 17:11:11 +01:00
|
|
|
|
{
|
|
|
|
|
if (!UseAuth)
|
2015-07-15 16:35:32 +01:00
|
|
|
|
throw new InvalidOperationException("Auth is required for GetPrivateProfile");
|
2015-11-06 18:21:30 +00:00
|
|
|
|
return DownloadData<PrivateProfile>(_builder.GetPrivateProfile());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get detailed profile information about the current user asynchronously (including the current user’s username).
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <remarks>AUTH NEEDED</remarks>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<PrivateProfile> GetPrivateProfileAsync()
|
2015-11-06 18:21:30 +00:00
|
|
|
|
{
|
|
|
|
|
if (!UseAuth)
|
|
|
|
|
throw new InvalidOperationException("Auth is required for GetPrivateProfile");
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await DownloadDataAsync<PrivateProfile>(_builder.GetPrivateProfile());
|
2015-07-07 17:11:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2015-07-15 16:35:32 +01:00
|
|
|
|
/// Get public profile information about a Spotify user.
|
2015-07-07 17:11:11 +01:00
|
|
|
|
/// </summary>
|
2015-07-15 16:35:32 +01:00
|
|
|
|
/// <param name="userId">The user's Spotify user ID.</param>
|
2015-07-07 17:11:11 +01:00
|
|
|
|
/// <returns></returns>
|
2015-07-15 16:35:32 +01:00
|
|
|
|
public PublicProfile GetPublicProfile(String userId)
|
2015-07-07 17:11:11 +01:00
|
|
|
|
{
|
2015-11-06 18:21:30 +00:00
|
|
|
|
return DownloadData<PublicProfile>(_builder.GetPublicProfile(userId));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get public profile information about a Spotify user asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="userId">The user's Spotify user ID.</param>
|
|
|
|
|
/// <returns></returns>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<PublicProfile> GetPublicProfileAsync(String userId)
|
2015-11-06 18:21:30 +00:00
|
|
|
|
{
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await DownloadDataAsync<PublicProfile>(_builder.GetPublicProfile(userId));
|
2015-07-07 17:11:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-10-16 23:44:35 +01:00
|
|
|
|
#endregion Profiles
|
2015-07-07 17:11:11 +01:00
|
|
|
|
|
2015-07-15 16:35:32 +01:00
|
|
|
|
#region Tracks
|
|
|
|
|
|
2015-07-07 17:11:11 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get Spotify catalog information for multiple tracks based on their Spotify IDs.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="ids">A list of the Spotify IDs for the tracks. Maximum: 50 IDs.</param>
|
|
|
|
|
/// <param name="market">An ISO 3166-1 alpha-2 country code. Provide this parameter if you want to apply Track Relinking.</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public SeveralTracks GetSeveralTracks(List<String> ids, String market = "")
|
|
|
|
|
{
|
2015-11-06 18:21:30 +00:00
|
|
|
|
return DownloadData<SeveralTracks>(_builder.GetSeveralTracks(ids, market));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get Spotify catalog information for multiple tracks based on their Spotify IDs asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="ids">A list of the Spotify IDs for the tracks. Maximum: 50 IDs.</param>
|
|
|
|
|
/// <param name="market">An ISO 3166-1 alpha-2 country code. Provide this parameter if you want to apply Track Relinking.</param>
|
|
|
|
|
/// <returns></returns>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<SeveralTracks> GetSeveralTracksAsync(List<String> ids, String market = "")
|
2015-11-06 18:21:30 +00:00
|
|
|
|
{
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await DownloadDataAsync<SeveralTracks>(_builder.GetSeveralTracks(ids, market));
|
2015-07-07 17:11:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get Spotify catalog information for a single track identified by its unique Spotify ID.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="id">The Spotify ID for the track.</param>
|
|
|
|
|
/// <param name="market">An ISO 3166-1 alpha-2 country code. Provide this parameter if you want to apply Track Relinking.</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public FullTrack GetTrack(String id, String market = "")
|
|
|
|
|
{
|
2015-11-06 18:21:30 +00:00
|
|
|
|
return DownloadData<FullTrack>(_builder.GetTrack(id, market));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get Spotify catalog information for a single track identified by its unique Spotify ID asynchronously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="id">The Spotify ID for the track.</param>
|
|
|
|
|
/// <param name="market">An ISO 3166-1 alpha-2 country code. Provide this parameter if you want to apply Track Relinking.</param>
|
|
|
|
|
/// <returns></returns>
|
2015-11-06 19:57:03 +00:00
|
|
|
|
public async Task<FullTrack> GetTrackAsync(String id, String market = "")
|
2015-11-06 18:21:30 +00:00
|
|
|
|
{
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return await DownloadDataAsync<FullTrack>(_builder.GetTrack(id, market));
|
2015-07-07 17:11:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-10-16 23:44:35 +01:00
|
|
|
|
#endregion Tracks
|
2015-07-07 17:11:11 +01:00
|
|
|
|
|
|
|
|
|
#region Util
|
|
|
|
|
|
2015-11-07 19:18:39 +00:00
|
|
|
|
public Paging<T> GetNextPage<T>(Paging<T> paging)
|
2015-11-06 19:57:03 +00:00
|
|
|
|
{
|
2015-11-07 19:18:39 +00:00
|
|
|
|
if (!paging.HasNextPage())
|
|
|
|
|
throw new InvalidOperationException("This Paging-Object has no Next-Page");
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return DownloadData<Paging<T>>(paging.Next);
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-07 19:18:39 +00:00
|
|
|
|
public async Task<Paging<T>> GetNextPageAsync<T>(Paging<T> paging)
|
2015-11-06 19:57:03 +00:00
|
|
|
|
{
|
2015-11-07 19:18:39 +00:00
|
|
|
|
if (!paging.HasNextPage())
|
|
|
|
|
throw new InvalidOperationException("This Paging-Object has no Next-Page");
|
|
|
|
|
return await DownloadDataAsync<Paging<T>>(paging.Next);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Paging<T> GetPreviousPage<T>(Paging<T> paging)
|
|
|
|
|
{
|
|
|
|
|
if (!paging.HasPreviousPage())
|
|
|
|
|
throw new InvalidOperationException("This Paging-Object has no Previous-Page");
|
2015-11-06 19:57:03 +00:00
|
|
|
|
return DownloadData<Paging<T>>(paging.Previous);
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-07 19:18:39 +00:00
|
|
|
|
public async Task<Paging<T>> GetPreviousPageAsync<T>(Paging<T> paging)
|
|
|
|
|
{
|
|
|
|
|
if (!paging.HasPreviousPage())
|
|
|
|
|
throw new InvalidOperationException("This Paging-Object has no Previous-Page");
|
|
|
|
|
return await DownloadDataAsync<Paging<T>>(paging.Previous);
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-07 17:11:11 +01:00
|
|
|
|
public T UploadData<T>(String url, String uploadData, String method = "POST")
|
|
|
|
|
{
|
|
|
|
|
if (!UseAuth)
|
|
|
|
|
throw new InvalidOperationException("Auth is required for all Upload-Actions");
|
|
|
|
|
WebClient.SetHeader("Authorization", TokenType + " " + AccessToken);
|
|
|
|
|
WebClient.SetHeader("Content-Type", "application/json");
|
|
|
|
|
return WebClient.UploadJson<T>(url, uploadData, method);
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-05 20:20:22 +00:00
|
|
|
|
public Task<T> UploadDataAsync<T>(String url, String uploadData, String method = "POST")
|
|
|
|
|
{
|
|
|
|
|
if (!UseAuth)
|
|
|
|
|
throw new InvalidOperationException("Auth is required for all Upload-Actions");
|
|
|
|
|
WebClient.SetHeader("Authorization", TokenType + " " + AccessToken);
|
|
|
|
|
WebClient.SetHeader("Content-Type", "application/json");
|
|
|
|
|
return WebClient.UploadJsonAsync<T>(url, uploadData, method);
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-07 17:11:11 +01:00
|
|
|
|
public T DownloadData<T>(String url)
|
|
|
|
|
{
|
|
|
|
|
if (UseAuth)
|
|
|
|
|
WebClient.SetHeader("Authorization", TokenType + " " + AccessToken);
|
|
|
|
|
else
|
|
|
|
|
WebClient.RemoveHeader("Authorization");
|
|
|
|
|
return WebClient.DownloadJson<T>(url);
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-05 20:20:22 +00:00
|
|
|
|
public Task<T> DownloadDataAsync<T>(String url)
|
|
|
|
|
{
|
|
|
|
|
if (UseAuth)
|
|
|
|
|
WebClient.SetHeader("Authorization", TokenType + " " + AccessToken);
|
|
|
|
|
else
|
|
|
|
|
WebClient.RemoveHeader("Authorization");
|
|
|
|
|
return WebClient.DownloadJsonAsync<T>(url);
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-16 23:44:35 +01:00
|
|
|
|
#endregion Util
|
2015-07-07 17:11:11 +01:00
|
|
|
|
}
|
|
|
|
|
}
|