X-Git-Url: https://git.kaliko.me/?a=blobdiff_plain;f=sima%2Flib%2Fwebserv.py;h=fd15815b8b65ce2001d9f9b6a79098dd33c9e472;hb=28745ed78f2c3020f35268e7609cf937c9fd5175;hp=75b0a38a0b43a1c77038f6051b6cdc66ca39d33e;hpb=8bf0d37a99b80af5674a639bfbc155db18ac557d;p=mpd-sima.git diff --git a/sima/lib/webserv.py b/sima/lib/webserv.py index 75b0a38..fd15815 100644 --- a/sima/lib/webserv.py +++ b/sima/lib/webserv.py @@ -176,18 +176,11 @@ class WebService(Plugin): """ Retrieve similar artists from WebServive. """ - if artist is None: - curr = self.player.current.__dict__ - name = curr.get('artist') - mbid = curr.get('musicbrainz_artistid', None) - current = Artist(name=name, mbid=mbid) - else: - current = artist # initialize artists deque list to construct from DB as_art = deque() - as_artists = self.ws().get_similar(artist=current) - self.log.debug('Requesting {1} for "{0}"'.format(current, - self.ws.name)) + as_artists = self.ws().get_similar(artist=artist) + self.log.debug('Requesting {1} for "{0}"'.format(artist, + self.ws.name)) try: # TODO: let's propagate Artist type [as_art.append(str(art)) for art in as_artists] @@ -202,37 +195,37 @@ class WebService(Plugin): history = deque(self.history) history.popleft() depth = 0 - current = self.player.current + last_trk = self.player.playlist[-1] extra_arts = list() while depth < self.plugin_conf.getint('depth'): if len(history) == 0: break trk = history.popleft() - if (trk.artist in [trk.artist for trk in extra_arts] - or trk.artist == current.artist): + if (trk.get_artist() in extra_arts + or trk.get_artist() == last_trk.get_artist()): continue - extra_arts.append(trk) + extra_arts.append(trk.get_artist()) depth += 1 self.log.info('EXTRA ARTS: {}'.format( - '/'.join([trk.artist for trk in extra_arts]))) + '/'.join([art.name for art in extra_arts]))) for artist in extra_arts: - self.log.debug( - 'Looking for artist similar to "{0.artist}" as well'.format( - artist)) + self.log.debug('Looking for artist similar ' + 'to "{}" as well'.format(artist)) similar = self.ws_similar_artists(artist=artist) if not similar: return ret_extra ret_extra.extend(self.get_artists_from_player(similar)) - if current.artist in ret_extra: - ret_extra.remove(current.artist) + if last_trk.artist in ret_extra: + ret_extra.remove(last_trk.artist) return ret_extra def get_local_similar_artists(self): """Check against local player for similar artists """ - current = self.player.current - self.log.info('Looking for artist similar to "{0.artist}"'.format(current)) - similar = self.ws_similar_artists() + tolookfor = self.player.playlist[-1].get_artist() + self.log.info('Looking for artist similar ' + 'to "{0.artist}"'.format(self.player.playlist[-1])) + similar = self.ws_similar_artists(tolookfor) if not similar: self.log.info('Got nothing from {0}!'.format(self.ws.name)) return [] @@ -373,11 +366,11 @@ class WebService(Plugin): def callback_need_track(self): self._cleanup_cache() - if not self.player.current: - self.log.info('No current track, cannot queue') + if len(self.player.playlist) == 0: + self.log.info('No last track, cannot queue') return None - if not self.player.current.artist: - self.log.warning('No artist set for the current track') + if not self.player.playlist[-1].artist: + self.log.warning('No artist set for the last track in queue') self.log.debug(repr(self.player.current)) return None self.queue_mode()