Adjusted Matcher.chainMatch to support 'WEB DL' tags

This commit is contained in:
Dean Gardiner
2013-12-06 01:17:57 +13:00
parent aa394f59ae
commit 45484461b5
2 changed files with 13 additions and 3 deletions

View File

@@ -19,8 +19,8 @@ class ShowSearcher(Plugin):
# TODO come back to this later, think this could be handled better
quality_map = {
'webdl_1080p': {'resolution': ['1080p'], 'source': ['webdl']},
'webdl_720p': {'resolution': ['720p'], 'source': ['webdl']},
'webdl_1080p': {'resolution': ['1080p'], 'source': ['webdl', ['web', 'dl']]},
'webdl_720p': {'resolution': ['720p'], 'source': ['webdl', ['web', 'dl']]},
'hdtv_720p': {'resolution': ['720p'], 'source': ['hdtv']},
'hdtv_sd': {'resolution': ['480p', None], 'source': ['hdtv']},

View File

@@ -40,9 +40,19 @@ class Matcher(Plugin):
for match in chain.info[group]:
for ck, cv in match.items():
if ck in tags and simplifyString(cv) in tags[ck]:
if ck not in tags:
continue
if isinstance(cv, basestring) and simplifyString(cv) in tags[ck]:
found_tags.append(ck)
elif isinstance(cv, list):
simple_list = [simplifyString(x) for x in cv]
if simple_list in tags[ck]:
found_tags.append(ck)
log.debug('tags found: %s, required: %s' % (found_tags, tags.keys()))
if set(tags.keys()) == set(found_tags):
return True