2015-03-14 19:55:42 +01:00
|
|
|
from __future__ import unicode_literals
|
2015-03-04 22:33:56 +01:00
|
|
|
|
|
|
|
import re
|
|
|
|
|
|
|
|
from .common import PostProcessor
|
|
|
|
|
|
|
|
|
|
|
|
class MetadataFromTitlePP(PostProcessor):
|
|
|
|
def __init__(self, downloader, titleformat):
|
2015-03-14 19:55:42 +01:00
|
|
|
super(MetadataFromTitlePP, self).__init__(downloader)
|
2015-03-04 22:33:56 +01:00
|
|
|
self._titleformat = titleformat
|
2017-05-13 19:03:15 +02:00
|
|
|
self._titleregex = (self.format_to_regex(titleformat)
|
|
|
|
if re.search(r'%\(\w+\)s', titleformat)
|
|
|
|
else titleformat)
|
2015-03-04 22:33:56 +01:00
|
|
|
|
2015-03-14 19:55:42 +01:00
|
|
|
def format_to_regex(self, fmt):
|
2017-01-02 13:08:07 +01:00
|
|
|
r"""
|
2015-03-04 22:33:56 +01:00
|
|
|
Converts a string like
|
|
|
|
'%(title)s - %(artist)s'
|
|
|
|
to a regex like
|
|
|
|
'(?P<title>.+)\ \-\ (?P<artist>.+)'
|
|
|
|
"""
|
|
|
|
lastpos = 0
|
2016-02-14 10:37:17 +01:00
|
|
|
regex = ''
|
2015-03-04 22:33:56 +01:00
|
|
|
# replace %(..)s with regex group and escape other string parts
|
|
|
|
for match in re.finditer(r'%\((\w+)\)s', fmt):
|
|
|
|
regex += re.escape(fmt[lastpos:match.start()])
|
|
|
|
regex += r'(?P<' + match.group(1) + '>.+)'
|
|
|
|
lastpos = match.end()
|
|
|
|
if lastpos < len(fmt):
|
2017-04-12 21:38:43 +02:00
|
|
|
regex += re.escape(fmt[lastpos:])
|
2015-03-04 22:33:56 +01:00
|
|
|
return regex
|
|
|
|
|
|
|
|
def run(self, info):
|
|
|
|
title = info['title']
|
|
|
|
match = re.match(self._titleregex, title)
|
|
|
|
if match is None:
|
2017-06-17 14:01:27 +02:00
|
|
|
self._downloader.to_screen(
|
|
|
|
'[fromtitle] Could not interpret title of video as "%s"'
|
|
|
|
% self._titleformat)
|
2016-08-06 01:21:39 +02:00
|
|
|
return [], info
|
2015-03-04 22:33:56 +01:00
|
|
|
for attribute, value in match.groupdict().items():
|
|
|
|
info[attribute] = value
|
2017-06-17 14:01:27 +02:00
|
|
|
self._downloader.to_screen(
|
|
|
|
'[fromtitle] parsed %s: %s'
|
|
|
|
% (attribute, value if value is not None else 'NA'))
|
2015-03-04 22:33:56 +01:00
|
|
|
|
2015-04-18 11:36:42 +02:00
|
|
|
return [], info
|