Add search of artist's albums.
[clinton/xbmc-groove.git] / default.py
dissimilarity index 64%
index cf909a9..7fdcb3d 100644 (file)
-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]))
+import urllib, sys, os, shutil, re, time, xbmcaddon, xbmcplugin, xbmcgui, xbmc
+MODE_SEARCH_SONGS = 1
+MODE_SEARCH_ALBUMS = 2
+MODE_SEARCH_ARTISTS = 3
+MODE_SEARCH_ARTISTS_ALBUMS = 4
+MODE_SEARCH_PLAYLISTS = 5
+MODE_POPULAR_SONGS = 6
+MODE_FAVORITES = 7
+MODE_PLAYLISTS = 8
+MODE_ALBUM = 9
+MODE_ARTIST = 10
+MODE_PLAYLIST = 11
+MODE_SONG = 12
+MODE_FAVORITE = 13
+
+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
+
+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'))
+cacheDir = os.path.join(xbmc.translatePath('special://masterprofile/addon_data/'), os.path.basename(os.getcwd()))
+thumbDirName = 'thumb'
+thumbDir = os.path.join('special://masterprofile/addon_data/', os.path.basename(os.getcwd()), thumbDirName)
+
+baseModeUrl = 'plugin://plugin.audio.groove/'
+playlistUrl = baseModeUrl + '?mode=' + str(MODE_PLAYLIST)
+playlistsUrl = baseModeUrl + '?mode=' + str(MODE_PLAYLISTS)
+favoritesUrl = baseModeUrl + '?mode=' + str(MODE_FAVORITES)
+
+thumbDef = os.path.join(imgDir, 'default.tbn')
+
+sys.path.append (libDir)
+from GroovesharkAPI import GrooveAPI
+
+try:
+    groovesharkApi = GrooveAPI()
+    if groovesharkApi.pingService() != True:
+        raise StandardError('No Grooveshark service')
+except:
+    dialog = xbmcgui.Dialog()
+    dialog.ok('Grooveshark XBMC', 'Unable to connect with Grooveshark.', 'Please try again later')
+    sys.exit(-1)
+  
+
+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'))
+    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'))
+    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 = int(settings.getSetting('songsearchlimit'))
+    albumsearchlimit = int(settings.getSetting('albumsearchlimit'))
+    artistsearchlimit = int(settings.getSetting('artistsearchlimit'))
+    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)
+            xbmc.log("Made " + cacheDir)
+        artDir = xbmc.translatePath(thumbDir)
+        if os.path.isdir(artDir) == False:
+            os.makedirs(artDir)
+            xbmc.log("Made " + artDir)
+
+    # Top-level menu
+    def categories(self):
+
+        self.userid = self._get_login()
+        
+        # Setup
+        xbmcplugin.setPluginFanart(int(sys.argv[1]), self.fanImg)
+        
+        self._add_dir('Search for songs...', '', MODE_SEARCH_SONGS, self.songImg, 0)
+        self._add_dir('Search for albums...', '', MODE_SEARCH_ALBUMS, self.albumImg, 0)
+        self._add_dir('Search for artists...', '', MODE_SEARCH_ARTISTS, self.artistImg, 0)
+        self._add_dir("Search for artist's albums...", '', MODE_SEARCH_ARTISTS_ALBUMS, self.artistsAlbumsImg, 0)
+        self._add_dir("Search for user's playlists...", '', MODE_SEARCH_PLAYLISTS, self.usersplaylistsImg, 0)
+        self._add_dir('Popular songs', '', MODE_POPULAR_SONGS, self.popularSongsImg, 0)
+        if (self.userid != 0):
+            self._add_dir('My favorites', '', MODE_FAVORITES, self.favoritesImg, 0)
+            self._add_dir('My playlists', '', MODE_PLAYLISTS, self.playlistImg, 0)
+
+    # Search for songs            
+    def searchSongs(self):
+        query = self._get_keyboard(default="", heading="Search for songs")
+        if (query != ''):
+            songs = groovesharkApi.getSongSearchResults(query, limit = self.songsearchlimit)
+            if (len(songs) > 0):
+                self._add_songs_directory(songs)
+            else:
+                dialog = xbmcgui.Dialog()
+                dialog.ok('Grooveshark XBMC', 'No matching songs.')
+                self.categories()
+        else:
+            self.categories()
+    
+    # Search for albums
+    def searchAlbums(self):
+        query = self._get_keyboard(default="", heading="Search for albums")
+        if (query != ''): 
+            albums = groovesharkApi.getAlbumSearchResults(query, limit = self.albumsearchlimit)
+            if (len(albums) > 0):
+                self._add_albums_directory(albums)
+            else:
+                dialog = xbmcgui.Dialog()
+                dialog.ok('Grooveshark XBMC', 'No matching albums.')
+                self.categories()
+        else:
+            self.categories()
+    
+    # Search for artists
+    def searchArtists(self):
+        query = self._get_keyboard(default="", heading="Search for artists")
+        if (query != ''): 
+            artists = groovesharkApi.getArtistSearchResults(query, limit = self.artistsearchlimit)
+            if (len(artists) > 0):
+                self._add_artists_directory(artists)
+            else:
+                dialog = xbmcgui.Dialog()
+                dialog.ok('Grooveshark XBMC', 'No matching artists.')
+                self.categories()
+        else:
+            self.categories()
+
+    # Search for playlists
+    def searchPlaylists(self):
+        query = self._get_keyboard(default="", heading="Search for user's playlists")
+        if (query != ''): 
+            playlists = groovesharkApi.getUserPlaylistsEx(query)
+            if (len(playlists) > 0):
+                self._add_playlists_directory(playlists)
+            else:
+                dialog = xbmcgui.Dialog()
+                dialog.ok('Grooveshark XBMC', 'No Grooveshark playlists found.')
+                self.categories()
+        else:
+            self.categories()
+
+    # Search for artists albums
+    def searchArtistsAlbums(self):
+        query = self._get_keyboard(default="", heading="Search for artist's albums")
+        if (query != ''): 
+            artists = groovesharkApi.getArtistSearchResults(query, limit = self.artistsearchlimit)
+            if (len(artists) > 0):
+                artist = artists[0]
+                artistID = artist[1]
+                xbmc.log("Found " + artist[0] + "...")
+                albums = groovesharkApi.getArtistAlbums(artistID, limit = self.albumsearchlimit)
+                if (len(albums) > 0):
+                    self._add_albums_directory(albums)
+                else:
+                    dialog = xbmcgui.Dialog()
+                    dialog.ok('Grooveshark XBMC', 'No matching albums.')
+                    self.categories()
+            else:
+                dialog = xbmcgui.Dialog()
+                dialog.ok('Grooveshark XBMC', 'No matching artists.')
+                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)
+            else:
+                dialog = xbmcgui.Dialog()
+                dialog.ok('Grooveshark XBMC', 'You have no favorites.')
+                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('Grooveshark XBMC', 'No popular songs.')
+            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('Grooveshark XBMC', 'You have no Grooveshark playlists.')
+                self.categories()
+        else:
+            dialog = xbmcgui.Dialog()
+            dialog.ok('Grooveshark XBMC', 'You must be logged in ', ' to see your Grooveshark playlists.')
+                
+    # Make songs a favorite 
+    def favorite(self, songid):
+        userid = self._get_login()
+        if (userid != 0):
+            xbmc.log("Favorite song: " + str(songid))
+            groovesharkApi.addUserFavoriteSong(songID = songid)
+            xbmc.executebuiltin('XBMC.Notification(Grooveshark XBMC, Added to favorites, 1000, ' + thumbDef + ')')
+        else:
+            dialog = xbmcgui.Dialog()
+            dialog.ok('Grooveshark XBMC', 'You must be logged in', 'to add favorites.')
+
+    # 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)
+        self._add_albums_directory(albums)
+    
+    # Show selected playlist
+    def playlist(self, playlistid):
+        userid = self._get_login()
+        if (userid != 0):
+            songs = groovesharkApi.getPlaylistSongs(playlistid)
+            self._add_songs_directory(songs, trackLabelFormat=NAME_ALBUM_ARTIST_LABEL)
+        else:
+            dialog = xbmcgui.Dialog()
+            dialog.ok('Grooveshark XBMC', 'You must be logged in', 'to get Grooveshark playlists.')
+            
+    # Play a song
+    def playSong(self, item):
+        songid = item.getProperty('songid')
+        song = groovesharkApi.getSongURLFromSongID(songid)
+        if song != '':
+            item.setPath(song)
+            xbmc.log("Playing: " + song)
+            xbmcplugin.setResolvedUrl(handle=int(sys.argv[1]), succeeded=True, listitem=item)
+        else:
+            xbmc.executebuiltin('XBMC.Notification(Grooveshark XBMC, Unable to play song, 1000, ' + thumbDef + ')')
+    
+    # Make a song directory item
+    def songItem(self, songid, name, album, artist, coverart, trackLabelFormat=ARTIST_ALBUM_NAME_LABEL):
+        songImg = self._get_icon(coverart, 'song-' + str(songid) + "-image")
+        if trackLabelFormat == NAME_ALBUM_ARTIST_LABEL:
+            trackLabel = name + " - " + album + " - " + artist
+        else:
+            trackLabel = artist + " - " + album + " - " + name
+        item = xbmcgui.ListItem(label = trackLabel, thumbnailImage=songImg, iconImage=songImg)
+        item.setInfo( type="music", infoLabels={ "title": name, "album": album, "artist": artist} )
+        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)
+        
+        return item
+    
+    # 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('Grooveshark XBMC', 'Unable to login.', 'Check username and password in settings.')
+            return 0
+        else:
+            if self.userid == 0:
+                uid = groovesharkApi.login(self.username, self.password)
+            if (uid != 0):
+                return uid
+            else:
+                dialog = xbmcgui.Dialog()
+                dialog.ok('Grooveshark XBMC', 'Unable to login.', 'Check username and password in settings.')
+                return 0
+    
+    # Get a song directory item
+    def _get_song_item(self, song, trackLabelFormat):
+        name = song[0]
+        songid = song[1]
+        album = song[2]
+        artist = song[4]
+        coverart = song[6]
+        return self.songItem(songid, name, album, artist, coverart, trackLabelFormat)            
+        
+    # 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:
+                    loc = urllib.URLopener()
+                    loc.retrieve(url, localThumb)
+            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):
+        n = len(songs)
+        xbmc.log("Found " + str(n) + " songs...")
+        i = 0
+        while i < n:
+            song = songs[i]
+            item = self._get_song_item(song, trackLabelFormat)
+            coverart = item.getProperty('coverart')
+            songname = song[0]
+            songid = song[1]
+            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)
+            menuItems = []
+            menuItems.append(("Grooveshark favorite", "XBMC.RunPlugin("+fav+")"))
+            item.addContextMenuItems(menuItems, replaceItems=False)
+            xbmcplugin.addDirectoryItem(handle=int(sys.argv[1]),url=u,listitem=item,isFolder=False, totalItems=n)
+            i = i + 1
+
+        xbmcplugin.setContent(self._handle, 'songs')
+        xbmcplugin.setPluginFanart(int(sys.argv[1]), self.fanImg)
+    
+    # Add albums to directory
+    def _add_albums_directory(self, albums):
+        n = len(albums)
+        xbmc.log("Found " + str(n) + " albums...")
+        i = 0
+        while i < n:
+            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, n)
+            i = i + 1
+        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)
+        xbmc.log("Found " + str(n) + " artists...")
+        i = 0
+        while i < n:
+            artist = artists[i]
+            artistName = artist[0]
+            artistID = artist[1]
+            self._add_dir(artistName, '', MODE_ARTIST, self.artistImg, artistID, n)
+            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)
+        xbmc.log("Found " + str(n) + " playlists...")
+        i = 0
+        while i < n:
+            playlist = playlists[i]
+            playlistName = playlist[0]
+            playlistID = playlist[1]
+            dir = 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, id, items=1):
+        
+        u=sys.argv[0]+"?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 } )
+        return xbmcplugin.addDirectoryItem(handle=int(sys.argv[1]),url=u,listitem=dir,isFolder=True, totalItems=items)
+
+
+# Parse URL parameters
+def get_params():
+    param=[]
+    paramstring=sys.argv[2]
+    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 = Groveshark();
+
+params=get_params()
+mode=None
+try: mode=int(params["mode"])
+except: pass
+id=0
+try: id=int(params["id"])
+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()
+    
+elif mode==MODE_SEARCH_PLAYLISTS:
+    grooveshark.searchPlaylists() 
+
+elif mode==MODE_POPULAR_SONGS:
+    grooveshark.popularSongs()
+
+elif mode==MODE_FAVORITES:
+    grooveshark.favorites()
+
+elif mode==MODE_PLAYLISTS:
+    grooveshark.playlists()
+
+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: coverart=urllib.unquote_plus(params["coverart"])
+    except: pass
+    song = grooveshark.songItem(id, name, album, artist, coverart)
+    grooveshark.playSong(song)
+
+elif mode==MODE_ARTIST:
+    grooveshark.artist(id)
+    
+elif mode==MODE_ALBUM:
+    grooveshark.album(id)
+    
+elif mode==MODE_PLAYLIST:
+    grooveshark.playlist(id)
+    
+elif mode==MODE_FAVORITE:
+    grooveshark.favorite(id)
+
+if mode < MODE_SONG:
+    xbmcplugin.endOfDirectory(int(sys.argv[1]))