X-Git-Url: https://git.kaliko.me/?a=blobdiff_plain;f=sima%2Fplugins%2Finternal%2Flastfm.py;h=125f0090291655dc60656998b5a541a36869e6cd;hb=1c01e4a7aa37eeef825c6918fc90b154a7f4ccc7;hp=2e6fca6b7fdc3c008a41b650338050ae78643484;hpb=24993cd99b847733894f57fd004ed52b5390244a;p=mpd-sima.git diff --git a/sima/plugins/internal/lastfm.py b/sima/plugins/internal/lastfm.py index 2e6fca6..125f009 100644 --- a/sima/plugins/internal/lastfm.py +++ b/sima/plugins/internal/lastfm.py @@ -22,12 +22,14 @@ Fetching similar artists from last.fm web services """ # standard library import +from os.path import join # third parties components # local import from ...lib.simafm import SimaFM from ...lib.webserv import WebService +from ...lib.cache import FileCache class Lastfm(WebService): @@ -36,7 +38,13 @@ class Lastfm(WebService): def __init__(self, daemon): WebService.__init__(self, daemon) - self.ws = SimaFM + # Set persitent cache + vardir = daemon.config['sima']['var_dir'] + persitent_cache = daemon.config.getboolean('lastfm', 'cache') + if persitent_cache: + self.log.debug('Persistant cache enabled in {}'.format(join(vardir, 'http', 'LastFM'))) + SimaFM.cache = FileCache(join(vardir, 'http', 'LastFM')) + self.ws = SimaFM() # VIM MODLINE