X-Git-Url: https://git.kaliko.me/?a=blobdiff_plain;f=sima%2Flib%2Fsimaecho.py;h=27bbce2d0f122f8952438aafbf2979538a616f37;hb=3b790488058841bcb00180aa07277334a394b3ea;hp=36c985e6d14b5b652b99d69ab10009fe2a850b8e;hpb=f66092201d736e21f79c713bb713a34ba721e6fa;p=mpd-sima.git diff --git a/sima/lib/simaecho.py b/sima/lib/simaecho.py index 36c985e..27bbce2 100644 --- a/sima/lib/simaecho.py +++ b/sima/lib/simaecho.py @@ -25,7 +25,7 @@ __version__ = '0.0.2' __author__ = 'Jack Kaliko' -from datetime import datetime, timedelta +from datetime import timedelta from requests import Session, Request, Timeout, ConnectionError @@ -50,6 +50,7 @@ class SimaEch: ratelimit = None name = 'EchoNest' cache = False + stats = {'304':0, 'cached':0, 'minrl':'120'} def __init__(self): self.controller = CacheController(self.cache) @@ -64,6 +65,7 @@ class SimaEch: if self.cache: cached_response = self.controller.cached_request(req.url, req.headers) if cached_response: + SimaEch.stat.update(cached=SimaEch.stat.get('cached')+1) return cached_response.json() try: return self._fetch_ws(req) @@ -78,11 +80,16 @@ class SimaEch: """fetch from web service""" sess = Session() resp = sess.send(prepreq, timeout=SOCKET_TIMEOUT) - self.__class__.ratelimit = resp.headers.get('x-ratelimit-remaining', None) - if resp.status_code is not 200: + if resp.status_code == 304: + SimaEch.stats.update({'304':SimaEch.stats.get('304')+1}) + resp = self.controller.update_cached_response(prepreq, resp) + elif resp.status_code != 200: raise WSHTTPError('{0.status_code}: {0.reason}'.format(resp)) ans = resp.json() self._controls_answer(ans) + SimaEch.ratelimit = resp.headers.get('x-ratelimit-remaining', None) + minrl = min(SimaEch.ratelimit, SimaEch.stats.get('minrl')) + SimaEch.stats.update(minrl=minrl) if self.cache: self.controller.cache_response(resp.request, resp) return ans @@ -130,7 +137,6 @@ class SimaEch: ressource = '{0}/artist/similar'.format(SimaEch.root_url) ans = self._fetch(ressource, payload) for art in ans.get('response').get('artists'): - artist = {} mbid = None if 'foreign_ids' in art: for frgnid in art.get('foreign_ids'): @@ -147,7 +153,7 @@ class SimaEch: ressource = '{0}/song/search'.format(SimaEch.root_url) ans = self._fetch(ressource, payload) titles = list() - artist = { + art = { 'artist': artist.name, 'musicbrainz_artistid': artist.mbid, } @@ -155,7 +161,7 @@ class SimaEch: title = song.get('title') if title not in titles: titles.append(title) - yield Track(title=title, **artist) + yield Track(title=title, **art) # VIM MODLINE