X-Git-Url: http://git.kaliko.me/?a=blobdiff_plain;f=sima%2Fplugins%2Finternal%2Ftags.py;h=5ea4726837d2462917fd0c4c028e418b5d13e775;hb=e4dc436d9891dd6f7b80c8d60d45bbc39b7c67d3;hp=cd1a4fe3bbdf91660c8be23a2c15d5e304bd4b29;hpb=29cca9ed73ed4bd87b909398ccc80bceddc89c73;p=mpd-sima.git diff --git a/sima/plugins/internal/tags.py b/sima/plugins/internal/tags.py index cd1a4fe..5ea4726 100644 --- a/sima/plugins/internal/tags.py +++ b/sima/plugins/internal/tags.py @@ -25,11 +25,13 @@ Add titles based on tags import random # third parties components +from musicpd import CommandError # local import from ...lib.plugin import Plugin from ...lib.track import Track -from ...utils.utils import PluginConfException +from ...utils.utils import PluginException + def forge_filter(cfg): tags = set(cfg.keys()) & Tags.supported_tags @@ -38,8 +40,10 @@ def forge_filter(cfg): if cfg_filter: mpd_filter.append(cfg_filter) for tag in tags: + if not cfg[tag]: # avoid empty tags entries in config + continue if ',' in cfg[tag]: - patt = '|'.join(cfg[tag].split(',')) + patt = '|'.join(map(str.strip, cfg[tag].split(','))) mpd_filter.append(f"({tag} =~ '({patt})')") else: mpd_filter.append(f"({tag} == '{cfg[tag].strip()}')") @@ -58,28 +62,35 @@ class Tags(Plugin): super().__init__(daemon) self.daemon = daemon self._control_conf() - #self._control_server() - self._setup_tagsneeded() self.mpd_filter = forge_filter(self.plugin_conf) + self._setup_tagsneeded() self.log.debug('mpd filter: %s', self.mpd_filter) def _control_conf(self): sup_tags = Tags.supported_tags + config_tags = {k for k, v in self.plugin_conf.items() + if (v and k not in ['filter', 'priority', 'track_to_add'])} if not self.plugin_conf.get('filter', None) and \ - self.plugin_conf.keys().isdisjoint(sup_tags): - self.log.error( - 'Found no config for %s plugin! Need at least "filter" or a supported tag' % self) + config_tags.isdisjoint(sup_tags): + self.log.error('Found no config for %s plugin! ' + 'Need at least "filter" or a supported tag', self) self.log.info('Supported Tags are : %s', ', '.join(sup_tags)) - raise PluginConfException('plugin misconfiguration') - - def _control_server(self): - #TODO: - # * control tags used are available - # * filters are available mpd version >= 0.21 - raise NotImplemented + raise PluginException('plugin misconfiguration') + if config_tags.difference(sup_tags): + self.log.error('Found unsupported tag in config: %s', + config_tags.difference(sup_tags)) + raise PluginException('plugin misconfiguration') def _setup_tagsneeded(self): - tags = set(self.plugin_conf.keys()) & Tags.supported_tags + """Ensure needed tags are exposed by MPD""" + # At this point mpd_filter concatenetes {tags}+filter + config_tags = set() + for mpd_supp_tags in self.player.MPD_supported_tags: + if mpd_supp_tags.lower() in self.mpd_filter.lower(): + config_tags.add(mpd_supp_tags.lower()) + self.log.debug('%s plugin needs the following metadata: %s', + self, config_tags) + tags = config_tags & Tags.supported_tags self.player.needed_tags |= tags def _get_history(self): @@ -90,6 +101,22 @@ class Tags(Plugin): hist = [Track(file=tr[3], artist=tr[0]) for tr in tracks_from_db] return hist + def start(self): + if (0, 21, 0) > tuple(map(int, self.player.mpd_version.split('.'))): + self.log.warning('MPD protocol version: %s < 0.21.0', + self.player.mpd_version) + self.log.error( + 'Need at least MPD 0.21 to use Tags plugin (filters required)') + self.player.disconnect() + raise PluginException('MPD >= 0.21 required') + # Check filter is valid + try: + if self.plugin_conf['filter']: + self.player.find(self.plugin_conf['filter']) + except CommandError: + raise PluginException('Badly formated filter in tags plugin configuration: "%s"' + % self.plugin_conf['filter']) + def callback_need_track(self): candidates = [] target = self.plugin_conf.getint('track_to_add')