using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Diagnostics; using System.Net; using SpotifyAPI.SpotifyWebAPI; using SpotifyAPI.SpotifyWebAPI.Models; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System.Collections.Specialized; using System.IO; namespace SpotifyAPI.SpotifyWebAPI { public class SpotifyWebAPIClass : IDisposable { public String TokenType { get; set; } public String AccessToken { get; set; } /// /// Set to false, if you want anonymous calls without auth /// public Boolean UseAuth { get; set; } WebClient webclient; JsonSerializerSettings settings; public SpotifyWebAPIClass() { UseAuth = true; webclient = new WebClient(); webclient.Proxy = null; settings = new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore, TypeNameHandling = TypeNameHandling.All }; } #region User public PrivateProfile GetPrivateProfile() { return DownloadData("https://api.spotify.com/v1/me"); } public PublicProfile GetPublicProfile(String userId = "") { if (userId.Length == 0) return DownloadData("https://api.spotify.com/v1/me"); else return DownloadData("https://api.spotify.com/v1/users/" + userId); } public ErrorResponse Follow(FollowType followType, List ids) { JObject ob = new JObject(); ob.Add("ids", new JArray(ids.ToArray())); return UploadData("https://api.spotify.com/v1/me/following?type=" + followType.GetStringAttribute(""), ob.ToString(Formatting.None), "PUT"); } public ErrorResponse Unfollow(FollowType followType, List ids) { JObject ob = new JObject(); ob.Add("ids", new JArray(ids.ToArray())); return UploadData("https://api.spotify.com/v1/me/following?type=" + followType.GetStringAttribute(""), ob.ToString(Formatting.None), "DELETE"); } /// /// /// public ListResponse IsFollowing(FollowType followType, List ids) { JToken res = DownloadData("https://api.spotify.com/v1/me/following/contains?type=" + followType.GetStringAttribute("") + "&ids=" + string.Join(",", ids)); if (res is JArray) { return new ListResponse { List = res.ToObject>(), ErrorResponse = null }; } else { return new ListResponse { List = null, ErrorResponse = res.ToObject() }; } } #endregion #region User-Library public ErrorResponse SaveTracks(List ids) { JArray array = new JArray(ids.ToArray()); return UploadData("https://api.spotify.com/v1/me/tracks/", array.ToString(Formatting.None), "PUT"); } public Paging GetSavedTracks(String market = "") { if(market == "") return DownloadData>("https://api.spotify.com/v1/me/tracks"); else return DownloadData>("https://api.spotify.com/v1/me/tracks?market=" + market); } public ErrorResponse RemoveSavedTracks(List ids) { JArray array = new JArray(ids.ToArray()); return UploadData("https://api.spotify.com/v1/me/tracks/", array.ToString(Formatting.None), "DELETE"); } public ListResponse CheckSavedTracks(List ids) { String resp = DownloadString("https://api.spotify.com/v1/me/tracks/contains?ids=" + string.Join(",", ids)); JToken res = JToken.Parse(resp); if (res is JArray) { return new ListResponse { List = res.ToObject>(), ErrorResponse = null }; } else { return new ListResponse { List = null, ErrorResponse = res.ToObject() }; } } #endregion #region Playlist public Paging GetUserPlaylists(String userId) { return DownloadData>("https://api.spotify.com/v1/users/" + userId + "/playlists"); } public FullPlaylist GetPlaylist(String userId, String playlistId) { return DownloadData("https://api.spotify.com/v1/users/" + userId + "/playlists/" + playlistId); } public Paging GetPlaylistTracks(String userId, String playlistId, String market = "") { if(market == "") return DownloadData>("https://api.spotify.com/v1/users/" + userId + "/playlists/" + playlistId + "/tracks"); else return DownloadData>("https://api.spotify.com/v1/users/" + userId + "/playlists/" + playlistId + "/tracks?market=" + market); } public FullPlaylist CreatePlaylist(String userId, String playlistName, Boolean isPublic = true) { CreatePlaylistArgs args = new CreatePlaylistArgs() { Name = playlistName, Public = isPublic }; return UploadData("https://api.spotify.com/v1/users/" + userId + "/playlists", JsonConvert.SerializeObject(args)); } public ErrorResponse UpdatePlaylist(String userId, String playlistId, String newName = null, Boolean? newPublic = null) { JObject ob = new JObject(); if (newName != null) ob.Add("name", newName); if (newPublic != null) ob.Add("public", newPublic); return UploadData("https://api.spotify.com/v1/users/" + userId + "/playlists/" + playlistId, ob.ToString(Formatting.None), "PUT"); } public ErrorResponse ReplacePlaylistTracks(String userId, String playlistId, List uris) { JObject ob = new JObject(); ob.Add("uris", new JArray(uris)); return UploadData("https://api.spotify.com/v1/users/" + userId + "/playlists/" + playlistId + "/tracks", ob.ToString(Formatting.None), "PUT"); } public ErrorResponse DeletePlaylistTracks(String userId, String playlistId, List args) { JObject ob = new JObject(); ob.Add("tracks", JArray.FromObject(args)); return UploadData("https://api.spotify.com/v1/users/" + userId + "/playlists/" + playlistId + "/tracks", ob.ToString(Formatting.None), "DELETE"); } public ErrorResponse AddTracks(String userId, String playlistId, List uris, int position = int.MaxValue) { if (position == int.MaxValue) return UploadData("https://api.spotify.com/v1/users/" + userId + "/playlists/" + playlistId + "/tracks", JsonConvert.SerializeObject(uris)); else { String tracks = string.Join(",", uris); return UploadData("https://api.spotify.com/v1/users/" + userId + "/playlists/" + playlistId + "/tracks?position=" + position + "&ids=" + tracks , JsonConvert.SerializeObject(uris)); } } public FeaturedPlaylists GetFeaturedPlaylists(String locale = "", String country = "", DateTime timestamp = default(DateTime), int limit = 20, int offset = 0) { limit = Math.Max(50, limit); StringBuilder builder = new StringBuilder("https://api.spotify.com/v1/browse/featured-playlists"); builder.Append("?limit=" + limit); builder.Append("&offset=" + offset); if(locale != "") builder.Append("&locale=" + locale); if(country != "") builder.Append("&country=" + country); if (timestamp != default(DateTime)) builder.Append("×tamp=" + timestamp.ToString("yyyy-MM-ddTHH:mm:ss")); return DownloadData(builder.ToString()); } public ErrorResponse FollowPlaylist(String ownerId, String playlistId, bool showPublic) { JObject ob = new JObject(); ob.Add("public", showPublic); return UploadData("https://api.spotify.com/v1/users/" + ownerId + "/playlists/" + playlistId + "/followers", ob.ToString(Formatting.None), "PUT"); } public ErrorResponse UnfollowPlaylist(String ownerId, String playlistId) { return UploadData("https://api.spotify.com/v1/users/" + ownerId + "/playlists/" + playlistId + "/followers", "", "DELETE"); } public ListResponse IsFollowingPlaylist(String ownerId, String playlistId, List ids) { JToken res = DownloadData("https://api.spotify.com/v1/users/" + ownerId + "/playlists/" + playlistId + "/followers/contains?ids=" + string.Join(",", ids)); if (res is JArray) return new ListResponse() { List = res.ToObject>(), ErrorResponse = null }; else return new ListResponse() { List = null, ErrorResponse = res.ToObject() }; } #endregion #region Search and Fetch public NewAlbumReleases GetNewAlbumReleases(String country = "", int limit = 50, int offset = 0) { limit = Math.Max(50, limit); StringBuilder builder = new StringBuilder("https://api.spotify.com/v1/browse/new-releases"); builder.Append("?limit=" + limit); builder.Append("&offset=" + offset); if (country != "") builder.Append("&country=" + country); return DownloadData(builder.ToString()); } public SearchItem SearchItems(String q, SearchType type, int limit = 20, int offset = 0) { limit = Math.Min(50, limit); StringBuilder builder = new StringBuilder("https://api.spotify.com/v1/search"); builder.Append("?q=" + q); builder.Append("&type=" + type.GetStringAttribute(",")); builder.Append("&limit=" + limit); builder.Append("&offset=" + offset); return DownloadData(builder.ToString()); } public SeveralTracks GetSeveralTracks(List ids, String market = "") { if(market == "") return DownloadData("https://api.spotify.com/v1/tracks?ids=" + string.Join(",", ids)); else return DownloadData("https://api.spotify.com/v1/tracks?market=" + market + "&ids=" + string.Join(",", ids)); } public SeveralAlbums GetSeveralAlbums(List ids, String market = "") { if(market == "") return DownloadData("https://api.spotify.com/v1/albums?ids=" + string.Join(",", ids)); else return DownloadData("https://api.spotify.com/v1/albums?market=" + market + "&ids=" + string.Join(",", ids)); } public SeveralArtists GetSeveralArtists(List ids) { return DownloadData("https://api.spotify.com/v1/artists?ids=" + string.Join(",", ids)); } public FullTrack GetTrack(String id, String market = "") { if(market == "") return DownloadData("https://api.spotify.com/v1/tracks/" + id); else return DownloadData("https://api.spotify.com/v1/tracks/" + id + "?market=" + market); } public SeveralArtists GetRelatedArtists(String id) { return DownloadData("https://api.spotify.com/v1/artists/" + id + "/related-artists"); } public SeveralTracks GetArtistsTopTracks(String id, String country) { return DownloadData("https://api.spotify.com/v1/artists/" + id + "/top-tracks?country=" + country); } public Paging GetArtistsAlbums(String id, AlbumType type = AlbumType.ALL, String market = "", int limit = 20, int offset = 0) { limit = Math.Min(50, limit); StringBuilder builder = new StringBuilder("https://api.spotify.com/v1/artists/" + id + "/albums"); builder.Append("?type=" + type.GetStringAttribute(",")); builder.Append("&limit=" + limit); builder.Append("&offset=" + offset); if (market != "") builder.Append("&market=" + market); return DownloadData>(builder.ToString()); } public FullArtist GetArtist(String id) { return DownloadData("https://api.spotify.com/v1/artists/" + id); } public Paging GetAlbumTracks(String id, String market, int limit = 20, int offset = 0) { limit = Math.Min(50, limit); StringBuilder builder = new StringBuilder("https://api.spotify.com/v1/albums/" + id + "/tracks"); builder.Append("?limit=" + limit); builder.Append("&offset=" + offset); if (market != "") builder.Append("&market=" + market); return DownloadData>(builder.ToString()); } public FullAlbum GetAlbum(String id, String market = "") { if(market == "") return DownloadData("https://api.spotify.com/v1/albums/" + id); else return DownloadData("https://api.spotify.com/v1/albums/" + id + "?market=" + market); } #endregion #region Category public CategoryList GetCategories(String country = "", String locale = "", int limit = 20, int offset = 0) { limit = Math.Min(50, limit); StringBuilder builder = new StringBuilder("https://api.spotify.com/v1/browse/categories"); builder.Append("?limit=" + limit); builder.Append("&offset=" + offset); if (country != "") builder.Append("&country=" + country); if (locale != "") builder.Append("&locale=" + locale); return DownloadData(builder.ToString()); } public Category GetCategory(String categoryId, String country = "", String locale = "") { StringBuilder builder = new StringBuilder("https://api.spotify.com/v1/browse/categories/" + categoryId); if(country != "") builder.Append("?country=" + country); if(locale != "") { if (country != "") builder.Append("&locale=" + locale); else builder.Append("?locale=" + locale); } return DownloadData(builder.ToString()); } public CategoryPlaylist GetCategoryPlaylists(String categoryId, String country = "", int limit = 20, int offset = 0) { limit = Math.Min(50, limit); StringBuilder builder = new StringBuilder("https://api.spotify.com/v1/browse/categories/" + categoryId + "/playlists"); builder.Append("?limit=" + limit); builder.Append("&offset=" + offset); if (country != "") builder.Append("&country=" + country); return DownloadData(builder.ToString()); } #endregion #region Util public T UploadData(String url, String uploadData, String method = "POST") { if (!UseAuth) throw new Exception("UseAuth required for 'UploadData'"); webclient.Headers.Add("Authorization", TokenType + " " + AccessToken); webclient.Headers.Add("Content-Type", "application/json"); String response = ""; try { byte[] data = webclient.UploadData(url, method, Encoding.UTF8.GetBytes(uploadData)); response = Encoding.UTF8.GetString(data); } catch (WebException e) { response = new StreamReader(e.Response.GetResponseStream()).ReadToEnd(); } return JsonConvert.DeserializeObject(response, settings); } public T DownloadData(String url) { return JsonConvert.DeserializeObject(DownloadString(url), settings); } public String DownloadString(String url) { if (UseAuth) webclient.Headers.Add("Authorization", TokenType + " " + AccessToken); String response = ""; try { byte[] data = webclient.DownloadData(url); response = Encoding.UTF8.GetString(data); } catch (WebException e) { response = new StreamReader(e.Response.GetResponseStream()).ReadToEnd(); } return response; } #endregion public void Dispose() { webclient.Dispose(); } } }