X-Git-Url: https://git.kaliko.me/?a=blobdiff_plain;f=sima%2Flib%2Fwebserv.py;h=547c9ceb388fed8db27eecb717c0329de657a49d;hb=2eb13c85fe72ade75193b589748920615fbb22d2;hp=fd15815b8b65ce2001d9f9b6a79098dd33c9e472;hpb=28745ed78f2c3020f35268e7609cf937c9fd5175;p=mpd-sima.git diff --git a/sima/lib/webserv.py b/sima/lib/webserv.py index fd15815..547c9ce 100644 --- a/sima/lib/webserv.py +++ b/sima/lib/webserv.py @@ -143,8 +143,7 @@ class WebService(Plugin): # TODO: move to utils as a decorator duration = self.daemon_conf.getint('sima', 'history_duration') art_in_hist = list() - for trk in self.sdb.get_history(duration=duration, - artists=alist): + for trk in self.sdb.get_history(duration=duration, artists=alist): if trk[0] not in art_in_hist: art_in_hist.append(trk[0]) art_in_hist.reverse() @@ -179,8 +178,7 @@ class WebService(Plugin): # initialize artists deque list to construct from DB as_art = deque() as_artists = self.ws().get_similar(artist=artist) - self.log.debug('Requesting {1} for "{0}"'.format(artist, - self.ws.name)) + self.log.debug('Requesting {} for {!r}'.format(self.ws.name,artist)) try: # TODO: let's propagate Artist type [as_art.append(str(art)) for art in as_artists] @@ -195,16 +193,18 @@ class WebService(Plugin): history = deque(self.history) history.popleft() depth = 0 + if not self.player.playlist: + return ret_extra 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.get_artist() in extra_arts - or trk.get_artist() == last_trk.get_artist()): + if (trk.Artist in extra_arts + or trk.Artist == last_trk.Artist): continue - extra_arts.append(trk.get_artist()) + extra_arts.append(trk.Artist) depth += 1 self.log.info('EXTRA ARTS: {}'.format( '/'.join([art.name for art in extra_arts]))) @@ -222,9 +222,10 @@ class WebService(Plugin): def get_local_similar_artists(self): """Check against local player for similar artists """ - tolookfor = self.player.playlist[-1].get_artist() - self.log.info('Looking for artist similar ' - 'to "{0.artist}"'.format(self.player.playlist[-1])) + if not self.player.playlist: + return [] + tolookfor = self.player.playlist[-1].Artist + self.log.info('Looking for artist similar to "{}"'.format(tolookfor)) similar = self.ws_similar_artists(tolookfor) if not similar: self.log.info('Got nothing from {0}!'.format(self.ws.name)) @@ -232,21 +233,28 @@ class WebService(Plugin): self.log.info('First five similar artist(s): {}...'.format( ' / '.join([a for a in list(similar)[0:5]]))) self.log.info('Looking availability in music library') - ret = self.get_artists_from_player(similar) + ret = set(self.get_artists_from_player(similar)) ret_extra = None if len(self.history) >= 2: if self.plugin_conf.getint('depth') > 1: ret_extra = self.get_recursive_similar_artist() if ret_extra: - ret = list(set(ret) | set(ret_extra)) + ret = set(ret) | set(ret_extra) if not ret: self.log.warning('Got nothing from music library.') self.log.warning('Try running in debug mode to guess why...') return [] - self.log.info('Got {} artists in library'.format(len(ret))) + queued_artists = { trk.artist for trk in self.player.queue } + if ret & queued_artists: + self.log.debug('Removing already queued artist: {0}'.format(ret & queued_artists)) + ret = ret - queued_artists + if self.player.current.artist in ret: + self.log.debug('Removing current artist: {0}'.format(self.player.current.artist)) + ret = ret - {self.player.current.artist} # Move around similars items to get in unplayed|not recently played # artist first. - return self._get_artists_list_reorg(ret) + self.log.info('Got {} artists in library'.format(len(ret))) + return self._get_artists_list_reorg(list(ret)) def _get_album_history(self, artist=None): """Retrieve album history""" @@ -322,6 +330,7 @@ class WebService(Plugin): self.log.info('{0.name} ratelimit: {0.ratelimit}'.format(self.ws)) for trk in titles: found = self.player.fuzzy_find_track(artist.name, trk.title) + random.shuffle(found) if found: self.log.debug('{0}'.format(found[0])) if self.filter_track(found): @@ -336,6 +345,7 @@ class WebService(Plugin): self.log.debug('Trying to find titles to add for "{}"'.format( artist)) found = self.player.find_track(artist) + random.shuffle(found) if not found: self.log.debug('Found nothing to queue for {0}'.format(artist)) continue