From 1ee3df6976750c9c6e5869a99c1bca6dcd74bf50 Mon Sep 17 00:00:00 2001 From: "James McGlashan (DarkFox)" Date: Thu, 2 Jan 2014 23:50:22 +1100 Subject: Added user and search paramaters for SoundCloud plugin --- src/playlist/SoundCloudPlaylistPlugin.cxx | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/playlist/SoundCloudPlaylistPlugin.cxx') diff --git a/src/playlist/SoundCloudPlaylistPlugin.cxx b/src/playlist/SoundCloudPlaylistPlugin.cxx index 63cf821f6..07ac52c04 100644 --- a/src/playlist/SoundCloudPlaylistPlugin.cxx +++ b/src/playlist/SoundCloudPlaylistPlugin.cxx @@ -363,6 +363,14 @@ soundcloud_open_uri(const char *uri, Mutex &mutex, Cond &cond) u = g_strconcat("https://api.soundcloud.com/playlists/", rest, ".json?client_id=", soundcloud_config.apikey.c_str(), nullptr); + } else if (strcmp(arg, "user") == 0) { + u = g_strconcat("https://api.soundcloud.com/users/", + rest, "/tracks.json?client_id=", + soundcloud_config.apikey.c_str(), nullptr); + } else if (strcmp(arg, "search") == 0) { + u = g_strconcat("https://api.soundcloud.com/tracks.json?q=", + rest, "&client_id=", + soundcloud_config.apikey.c_str(), nullptr); } else if (strcmp(arg, "url") == 0) { /* Translate to soundcloud resolver call. libcurl will automatically follow the redirect to the right resource. */ -- cgit v1.2.3