X-Git-Url: https://git.hcoop.net/clinton/xbmc-groove.git/blobdiff_plain/e6ccfeca53fe3df107378e3c7747a351049c7806..df35aa069a65b5a8a64b686041c606a99d4b4ffe:/default.py diff --git a/default.py b/default.py dissimilarity index 66% index cf909a9..a750f09 100644 --- a/default.py +++ b/default.py @@ -1,498 +1,1148 @@ -import urllib, urllib2, re, xbmcplugin, xbmcgui, xbmc, sys, os, time, pprint, shutil, xbmcaddon - -MODE_SEARCH_SONGS = 1 -MODE_SEARCH_ALBUMS = 2 -MODE_SEARCH_ARTISTS = 3 -MODE_POPULAR = 4 -MODE_FAVORITES = 5 -MODE_PLAYLISTS = 6 -MODE_ALBUM = 7 -MODE_ARTIST = 8 -MODE_PLAYLIST = 9 -MODE_SONG = 10 -MODE_FAVORITE = 11 -MODE_UNFAVORITE = 12 -MODE_SIMILAR_SONG = 13 -MODE_SIMILAR_ARTIST = 14 -MODE_FROWN = 15 - -lastID = 0 - -baseDir = os.getcwd() -resDir = xbmc.translatePath(os.path.join(baseDir, 'resources')) -libDir = xbmc.translatePath(os.path.join(resDir, 'lib')) -imgDir = xbmc.translatePath(os.path.join(resDir, 'img')) -thumbDir = os.path.join('special://masterprofile/addon_data/', os.path.join(os.path.basename(os.getcwd()), 'thumb')) -favoritesCache = xbmc.translatePath(os.path.join('special://masterprofile/addon_data/', os.path.join(os.path.basename(os.getcwd()), 'favorites.dmp'))) - -sys.path.append (libDir) -from GrooveAPI import * -groovesharkApi = GrooveAPI() - -class _Info: - def __init__( self, *args, **kwargs ): - self.__dict__.update( kwargs ) - -class Groveshark: - - albumImg = xbmc.translatePath(os.path.join(imgDir, 'album.png')) - artistImg = xbmc.translatePath(os.path.join(imgDir, 'artist.png')) - favoritesImg = xbmc.translatePath(os.path.join(imgDir, 'favorites.png')) - playlistImg = xbmc.translatePath(os.path.join(imgDir, 'playlist.png')) - popularImg = xbmc.translatePath(os.path.join(imgDir, 'popular.png')) - songImg = xbmc.translatePath(os.path.join(imgDir, 'song.png')) - defImg = xbmc.translatePath(os.path.join(imgDir, 'default.tbn')) - fanImg = xbmc.translatePath(os.path.join(baseDir, 'fanart.png')) - - settings = xbmcaddon.Addon(id='plugin.audio.groove') - songsearchlimit = settings.getSetting('songsearchlimit') - albumsearchlimit = settings.getSetting('albumsearchlimit') - artistsearchlimit = settings.getSetting('artistsearchlimit') - username = settings.getSetting('username') - password = settings.getSetting('password') - - def __init__( self ): - self._handle = int(sys.argv[1]) - - def categories(self): - - xbmc.log(self.username + ", limits: " + str(self.songsearchlimit) + ", " + str(self.albumsearchlimit) + ", " + str(self.artistsearchlimit)) - - userid = self._get_login() - - # Setup - groovesharkApi.setRemoveDuplicates(True) - xbmcplugin.setPluginFanart(int(sys.argv[1]), self.fanImg) - if os.path.isdir(thumbDir) == False: - os.makedirs(thumbDir) - - self._add_dir('Search songs', '', MODE_SEARCH_SONGS, self.songImg, 0) - self._add_dir('Search albums', '', MODE_SEARCH_ALBUMS, self.albumImg, 0) - self._add_dir('Search artists', '', MODE_SEARCH_ARTISTS, self.artistImg, 0) - self._add_dir('Popular', '', MODE_POPULAR, self.popularImg, 0) - if (userid != 0): - self._add_dir('Favorites', '', MODE_FAVORITES, self.favoritesImg, 0) - self._add_dir('Playlists', '', MODE_PLAYLISTS, self.playlistImg, 0) - - def searchSongs(self): - query = self._get_keyboard(default="", heading="Search songs") - if (query): - songs = groovesharkApi.searchSongs(query, limit = self.songsearchlimit) - if (len(songs) > 0): - self._add_songs_directory(songs) - else: - dialog = xbmcgui.Dialog() - dialog.ok('Grooveshark', 'No matching songs.') - self.categories() - - def searchAlbums(self): - query = self._get_keyboard(default="", heading="Search albums") - if (query): - albums = groovesharkApi.searchAlbums(query, limit = self.albumsearchlimit) - if (len(albums) > 0): - self._add_albums_directory(albums) - else: - dialog = xbmcgui.Dialog() - dialog.ok('Grooveshark', 'No matching albums.') - self.categories() - - def searchArtists(self): - query = self._get_keyboard(default="", heading="Search artists") - if (query): - artists = groovesharkApi.searchArtists(query, limit = self.artistsearchlimit) - if (len(artists) > 0): - self._add_artists_directory(artists) - else: - dialog = xbmcgui.Dialog() - dialog.ok('Grooveshark', 'No matching artists.') - self.categories() - - def favorites(self): - favorites = self._get_favorites() - if (len(favorites) > 0): - self._add_songs_directory(favorites) - else: - dialog = xbmcgui.Dialog() - dialog.ok('Grooveshark', 'You have no favorites.') - self.categories() - - def popular(self): - popular = groovesharkApi.popularGetSongs(limit = self.songsearchlimit) - if (len(popular) > 0): - self._add_songs_directory(popular) - else: - dialog = xbmcgui.Dialog() - dialog.ok('Grooveshark', 'No popular songs.') - self.categories() - - def playlists(self): - userid = self._get_login() - if (userid != 0): - playlists = groovesharkApi.userGetPlaylists() - if (len(playlists) > 0): - self._add_playlists_directory(playlists) - else: - dialog = xbmcgui.Dialog() - dialog.ok('Grooveshark', 'You have no playlists.') - self.categories() - - def favorite(self, songid): - userid = self._get_login() - if (userid != 0): - xbmc.log("Favorite playSong: " + str(songid)) - groovesharkApi.favoriteSong(songID = songid) - os.remove(favoritesCache) - else: - dialog = xbmcgui.Dialog() - dialog.ok('Grooveshark', 'You must be logged in', 'to add favorites.') - - def unfavorite(self, songid): - userid = self._get_login() - if (userid != 0): - xbmc.log("Unfavorite playSong: " + str(songid)) - groovesharkApi.unfavoriteSong(songID = songid) - os.remove(favoritesCache) - else: - dialog = xbmcgui.Dialog() - dialog.ok('Grooveshark', 'You must be logged in', 'to remove favorites.') - - def frown(self, songid): - userid = self._get_login() - if (userid != 0): - xbmc.log("Frown playSong: " + str(songid)) - if groovesharkApi.radioFrown(songId = songid) != True: - xbmc.log("Unable to frown song " + str(songid)) - else: - dialog = xbmcgui.Dialog() - dialog.ok('Grooveshark', 'You must be logged in', 'to frown a song.') - - def similarSong(self, songid): - userid = self._get_login() - if (userid != 0): - xbmc.log("Add song: " + str(songid)) - if groovesharkApi.radioSong(songId = songid) != False and groovesharkApi.radioStartSongs() == True: - self.playNext() - else: - dialog = xbmcgui.Dialog() - dialog.ok('Grooveshark', 'Cannot start radio') - else: - dialog = xbmcgui.Dialog() - dialog.ok('Grooveshark', 'You must be logged in', 'to update radio song.') - - def similarArtist(self, artistId): - userid = self._get_login() - if (userid != 0): - xbmc.log("Add radio artist: " + str(artistId)) - if groovesharkApi.radioArtist(artistId = artistId) != False and groovesharkApi.radioStartArtists() == True: - self.playNext() - else: - dialog = xbmcgui.Dialog() - dialog.ok('Grooveshark', 'Cannot start radio') - else: - dialog = xbmcgui.Dialog() - dialog.ok('Grooveshark', 'You must be logged in', 'to update radio artists.') - - def album(self,albumid): - album = groovesharkApi.albumGetSongs(albumId = albumid, limit = self.songsearchlimit) - self._add_songs_directory(album) - - def artist(self, artistid): - albums = groovesharkApi.artistGetAlbums(artistId = artistid, limit = self.albumsearchlimit) - self._add_albums_directory(albums) - - def playlist(self, playlistid): - userid = self._get_login() - if (userid != 0): - songs = groovesharkApi.playlistGetSongs(playlistId = playlistid, limit = self.songsearchlimit) - self._add_songs_directory(songs) - else: - dialog = xbmcgui.Dialog() - dialog.ok('Grooveshark', 'You must be logged in', 'to get playlists.') - - def playSong(self, item): - url = item.getProperty('url') - xbmc.log("Playing: " + url) - xbmcplugin.setResolvedUrl(handle=int(sys.argv[1]), succeeded=True, listitem=item) - - def playNext(self): - item = self._get_song_item(groovesharkApi.radioNextSong()[0]) - self.playSong(item) - - def songItem(self, id, name, album, artist, duration, thumb, image): - url = groovesharkApi.getStreamURL(id) - # Only try to get the image - if image != "": - songImg = self._get_icon(image, 'song-' + str(id) + "-image") - songThm = songImg - else: - songThm = self._get_icon(thumb, 'song-' + str(id) + "-thumb") - songImg = songThm - item = xbmcgui.ListItem(label = artist + " - " + album + " - " + name, path=url, thumbnailImage=songThm, iconImage=songImg) - item.setInfo( type="music", infoLabels={ "title": name, "duration": duration, "album": album, "artist": artist} ) - item.setProperty('mimetype', 'audio/mpeg') - item.setProperty("IsPlayable", "true") - item.setProperty('url', url) - item.setProperty('thumb', songThm) - item.setProperty('image', songImg) - - return item - - def _get_favorites(self): - favorites = [] - # if the cache does not exist or is older than x hours then reload - if (os.path.isfile(favoritesCache) == False) or (time.time() - os.path.getmtime(favoritesCache) > 3*60*60): - xbmc.log("Refresh favorites cache") - userid = self._get_login() - if (userid != 0): - favorites = groovesharkApi.userGetFavoriteSongs(userid) - f = open(favoritesCache, 'wb') - pickle.dump(favorites, f, protocol=pickle.HIGHEST_PROTOCOL) - f.close() - xbmc.log("Refreshed favorites cache") - # if not old then read from cache - elif os.path.isfile(favoritesCache): - xbmc.log("Existing favorites cache") - f = open(favoritesCache, 'rb') - favorites = pickle.load(f) - f.close() - - return favorites - - def _get_keyboard(self, default="", heading="", hidden=False): - kb = xbmc.Keyboard(default, heading, hidden) - kb.doModal() - if (kb.isConfirmed()): - return unicode(kb.getText(), "utf-8") - return '' - - def _get_login(self): - if (self.username == "" or self.password == ""): - dialog = xbmcgui.Dialog() - dialog.ok('Grooveshark', 'Unable to login.', 'Check username and password in settings.') - return 0 - else: - if groovesharkApi.loggedInStatus() == 1: - groovesharkApi.logout() - userid = groovesharkApi.loginExt(self.username, self.password) - if (userid != 0): - xbmc.log("Logged in") - return userid - else: - dialog = xbmcgui.Dialog() - dialog.ok('Grooveshark', 'Unable to login.', 'Check username and password in settings.') - return 0 - - def _get_song_item(self, song): - name = song[0] - id = song[1] - duration = song[2] - album = song[3] - artist = song[6] - thumb = song[8] - image = song[9] - return self.songItem(id, name, album, artist, duration, thumb, image) - - # File download - def _get_icon(self, url, id): - localThumb = os.path.join(xbmc.translatePath(os.path.join(thumbDir, str(id)))) + '.tbn' - try: - if os.path.isfile(localThumb) == False: - xbmc.log('Downloading ' + url + ' to ' + localThumb) - loc = urllib.URLopener() - loc.retrieve(url, localThumb) - except: - xbmc.log('URL download failed of ' + url + ' to ' + localThumb) - return(self.defImg) - - return os.path.join(os.path.join(thumbDir, str(id))) + '.tbn' - - def _add_songs_directory(self, songs): - n = len(songs) - xbmc.log("Found " + str(n) + " songs...") - i = 0 - while i < n: - song = songs[i] - item = self._get_song_item(song) - songurl = item.getProperty('url') - songthumb = item.getProperty('thumb') - songimage = item.getProperty('image') - songname = song[0] - songid = song[1] - songduration = song[2] - songalbum = song[3] - songartist = song[6] - songartistid = song[7] - u=sys.argv[0]+"?url="+urllib.quote_plus(songurl) \ - +"&mode="+str(MODE_SONG)+"&name="+urllib.quote_plus(songname)+"&id=" \ - +str(songid) \ - +"&album="+urllib.quote_plus(songalbum) \ - +"&artist="+urllib.quote_plus(songartist) \ - +"&duration="+str(songduration) \ - +"&thumb="+urllib.quote_plus(songthumb) \ - +"&image="+urllib.quote_plus(songimage) - fav=sys.argv[0]+"?url="+urllib.quote_plus(songurl)+"&mode="+str(MODE_FAVORITE)+"&name="+urllib.quote_plus(songname)+"&id="+str(songid) - unfav=sys.argv[0]+"?url="+urllib.quote_plus(songurl)+"&mode="+str(MODE_UNFAVORITE)+"&name="+urllib.quote_plus(songname)+"&id="+str(songid) - #similarArtist=sys.argv[0]+"?mode="+str(MODE_SIMILAR_ARTIST)+"&id="+str(songartistid) - #similarSong=sys.argv[0]+"?mode="+str(MODE_SIMILAR_SONG)+"&id="+str(songid) - #frown=sys.argv[0]+"?mode="+str(MODE_FROWN)+"&id="+str(songid) - menuItems = [] - menuItems.append(("Grooveshark Favorite", "XBMC.RunPlugin("+fav+")")) - menuItems.append(("Not Grooveshark Favorite", "XBMC.RunPlugin("+unfav+")")) - #menuItems.append(("Listen to similar artist", "XBMC.RunPlugin("+similarArtist+")")) - #menuItems.append(("Listen to similar song", "XBMC.RunPlugin("+similarSong+")")) - #menuItems.append(("No thanks!", "XBMC.RunPlugin("+frown+")")) - item.addContextMenuItems(menuItems, replaceItems=False) - xbmcplugin.addDirectoryItem(handle=int(sys.argv[1]),url=u,listitem=item,isFolder=False) - i = i + 1 - xbmcplugin.setContent(self._handle, 'songs') - - def _add_albums_directory(self, albums): - xbmc.log("Found " + str(len(albums)) + " albums...") - i = 0 - while i < len(albums): - album = albums[i] - albumArtistName = album[0] - albumName = album[2] - albumID = album[3] - albumImage = self._get_icon(album[4], 'album-' + str(albumID)) - self._add_dir(albumName + " - " + albumArtistName, '', MODE_ALBUM, albumImage, albumID) - i = i + 1 - xbmcplugin.setContent(self._handle, 'albums') - xbmcplugin.addSortMethod(self._handle, xbmcplugin.SORT_METHOD_ALBUM_IGNORE_THE) - - def _add_artists_directory(self, artists): - xbmc.log("Found " + str(len(artists)) + " artists...") - i = 0 - while i < len(artists): - artist = artists[i] - artistName = artist[0] - artistID = artist[1] - self._add_dir(artistName, '', MODE_ARTIST, self.artistImg, artistID) - i = i + 1 - xbmcplugin.setContent(self._handle, 'artists') - xbmcplugin.addSortMethod(self._handle, xbmcplugin.SORT_METHOD_ARTIST_IGNORE_THE) - - def _add_playlists_directory(self, playlists): - xbmc.log("Found " + str(len(playlists)) + " playlists...") - i = 0 - while i < len(playlists): - playlist = playlists[i] - playlistName = playlist[0] - playlistID = playlist[1] - self._add_dir(playlistName, '', MODE_PLAYLIST, self.playlistImg, playlistID) - i = i + 1 - xbmcplugin.setContent(self._handle, 'files') - xbmcplugin.addSortMethod(self._handle, xbmcplugin.SORT_METHOD_PLAYLIST_ORDER) - - def _add_dir(self, name, url, mode, iconimage, id): - u=sys.argv[0]+"?url="+urllib.quote_plus(url)+"&mode="+str(mode)+"&name="+urllib.quote_plus(name)+"&id="+str(id) - dir=xbmcgui.ListItem(name, iconImage=iconimage, thumbnailImage=iconimage) - dir.setInfo( type="Music", infoLabels={ "title": name } ) - # Codes from http://xbmc-scripting.googlecode.com/svn/trunk/Script%20Templates/common/gui/codes.py - menuItems = [] - menuItems.append(("Select", "XBMC.executebuiltin(Action(7))")) - dir.addContextMenuItems(menuItems, replaceItems=True) - return xbmcplugin.addDirectoryItem(handle=int(sys.argv[1]),url=u,listitem=dir,isFolder=True) - - -def get_params(): - param=[] - paramstring=sys.argv[2] - if len(paramstring)>=2: - params=sys.argv[2] - cleanedparams=params.replace('?','') - if (params[len(params)-1]=='/'): - params=params[0:len(params)-2] - pairsofparams=cleanedparams.split('&') - param={} - for i in range(len(pairsofparams)): - splitparams={} - splitparams=pairsofparams[i].split('=') - if (len(splitparams))==2: - param[splitparams[0]]=splitparams[1] - print param - return param - -grooveshark = Groveshark(); - -params=get_params() -url=None -name=None -mode=None -id=None - -try: url=urllib.unquote_plus(params["url"]) -except: pass -try: name=urllib.unquote_plus(params["name"]) -except: pass -try: mode=int(params["mode"]) -except: pass -try: id=int(params["id"]) -except: pass - -if (id > 0): - lastID = id - -if mode==None: - grooveshark.categories() - -elif mode==MODE_SEARCH_SONGS: - grooveshark.searchSongs() - -elif mode==MODE_SEARCH_ALBUMS: - grooveshark.searchAlbums() - -elif mode==MODE_SEARCH_ARTISTS: - grooveshark.searchArtists() - -elif mode==MODE_POPULAR: - grooveshark.popular() - -elif mode==MODE_PLAYLISTS: - grooveshark.playlists() - -elif mode==MODE_FAVORITES: - grooveshark.favorites() - -elif mode==MODE_SONG: - try: name=urllib.unquote_plus(params["name"]) - except: pass - try: album=urllib.unquote_plus(params["album"]) - except: pass - try: artist=urllib.unquote_plus(params["artist"]) - except: pass - try: duration=int(params["duration"]) - except: pass - try: thumb=urllib.unquote_plus(params["thumb"]) - except: pass - try: image=urllib.unquote_plus(params["image"]) - except: pass - song = grooveshark.songItem(id, name, album, artist, duration, thumb, image) - grooveshark.playSong(song) - -elif mode==MODE_ARTIST: - grooveshark.artist(lastID) - -elif mode==MODE_ALBUM: - grooveshark.album(lastID) - -elif mode==MODE_PLAYLIST: - grooveshark.playlist(lastID) - -elif mode==MODE_FAVORITE: - grooveshark.favorite(lastID) - -elif mode==MODE_UNFAVORITE: - grooveshark.unfavorite(lastID) - -elif mode==MODE_SIMILAR_ARTIST: - grooveshark.similarArtist(lastID) - -elif mode==MODE_SIMILAR_SONG: - grooveshark.similarSong(lastID) - -elif mode==MODE_FROWN: - grooveshark.frown(lastID) - -if (mode < MODE_SONG): - xbmcplugin.endOfDirectory(int(sys.argv[1])) +# Copyright 2011 Stephen Denham + +# This file is part of xbmc-groove. +# +# xbmc-groove is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# xbmc-groove is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with xbmc-groove. If not, see . + + +import urllib, urllib2, sys, os, shutil, re, pickle, time, traceback, xbmcaddon, xbmcplugin, xbmcgui, xbmc + +__addon__ = xbmcaddon.Addon('plugin.audio.groove') +__addonname__ = __addon__.getAddonInfo('name') +__cwd__ = __addon__.getAddonInfo('path') +__author__ = __addon__.getAddonInfo('author') +__version__ = __addon__.getAddonInfo('version') +__language__ = __addon__.getLocalizedString +__debugging__ = __addon__.getSetting('debug') + +# Directory listings must be < MODE_SONG +MODE_SEARCH_SONGS = 1 +MODE_SEARCH_ALBUMS = 2 +MODE_SEARCH_ARTISTS = 3 +MODE_SEARCH_ARTISTS_ALBUMS = 4 +MODE_SEARCH_PLAYLISTS = 5 +MODE_ARTIST_POPULAR = 6 +MODE_POPULAR_SONGS = 7 +MODE_FAVORITES = 8 +MODE_PLAYLISTS = 9 +MODE_ALBUM = 10 +MODE_ARTIST = 11 +MODE_PLAYLIST = 12 +MODE_SONG_PAGE = 13 +MODE_SIMILAR_ARTISTS = 14 +MODE_ARTIST_POPULAR_FROM_ALBUMS = 15 +MODE_SONG = 150 + +MODE_FAVORITE = 160 +MODE_UNFAVORITE = 170 +MODE_MAKE_PLAYLIST = 180 +MODE_REMOVE_PLAYLIST = 190 +MODE_RENAME_PLAYLIST = 200 +MODE_REMOVE_PLAYLIST_SONG = 210 +MODE_ADD_PLAYLIST_SONG = 220 + +ACTION_MOVE_LEFT = 1 +ACTION_MOVE_UP = 3 +ACTION_MOVE_DOWN = 4 +ACTION_PAGE_UP = 5 +ACTION_PAGE_DOWN = 6 +ACTION_SELECT_ITEM = 7 +ACTION_PREVIOUS_MENU = 10 + +# Formats for track labels +ARTIST_ALBUM_NAME_LABEL = 0 +NAME_ALBUM_ARTIST_LABEL = 1 + +# Stream marking time (seconds) +STREAM_MARKING_TIME = 30 + +# Timeout +STREAM_TIMEOUT = 30 + +songMarkTime = 0 +player = xbmc.Player() +playTimer = None + +baseDir = __cwd__ +resDir = xbmc.translatePath(os.path.join(baseDir, 'resources')) +libDir = xbmc.translatePath(os.path.join(resDir, 'lib')) +imgDir = xbmc.translatePath(os.path.join(resDir, 'img')) +cacheDir = os.path.join(xbmc.translatePath('special://masterprofile/addon_data/'), os.path.basename(baseDir)) +tempDir = xbmc.translatePath('special://temp') +thumbDirName = 'thumb' +thumbDir = os.path.join(xbmc.translatePath('special://masterprofile/addon_data/'), os.path.basename(baseDir), thumbDirName) + +baseModeUrl = 'plugin://plugin.audio.groove/' +playlistUrl = baseModeUrl + '?mode=' + str(MODE_PLAYLIST) +playlistsUrl = baseModeUrl + '?mode=' + str(MODE_PLAYLISTS) +favoritesUrl = baseModeUrl + '?mode=' + str(MODE_FAVORITES) + +searchArtistsAlbumsName = __language__(30006) + +thumbDef = os.path.join(imgDir, 'default.tbn') +listBackground = os.path.join(imgDir, 'listbackground.png') + +sys.path.append (libDir) +from GroovesharkAPI import GrooveAPI +from threading import Event, Thread + +if __debugging__ == 'true': + __debugging__ = True +else: + __debugging__ = False + +try: + groovesharkApi = GrooveAPI(__debugging__, tempDir) + if groovesharkApi.pingService() != True: + raise StandardError(__language__(30007)) +except: + print "Exception on initialisation" + print '-'*60 + traceback.print_exc() + print '-'*60 + dialog = xbmcgui.Dialog(__language__(30008),__language__(30009),__language__(30010)) + dialog.ok(__language__(30008),__language__(30009)) + sys.exit(-1) + +# Mark song as playing or played +def markSong(songid, duration, streamKey, streamServerID): + global songMarkTime + global playTimer + global player + if player.isPlayingAudio(): + tNow = player.getTime() + if tNow >= STREAM_MARKING_TIME and songMarkTime == 0: + groovesharkApi.markStreamKeyOver30Secs(streamKey, streamServerID) + songMarkTime = tNow + elif duration > tNow and duration - tNow < 2 and songMarkTime >= STREAM_MARKING_TIME: + playTimer.cancel() + songMarkTime = 0 + groovesharkApi.markSongComplete(songid, streamKey, streamServerID) + else: + playTimer.cancel() + songMarkTime = 0 + +class _Info: + def __init__( self, *args, **kwargs ): + self.__dict__.update( kwargs ) + +# Window dialog to select a grooveshark playlist +class GroovesharkPlaylistSelect(xbmcgui.WindowDialog): + + def __init__(self, items=[]): + gap = int(self.getHeight()/100) + w = int(self.getWidth()*0.5) + h = self.getHeight()-30*gap + rw = self.getWidth() + rh = self.getHeight() + x = rw/2 - w/2 + y = rh/2 -h/2 + + self.imgBg = xbmcgui.ControlImage(x+gap, 5*gap+y, w-2*gap, h-5*gap, listBackground) + self.addControl(self.imgBg) + + self.playlistControl = xbmcgui.ControlList(2*gap+x, y+3*gap+30, w-4*gap, h-10*gap, textColor='0xFFFFFFFF', selectedColor='0xFFFF4242') + self.playlistControl.setItemHeight(50) + self.addControl(self.playlistControl) + + self.lastPos = 0 + self.isSelecting = False + self.selected = -1 + listitems = [] + for playlist in items: + listitems.append(xbmcgui.ListItem(playlist[0])) + listitems.append(xbmcgui.ListItem(__language__(30011))) + self.playlistControl.addItems(listitems) + self.setFocus(self.playlistControl) + self.playlistControl.selectItem(0) + item = self.playlistControl.getListItem(self.lastPos) + item.select(True) + + # Highlight selected item + def setHighlight(self): + if self.isSelecting: + return + else: + self.isSelecting = True + + pos = self.playlistControl.getSelectedPosition() + if pos >= 0: + item = self.playlistControl.getListItem(self.lastPos) + item.select(False) + item = self.playlistControl.getListItem(pos) + item.select(True) + self.lastPos = pos + self.isSelecting = False + + # Control - select + def onControl(self, control): + if control == self.playlistControl: + self.selected = self.playlistControl.getSelectedPosition() + self.close() + + # Action - close or up/down + def onAction(self, action): + if action == ACTION_PREVIOUS_MENU: + self.selected = -1 + self.close() + elif action == ACTION_MOVE_UP or action == ACTION_MOVE_DOWN or action == ACTION_PAGE_UP or action == ACTION_PAGE_DOWN == 6: + self.setFocus(self.playlistControl) + self.setHighlight() + + +class PlayTimer(Thread): + # interval -- floating point number specifying the number of seconds to wait before executing function + # function -- the function (or callable object) to be executed + + # iterations -- integer specifying the number of iterations to perform + # args -- list of positional arguments passed to function + # kwargs -- dictionary of keyword arguments passed to function + + def __init__(self, interval, function, iterations=0, args=[], kwargs={}): + Thread.__init__(self) + self.interval = interval + self.function = function + self.iterations = iterations + self.args = args + self.kwargs = kwargs + self.finished = Event() + + def run(self): + count = 0 + while not self.finished.isSet() and (self.iterations <= 0 or count < self.iterations): + self.finished.wait(self.interval) + if not self.finished.isSet(): + self.function(*self.args, **self.kwargs) + count += 1 + + def cancel(self): + self.finished.set() + + def setIterations(self, iterations): + self.iterations = iterations + + + def getTime(self): + return self.iterations * self.interval + + +class Grooveshark: + + albumImg = xbmc.translatePath(os.path.join(imgDir, 'album.png')) + artistImg = xbmc.translatePath(os.path.join(imgDir, 'artist.png')) + artistsAlbumsImg = xbmc.translatePath(os.path.join(imgDir, 'artistsalbums.png')) + favoritesImg = xbmc.translatePath(os.path.join(imgDir, 'favorites.png')) + playlistImg = xbmc.translatePath(os.path.join(imgDir, 'playlist.png')) + usersplaylistsImg = xbmc.translatePath(os.path.join(imgDir, 'usersplaylists.png')) + popularSongsImg = xbmc.translatePath(os.path.join(imgDir, 'popularSongs.png')) + popularSongsArtistImg = xbmc.translatePath(os.path.join(imgDir, 'popularSongsArtist.png')) + songImg = xbmc.translatePath(os.path.join(imgDir, 'song.png')) + defImg = xbmc.translatePath(os.path.join(imgDir, 'default.tbn')) + fanImg = xbmc.translatePath(os.path.join(baseDir, 'fanart.jpg')) + + settings = xbmcaddon.Addon(id='plugin.audio.groove') + songsearchlimit = int(settings.getSetting('songsearchlimit')) + albumsearchlimit = int(settings.getSetting('albumsearchlimit')) + artistsearchlimit = int(settings.getSetting('artistsearchlimit')) + songspagelimit = int(settings.getSetting('songspagelimit')) + username = settings.getSetting('username') + password = settings.getSetting('password') + + userid = 0 + + def __init__( self ): + self._handle = int(sys.argv[1]) + if os.path.isdir(cacheDir) == False: + os.makedirs(cacheDir) + if __debugging__ : + xbmc.log(__language__(30012) + " " + cacheDir) + artDir = xbmc.translatePath(thumbDir) + if os.path.isdir(artDir) == False: + os.makedirs(artDir) + if __debugging__ : + xbmc.log(__language__(30012) + " " + artDir) + + # Top-level menu + def categories(self): + + self.userid = self._get_login() + + # Setup + xbmcplugin.setPluginFanart(int(sys.argv[1]), self.fanImg) + + self._add_dir(__language__(30013), '', MODE_SEARCH_SONGS, self.songImg, 0) + self._add_dir(__language__(30014), '', MODE_SEARCH_ALBUMS, self.albumImg, 0) + self._add_dir(__language__(30015), '', MODE_SEARCH_ARTISTS, self.artistImg, 0) + self._add_dir(searchArtistsAlbumsName, '', MODE_SEARCH_ARTISTS_ALBUMS, self.artistsAlbumsImg, 0) + # Not supported by key + #self._add_dir("Search for user's playlists...", '', MODE_SEARCH_PLAYLISTS, self.usersplaylistsImg, 0) + self._add_dir(__language__(30016), '', MODE_ARTIST_POPULAR, self.popularSongsArtistImg, 0) + self._add_dir(__language__(30017), '', MODE_POPULAR_SONGS, self.popularSongsImg, 0) + if (self.userid != 0): + self._add_dir(__language__(30018), '', MODE_FAVORITES, self.favoritesImg, 0) + self._add_dir(__language__(30019), '', MODE_PLAYLISTS, self.playlistImg, 0) + + # Search for songs + def searchSongs(self): + query = self._get_keyboard(default="", heading=__language__(30020)) + if (query != ''): + songs = groovesharkApi.getSongSearchResults(query, limit = self.songsearchlimit) + if (len(songs) > 0): + self._add_songs_directory(songs) + else: + dialog = xbmcgui.Dialog() + dialog.ok(__language__(30008), __language__(30021)) + self.categories() + else: + self.categories() + + # Search for albums + def searchAlbums(self): + query = self._get_keyboard(default="", heading=__language__(30022)) + if (query != ''): + albums = groovesharkApi.getAlbumSearchResults(query, limit = self.albumsearchlimit) + if (len(albums) > 0): + self._add_albums_directory(albums) + else: + dialog = xbmcgui.Dialog() + dialog.ok(__language__(30008), __language__(30023)) + self.categories() + else: + self.categories() + + # Search for artists + def searchArtists(self): + query = self._get_keyboard(default="", heading=__language__(30024)) + if (query != ''): + artists = groovesharkApi.getArtistSearchResults(query, limit = self.artistsearchlimit) + if (len(artists) > 0): + self._add_artists_directory(artists) + else: + dialog = xbmcgui.Dialog() + dialog.ok(__language__(30008), __language__(30025)) + self.categories() + else: + self.categories() + + # Search for playlists + def searchPlaylists(self): + query = self._get_keyboard(default="", heading=__language__(30026)) + if (query != ''): + playlists = groovesharkApi.getUserPlaylistsByUsername(query) + if (len(playlists) > 0): + self._add_playlists_directory(playlists) + else: + dialog = xbmcgui.Dialog() + dialog.ok(__language__(30008), __language__(30027)) + self.categories() + else: + self.categories() + + # Search for artists albums + def searchArtistsAlbums(self, artistName = None): + if artistName == None or artistName == searchArtistsAlbumsName: + query = self._get_keyboard(default="", heading=__language__(30028)) + else: + query = artistName + if (query != ''): + artists = groovesharkApi.getArtistSearchResults(query, limit = self.artistsearchlimit) + if (len(artists) > 0): + # check for artist name match, first result is sometimes not the closest lexical match + artist = next ((a for a in artists if a[0].lower() == query.lower()), artists[0]) + artistID = artist[1] + if __debugging__ : + xbmc.log("Found " + artist[0] + "...") + albums = groovesharkApi.getArtistAlbums(artistID, self.albumsearchlimit) + if (len(albums) > 0): + self._add_dir(__language__(30016), '', MODE_ARTIST_POPULAR_FROM_ALBUMS, self.popularSongsArtistImg, artistID) + self._add_albums_directory(albums, artistID) + else: + dialog = xbmcgui.Dialog() + dialog.ok(__language__(30008), __language__(30029)) + self.categories() + else: + dialog = xbmcgui.Dialog() + dialog.ok(__language__(30008), __language__(30030)) + self.categories() + else: + self.categories() + + # Get my favorites + def favorites(self): + userid = self._get_login() + if (userid != 0): + favorites = groovesharkApi.getUserFavoriteSongs() + if (len(favorites) > 0): + self._add_songs_directory(favorites, isFavorites=True) + else: + dialog = xbmcgui.Dialog() + dialog.ok(__language__(30008), __language__(30031)) + self.categories() + + # Get popular songs + def popularSongs(self): + popular = groovesharkApi.getPopularSongsToday(limit = self.songsearchlimit) + if (len(popular) > 0): + self._add_songs_directory(popular) + else: + dialog = xbmcgui.Dialog() + dialog.ok(__language__(30008), __language__(30032)) + self.categories() + + # Get my playlists + def playlists(self): + userid = self._get_login() + if (userid != 0): + playlists = groovesharkApi.getUserPlaylists() + if (len(playlists) > 0): + self._add_playlists_directory(playlists) + else: + dialog = xbmcgui.Dialog() + dialog.ok(__language__(30008), __language__(30033)) + self.categories() + else: + dialog = xbmcgui.Dialog() + dialog.ok(__language__(30008), __language__(30034), __language__(30035)) + + # Make songs a favorite + def favorite(self, songid): + userid = self._get_login() + if (userid != 0): + if __debugging__ : + xbmc.log("Favorite song: " + str(songid)) + groovesharkApi.addUserFavoriteSong(songID = songid) + xbmc.executebuiltin('XBMC.Notification(' + __language__(30008) + ', ' + __language__(30036) + ', 1000, ' + thumbDef + ')') + else: + dialog = xbmcgui.Dialog() + dialog.ok(__language__(30008), __language__(30034), __language__(30037)) + + # Remove song from favorites + def unfavorite(self, songid, prevMode=0): + userid = self._get_login() + if (userid != 0): + if __debugging__ : + xbmc.log("Unfavorite song: " + str(songid) + ', previous mode was ' + str(prevMode)) + groovesharkApi.removeUserFavoriteSongs(songIDs = songid) + xbmc.executebuiltin('XBMC.Notification(' + __language__(30008) + ', ' + __language__(30038) + ', 1000, ' + thumbDef + ')') + # Refresh to remove item from directory + if (int(prevMode) == MODE_FAVORITES): + xbmc.executebuiltin("Container.Refresh(" + favoritesUrl + ")") + else: + dialog = xbmcgui.Dialog() + dialog.ok(__language__(30008), __language__(30034), __language__(30039)) + + + # Show selected album + def album(self, albumid): + album = groovesharkApi.getAlbumSongs(albumid, limit = self.songsearchlimit) + self._add_songs_directory(album, trackLabelFormat=NAME_ALBUM_ARTIST_LABEL) + + # Show selected artist + def artist(self, artistid): + albums = groovesharkApi.getArtistAlbums(artistid, limit = self.albumsearchlimit) + if (len(albums) > 0): + self._add_dir(__language__(30016), '', MODE_ARTIST_POPULAR_FROM_ALBUMS, self.popularSongsArtistImg, artistid) + self._add_albums_directory(albums, artistid, True) + else: + # There are likely songs for the artist even when no verified albums are found + self.artistPopularSongs(artistid) + + # Show selected playlist + def playlist(self, playlistid, playlistname): + userid = self._get_login() + if (userid != 0): + songs = groovesharkApi.getPlaylistSongs(playlistid) + self._add_songs_directory(songs, trackLabelFormat=NAME_ALBUM_ARTIST_LABEL, playlistid=playlistid, playlistname=playlistname) + else: + dialog = xbmcgui.Dialog() + dialog.ok(__language__(30008), __language__(30034), __language__(30040)) + + # Search for artist show popular songs of the artist + def searchArtistPopularSongs(self): + query = self._get_keyboard(default="", heading=__language__(30041)) + if (query != ''): + artists = groovesharkApi.getArtistSearchResults(query, limit = self.artistsearchlimit) + if (len(artists) > 0): + # check for exact artist name match, sometimes a more + # popular artist is returned first (e.g. 'Angel Dust' + # gets you 'Faith No More' because of their popular + # album 'Angel Dust') + artist = next ((a for a in artists if a[0].lower() == query.lower()), artists[0]) + artistID = artist[1] + if __debugging__ : + xbmc.log("Found " + artist[0] + "...") + self.artistPopularSongs (artistID) + else: + dialog = xbmcgui.Dialog() + dialog.ok(__language__(30008), __language__(30043)) + self.categories() + else: + self.categories() + + # Show popular songs of the artist + def artistPopularSongs(self, artistID): + songs = groovesharkApi.getArtistPopularSongs(artistID, limit = self.songsearchlimit) + if (len(songs) > 0): + self._add_songs_directory(songs, trackLabelFormat=NAME_ALBUM_ARTIST_LABEL) + else: + dialog = xbmcgui.Dialog() + dialog.ok(__language__(30008), __language__(30042)) + self.categories() + + # Play a song + def playSong(self, item): + global playTimer + global player + if item != None: + # Get stream as it could have expired + item.select(True) + url = '' + songid = item.getProperty('songid') + stream = groovesharkApi.getSubscriberStreamKey(songid) + if stream != False: + url = stream['url'] + key = stream['StreamKey'] + server = stream['StreamServerID'] + duration = int(self._setDuration(stream['uSecs'])) + stream = [songid, duration, url, key, server] + self._setSongStream(stream) + if url != '': + item.setPath(url) + xbmcplugin.setResolvedUrl(handle=int(sys.argv[1]), succeeded=True, listitem=item) + if __debugging__ : + xbmc.log("Grooveshark playing: " + url) + # Wait for play then start timer + seconds = 0 + while seconds < STREAM_TIMEOUT: + try: + if player.isPlayingAudio() == True: + if playTimer != None: + playTimer.cancel() + songMarkTime = 0 + playTimer = PlayTimer(1, markSong, self._setDuration(duration), [songid, duration, key, server]) + playTimer.start() + break + except: pass + time.sleep(1) + seconds = seconds + 1 + else: + xbmc.log("No song URL") + else: + xbmc.log("No song stream") + else: + xbmc.executebuiltin('XBMC.Notification(' + __language__(30008) + ', ' + __language__(30044) + ', 1000, ' + thumbDef + ')') + + # Make a song directory item + def songItem(self, songid, name, album, artist, coverart, trackLabelFormat=ARTIST_ALBUM_NAME_LABEL, tracknumber=1): + + stream = self._getSongStream(songid) + if stream != None: + duration = stream[1] + url = stream[2] + key = stream[3] + server = stream[4] + songImg = self._get_icon(coverart, 'song-' + str(songid) + "-image") + if int(trackLabelFormat) == NAME_ALBUM_ARTIST_LABEL: + trackLabel = name + " - " + album + " - " + artist + else: + trackLabel = artist + " - " + album + " - " + name + item = xbmcgui.ListItem(label = trackLabel, thumbnailImage=songImg, iconImage=songImg) + item.setPath(url) + item.setInfo( type="music", infoLabels={ "title": name, "album": album, "artist": artist, "duration": duration, "tracknumber" : tracknumber} ) + item.setProperty('mimetype', 'audio/mpeg') + item.setProperty("IsPlayable", "true") + item.setProperty('songid', str(songid)) + item.setProperty('coverart', songImg) + item.setProperty('title', name) + item.setProperty('album', album) + item.setProperty('artist', artist) + item.setProperty('duration', str(duration)) + item.setProperty('key', str(key)) + item.setProperty('server', str(server)) + item.setProperty('fanart_image', self.fanImg) + return item + else: + xbmc.log("No access to song URL") + return None + + # Next page of songs + def songPage(self, offset, trackLabelFormat, playlistid = 0, playlistname = ''): + self._add_songs_directory([], trackLabelFormat, offset, playlistid = playlistid, playlistname = playlistname) + + # Make a playlist from an album + def makePlaylist(self, albumid, name): + userid = self._get_login() + if (userid != 0): + re.split(' - ',name,1) + nameTokens = re.split(' - ',name,1) # suggested name + name = self._get_keyboard(default=nameTokens[0], heading=__language__(30045)) + if name != '': + album = groovesharkApi.getAlbumSongs(albumid, limit = self.songsearchlimit) + songids = [] + for song in album: + songids.append(song[1]) + if groovesharkApi.createPlaylist(name, songids) == 0: + dialog = xbmcgui.Dialog() + dialog.ok(__language__(30008), __language__(30046), name) + else: + xbmc.executebuiltin('XBMC.Notification(' + __language__(30008) + ',' + __language__(30047)+ ', 1000, ' + thumbDef + ')') + else: + dialog = xbmcgui.Dialog() + dialog.ok(__language__(30008), __language__(30034), __language__(30048)) + + # Rename a playlist + def renamePlaylist(self, playlistid, name): + userid = self._get_login() + if (userid != 0): + newname = self._get_keyboard(default=name, heading=__language__(30049)) + if newname == '': + return + elif groovesharkApi.playlistRename(playlistid, newname) == 0: + dialog = xbmcgui.Dialog() + dialog.ok(__language__(30008), __language__(30050), name) + else: + # Refresh to show new item name + xbmc.executebuiltin("Container.Refresh") + else: + dialog = xbmcgui.Dialog() + dialog.ok(__language__(30008), __language__(30034), __language__(30051)) + + # Remove a playlist + def removePlaylist(self, playlistid, name): + dialog = xbmcgui.Dialog() + if dialog.yesno(__language__(30008), name, __language__(30052)) == True: + userid = self._get_login() + if (userid != 0): + if groovesharkApi.playlistDelete(playlistid) == 0: + dialog = xbmcgui.Dialog() + dialog.ok(__language__(30008), __language__(30053), name) + else: + # Refresh to remove item from directory + xbmc.executebuiltin("Container.Refresh(" + playlistsUrl + ")") + else: + dialog = xbmcgui.Dialog() + dialog.ok(__language__(30008), __language__(30034), __language__(30054)) + + # Add song to playlist + def addPlaylistSong(self, songid): + userid = self._get_login() + if (userid != 0): + playlists = groovesharkApi.getUserPlaylists() + if (len(playlists) > 0): + ret = 0 + # Select the playlist + playlistSelect = GroovesharkPlaylistSelect(items=playlists) + playlistSelect.setFocus(playlistSelect.playlistControl) + playlistSelect.doModal() + i = playlistSelect.selected + del playlistSelect + if i > -1: + # Add a new playlist + if i >= len(playlists): + name = self._get_keyboard(default='', heading=__language__(30055)) + if name != '': + songIds = [] + songIds.append(songid) + if groovesharkApi.createPlaylist(name, songIds) == 0: + dialog = xbmcgui.Dialog() + dialog.ok(__language__(30008), __language__(30056), name) + else: + xbmc.executebuiltin('XBMC.Notification(' + __language__(30008) + ',' + __language__(30057) + ', 1000, ' + thumbDef + ')') + # Existing playlist + else: + playlist = playlists[i] + playlistid = playlist[1] + if __debugging__ : + xbmc.log("Add song " + str(songid) + " to playlist " + str(playlistid)) + songIDs=[] + songs = groovesharkApi.getPlaylistSongs(playlistid) + for song in songs: + songIDs.append(song[1]) + songIDs.append(songid) + ret = groovesharkApi.setPlaylistSongs(playlistid, songIDs) + if ret == False: + dialog = xbmcgui.Dialog() + dialog.ok(__language__(30008), __language__(30058)) + else: + xbmc.executebuiltin('XBMC.Notification(' + __language__(30008) + ',' + __language__(30059) + ', 1000, ' + thumbDef + ')') + else: + dialog = xbmcgui.Dialog() + dialog.ok(__language__(30008), __language__(30060)) + self.categories() + else: + dialog = xbmcgui.Dialog() + dialog.ok(__language__(30008), __language__(30034), __language__(30061)) + + # Remove song from playlist + def removePlaylistSong(self, playlistid, playlistname, songid): + dialog = xbmcgui.Dialog() + if dialog.yesno(__language__(30008), __language__(30062), __language__(30063)) == True: + userid = self._get_login() + if (userid != 0): + songs = groovesharkApi.getPlaylistSongs(playlistID) + songIDs=[] + for song in songs: + if (song[1] != songid): + songIDs.append(song[1]) + ret = groovesharkApi.setPlaylistSongs(playlistID, songIDs) + if ret == False: + dialog = xbmcgui.Dialog() + dialog.ok(__language__(30008), __language__(30064), __language__(30065)) + else: + # Refresh to remove item from directory + xbmc.executebuiltin('XBMC.Notification(' + __language__(30008) + ',' + __language__(30066)+ ', 1000, ' + thumbDef + ')') + xbmc.executebuiltin("Container.Update(" + playlistUrl + "&id="+str(playlistid) + "&name=" + str(playlistname) + ")") + else: + dialog = xbmcgui.Dialog() + dialog.ok(__language__(30008), __language__(30034), __language__(30067)) + + # Find similar artists to searched artist + def similarArtists(self, artistId): + similar = groovesharkApi.getSimilarArtists(artistId, limit = self.artistsearchlimit) + if (len(similar) > 0): + self._add_artists_directory(similar) + else: + dialog = xbmcgui.Dialog() + dialog.ok(__language__(30008), __language__(30068)) + self.categories() + + # Get keyboard input + def _get_keyboard(self, default="", heading="", hidden=False): + kb = xbmc.Keyboard(default, heading, hidden) + kb.doModal() + if (kb.isConfirmed()): + return unicode(kb.getText(), "utf-8") + return '' + + # Login to grooveshark + def _get_login(self): + if (self.username == "" or self.password == ""): + dialog = xbmcgui.Dialog() + dialog.ok(__language__(30008), __language__(30069), __language__(30070), __language__(30082)) + return 0 + else: + uid = groovesharkApi.login(self.username, self.password) + if (uid != 0): + return uid + else: + dialog = xbmcgui.Dialog() + dialog.ok(__language__(30008), __language__(30069), __language__(30070), __language__(30082)) + return 0 + + # File download + def _get_icon(self, url, songid): + if url != 'None': + localThumb = os.path.join(xbmc.translatePath(os.path.join(thumbDir, str(songid)))) + '.tbn' + try: + if os.path.isfile(localThumb) == False: + headers = { 'User-Agent' : 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/32.0.1700.102 Chrome/32.0.1700.102 Safari/537.36' } + req = urllib2.Request(url, None, headers) + loc = urllib2.urlopen(req) + output = open(localThumb,'wb') + output.write(loc.read()) + output.close() + except: + shutil.copy2(thumbDef, localThumb) + return os.path.join(os.path.join(thumbDir, str(songid))) + '.tbn' + else: + return thumbDef + + # Add songs to directory + def _add_songs_directory(self, songs, trackLabelFormat=ARTIST_ALBUM_NAME_LABEL, offset=0, playlistid=0, playlistname='', isFavorites=False): + + totalSongs = len(songs) + offset = int(offset) + start = 0 + end = totalSongs + + # No pages needed + if offset == 0 and totalSongs <= self.songspagelimit: + if __debugging__ : + xbmc.log("Found " + str(totalSongs) + " songs...") + # Pages + else: + # Cache all next pages songs + if offset == 0: + self._setSavedSongs(songs) + else: + songs = self._getSavedSongs() + totalSongs = len(songs) + + if totalSongs > 0: + start = offset + end = min(start + self.songspagelimit,totalSongs) + + n = start + items = end - start + while n < end: + song = songs[n] + name = song[0] + songid = song[1] + album = song[2] + artist = song[4] + coverart = song[6] + item = self.songItem(songid, name, album, artist, coverart, trackLabelFormat, (n+1)) + if item != None: + coverart = item.getProperty('coverart') + songname = song[0] + songalbum = song[2] + songartist = song[4] + u=sys.argv[0]+"?mode="+str(MODE_SONG)+"&name="+urllib.quote_plus(songname)+"&id="+str(songid) \ + +"&album="+urllib.quote_plus(songalbum) \ + +"&artist="+urllib.quote_plus(songartist) \ + +"&coverart="+urllib.quote_plus(coverart) + fav=sys.argv[0]+"?mode="+str(MODE_FAVORITE)+"&name="+urllib.quote_plus(songname)+"&id="+str(songid) + unfav=sys.argv[0]+"?mode="+str(MODE_UNFAVORITE)+"&name="+urllib.quote_plus(songname)+"&id="+str(songid)+"&prevmode=" + menuItems = [] + if isFavorites == True: + unfav = unfav +str(MODE_FAVORITES) + else: + menuItems.append((__language__(30071), "XBMC.RunPlugin("+fav+")")) + menuItems.append((__language__(30072), "XBMC.RunPlugin("+unfav+")")) + if playlistid > 0: + rmplaylstsong=sys.argv[0]+"?playlistid="+str(playlistid)+"&id="+str(songid)+"&mode="+str(MODE_REMOVE_PLAYLIST_SONG)+"&name="+str(playlistname) + menuItems.append((__language__(30073), "XBMC.RunPlugin("+rmplaylstsong+")")) + else: + addplaylstsong=sys.argv[0]+"?id="+str(songid)+"&mode="+str(MODE_ADD_PLAYLIST_SONG) + menuItems.append((__language__(30074), "XBMC.RunPlugin("+addplaylstsong+")")) + item.addContextMenuItems(menuItems, replaceItems=False) + xbmcplugin.addDirectoryItem(handle=int(sys.argv[1]),url=u,listitem=item,isFolder=False, totalItems=items) + else: + end = min(end + 1,totalSongs) + if __debugging__ : + xbmc.log(song[0] + " does not exist.") + n = n + 1 + + if totalSongs > end: + u=sys.argv[0]+"?mode="+str(MODE_SONG_PAGE)+"&id=playlistid"+"&offset="+str(end)+"&label="+str(trackLabelFormat)+"&name="+str(playlistname) + self._add_dir(__language__(30075) + '...', u, MODE_SONG_PAGE, self.songImg, 0, totalSongs - end) + + xbmcplugin.setContent(self._handle, 'songs') + xbmcplugin.setPluginFanart(int(sys.argv[1]), self.fanImg) + + # Add albums to directory + def _add_albums_directory(self, albums, artistid=0, isverified=False): + n = len(albums) + itemsExisting = n + if __debugging__ : + xbmc.log("Found " + str(n) + " albums...") + i = 0 + while i < n: + album = albums[i] + albumID = album[3] + + albumArtistName = album[0] + albumName = album[2] + albumImage = self._get_icon(album[4], 'album-' + str(albumID)) + self._add_dir(albumName + " - " + albumArtistName, '', MODE_ALBUM, albumImage, albumID, itemsExisting) + i = i + 1 + # Not supported by key + #if artistid > 0: + # self._add_dir('Similar artists...', '', MODE_SIMILAR_ARTISTS, self.artistImg, artistid) + xbmcplugin.setContent(self._handle, 'albums') + xbmcplugin.addSortMethod(self._handle, xbmcplugin.SORT_METHOD_ALBUM_IGNORE_THE) + xbmcplugin.setPluginFanart(int(sys.argv[1]), self.fanImg) + + # Add artists to directory + def _add_artists_directory(self, artists): + n = len(artists) + itemsExisting = n + if __debugging__ : + xbmc.log("Found " + str(n) + " artists...") + i = 0 + while i < n: + artist = artists[i] + artistID = artist[1] + artistName = artist[0] + self._add_dir(artistName, '', MODE_ARTIST, self.artistImg, artistID, itemsExisting) + i = i + 1 + xbmcplugin.setContent(self._handle, 'artists') + xbmcplugin.addSortMethod(self._handle, xbmcplugin.SORT_METHOD_ARTIST_IGNORE_THE) + xbmcplugin.setPluginFanart(int(sys.argv[1]), self.fanImg) + + # Add playlists to directory + def _add_playlists_directory(self, playlists): + n = len(playlists) + if __debugging__ : + xbmc.log("Found " + str(n) + " playlists...") + i = 0 + while i < n: + playlist = playlists[i] + playlistName = playlist[0] + playlistID = playlist[1] + self._add_dir(playlistName, '', MODE_PLAYLIST, self.playlistImg, playlistID, n) + i = i + 1 + xbmcplugin.setContent(self._handle, 'files') + xbmcplugin.addSortMethod(self._handle, xbmcplugin.SORT_METHOD_LABEL) + xbmcplugin.setPluginFanart(int(sys.argv[1]), self.fanImg) + + # Add whatever directory + def _add_dir(self, name, url, mode, iconimage, itemId, items=1): + + if url == '': + u=sys.argv[0]+"?mode="+str(mode)+"&name="+urllib.quote_plus(name)+"&id="+str(itemId) + else: + u = url + directory=xbmcgui.ListItem(name, iconImage=iconimage, thumbnailImage=iconimage) + directory.setInfo( type="Music", infoLabels={ "title": name } ) + directory.setProperty('fanart_image', self.fanImg) + + # Custom menu items + menuItems = [] + if mode == MODE_ALBUM: + mkplaylst=sys.argv[0]+"?mode="+str(MODE_MAKE_PLAYLIST)+"&name="+name+"&id="+str(itemId) + menuItems.append((__language__(30076), "XBMC.RunPlugin("+mkplaylst+")")) + if mode == MODE_PLAYLIST: + rmplaylst=sys.argv[0]+"?mode="+str(MODE_REMOVE_PLAYLIST)+"&name="+urllib.quote_plus(name)+"&id="+str(itemId) + menuItems.append((__language__(30077), "XBMC.RunPlugin("+rmplaylst+")")) + mvplaylst=sys.argv[0]+"?mode="+str(MODE_RENAME_PLAYLIST)+"&name="+urllib.quote_plus(name)+"&id="+str(itemId) + menuItems.append((__language__(30078), "XBMC.RunPlugin("+mvplaylst+")")) + + directory.addContextMenuItems(menuItems, replaceItems=False) + + return xbmcplugin.addDirectoryItem(handle=int(sys.argv[1]),url=u,listitem=directory,isFolder=True, totalItems=items) + + def _getSavedSongs(self): + path = os.path.join(cacheDir, 'songs.dmp') + try: + f = open(path, 'rb') + songs = pickle.load(f) + f.close() + except: + songs = [] + pass + return songs + + def _setSavedSongs(self, songs): + try: + # Create the 'data' directory if it doesn't exist. + if not os.path.exists(cacheDir): + os.makedirs(cacheDir) + path = os.path.join(cacheDir, 'songs.dmp') + f = open(path, 'wb') + pickle.dump(songs, f, protocol=pickle.HIGHEST_PROTOCOL) + f.close() + except: + xbmc.log("An error occurred saving songs") + pass + + # Duration to seconds + def _setDuration(self, usecs): + if usecs < 60000000: + usecs = usecs * 10 # Some durations are 10x to small + return int(usecs / 1000000) + + def _getSongStream(self, songid): + idSong = int(songid) + stream = None + streams = {} + path = os.path.join(cacheDir, 'streams.dmp') + try: + f = open(path, 'rb') + streams = pickle.load(f) + song = streams[songid] + + duration = song[1] + url = song[2] + key = song[3] + server = song[4] + stream = [idSong, duration, url, key, server] + + if __debugging__ : + xbmc.log("Found " + str(idSong) + " in stream cache") + + f.close() + except: + pass + + # Not in cache + if stream == None: + stream = groovesharkApi.getSubscriberStreamKey(songid) + if stream != False and stream['url'] != '': + duration = self._setDuration(stream['uSecs']) + url = stream['url'] + key = stream['StreamKey'] + server = stream['StreamServerID'] + stream = [idSong, duration, url, key, server] + self._addSongStream(stream) + + return stream + + def _addSongStream(self, stream): + streams = self._getStreams() + streams[int(stream[0])] = stream + path = os.path.join(cacheDir, 'streams.dmp') + try: + f = open(path, 'wb') + pickle.dump(streams, f, protocol=pickle.HIGHEST_PROTOCOL) + f.close() + if __debugging__ : + xbmc.log("Added " + str(stream[0]) + " to stream cache") + except: + xbmc.log("An error occurred adding to stream") + + def _setSongStream(self, stream): + idStream = int(stream[0]) + stream[1] = self._setDuration(stream[1]) + streams = self._getStreams() + path = os.path.join(cacheDir, 'streams.dmp') + + try: + streams[idStream] = stream + f = open(path, 'wb') + pickle.dump(streams, f, protocol=pickle.HIGHEST_PROTOCOL) + f.close() + if __debugging__ : + xbmc.log("Updated " + str(idStream) + " in stream cache") + + except: + xbmc.log("An error occurred setting stream") + + def _getStreams(self): + path = os.path.join(cacheDir, 'streams.dmp') + try: + f = open(path, 'rb') + streams = pickle.load(f) + f.close() + except: + streams = {} + pass + return streams + + +# Parse URL parameters +def get_params(): + param=[] + paramstring=sys.argv[2] + if __debugging__ : + xbmc.log(paramstring) + if len(paramstring)>=2: + params=sys.argv[2] + cleanedparams=params.replace('?','') + if (params[len(params)-1]=='/'): + params=params[0:len(params)-2] + pairsofparams=cleanedparams.split('&') + param={} + for i in range(len(pairsofparams)): + splitparams={} + splitparams=pairsofparams[i].split('=') + if (len(splitparams))==2: + param[splitparams[0]]=splitparams[1] + return param + +# Main +grooveshark = Grooveshark(); + +params=get_params() +mode=None +try: mode=int(params["mode"]) +except: pass +itemId=0 +try: itemId=int(params["id"]) +except: pass +name = None +try: name=urllib.unquote_plus(params["name"]) +except: pass + +# Call function for URL +if mode==None: + grooveshark.categories() + +elif mode==MODE_SEARCH_SONGS: + grooveshark.searchSongs() + +elif mode==MODE_SEARCH_ALBUMS: + grooveshark.searchAlbums() + +elif mode==MODE_SEARCH_ARTISTS: + grooveshark.searchArtists() + +elif mode==MODE_SEARCH_ARTISTS_ALBUMS: + grooveshark.searchArtistsAlbums(name) + +elif mode==MODE_SEARCH_PLAYLISTS: + grooveshark.searchPlaylists() + +elif mode==MODE_POPULAR_SONGS: + grooveshark.popularSongs() + +elif mode==MODE_ARTIST_POPULAR: + grooveshark.searchArtistPopularSongs() + +elif mode==MODE_FAVORITES: + grooveshark.favorites() + +elif mode==MODE_PLAYLISTS: + grooveshark.playlists() + +elif mode==MODE_SONG_PAGE: + try: offset=urllib.unquote_plus(params["offset"]) + except: pass + try: label=urllib.unquote_plus(params["label"]) + except: pass + grooveshark.songPage(offset, label, itemId, name) + +elif mode==MODE_SONG: + try: album=urllib.unquote_plus(params["album"]) + except: pass + try: artist=urllib.unquote_plus(params["artist"]) + except: pass + try: coverart=urllib.unquote_plus(params["coverart"]) + except: pass + song = grooveshark.songItem(itemId, name, album, artist, coverart) + grooveshark.playSong(song) + +elif mode==MODE_ARTIST: + grooveshark.artist(itemId) + +elif mode==MODE_ALBUM: + grooveshark.album(itemId) + +elif mode==MODE_PLAYLIST: + grooveshark.playlist(itemId, name) + +elif mode==MODE_FAVORITE: + grooveshark.favorite(itemId) + +elif mode==MODE_UNFAVORITE: + try: prevMode=int(urllib.unquote_plus(params["prevmode"])) + except: + prevMode = 0 + grooveshark.unfavorite(itemId, prevMode) + +elif mode==MODE_SIMILAR_ARTISTS: + grooveshark.similarArtists(itemId) + +elif mode==MODE_MAKE_PLAYLIST: + grooveshark.makePlaylist(itemId, name) + +elif mode==MODE_REMOVE_PLAYLIST: + grooveshark.removePlaylist(itemId, name) + +elif mode==MODE_RENAME_PLAYLIST: + grooveshark.renamePlaylist(itemId, name) + +elif mode==MODE_REMOVE_PLAYLIST_SONG: + try: playlistID=urllib.unquote_plus(params["playlistid"]) + except: pass + grooveshark.removePlaylistSong(playlistID, name, itemId) + +elif mode==MODE_ADD_PLAYLIST_SONG: + grooveshark.addPlaylistSong(itemId) + +elif mode==MODE_ARTIST_POPULAR_FROM_ALBUMS: + grooveshark.artistPopularSongs(itemId) + +if mode < MODE_SONG: + xbmcplugin.endOfDirectory(int(sys.argv[1]))