]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/novamov.py
fix increment operator
[yt-dlp.git] / youtube_dl / extractor / novamov.py
CommitLineData
cc253000 1from __future__ import unicode_literals
2
3import re
4
5from .common import InfoExtractor
6from ..utils import (
7 ExtractorError,
8 compat_urlparse
9)
10
10bff13a 11
ce78943a
S
12class NovaMovIE(InfoExtractor):
13 IE_NAME = 'novamov'
14 IE_DESC = 'NovaMov'
15
17c5a007 16 _VALID_URL_TEMPLATE = r'http://(?:(?:www\.)?%(host)s/(?:file|video)/|(?:(?:embed|www)\.)%(host)s/embed\.php\?(?:.*?&)?v=)(?P<id>[a-z\d]{13})'
60ccc59a 17 _VALID_URL = _VALID_URL_TEMPLATE % {'host': 'novamov\.com'}
ce78943a
S
18
19 _HOST = 'www.novamov.com'
20
21 _FILE_DELETED_REGEX = r'This file no longer exists on our servers!</h2>'
22 _FILEKEY_REGEX = r'flashvars\.filekey="(?P<filekey>[^"]+)";'
23 _TITLE_REGEX = r'(?s)<div class="v_tab blockborder rounded5" id="v_tab1">\s*<h3>([^<]+)</h3>'
24 _DESCRIPTION_REGEX = r'(?s)<div class="v_tab blockborder rounded5" id="v_tab1">\s*<h3>[^<]+</h3><p>([^<]+)</p>'
cc253000 25
26 _TEST = {
27 'url': 'http://www.novamov.com/video/4rurhn9x446jj',
cc253000 28 'md5': '7205f346a52bbeba427603ba10d4b935',
29 'info_dict': {
ce78943a
S
30 'id': '4rurhn9x446jj',
31 'ext': 'flv',
cc253000 32 'title': 'search engine optimization',
33 'description': 'search engine optimization is used to rank the web page in the google search engine'
90f479b6
PH
34 },
35 'skip': '"Invalid token" errors abound (in web interface as well as youtube-dl, there is nothing we can do about it.)'
cc253000 36 }
37
38 def _real_extract(self, url):
39 mobj = re.match(self._VALID_URL, url)
17c5a007 40 video_id = mobj.group('id')
cc253000 41
ce78943a
S
42 page = self._download_webpage(
43 'http://%s/video/%s' % (self._HOST, video_id), video_id, 'Downloading video page')
cc253000 44
ce78943a 45 if re.search(self._FILE_DELETED_REGEX, page) is not None:
17c5a007 46 raise ExtractorError('Video %s does not exist' % video_id, expected=True)
cc253000 47
ce78943a 48 filekey = self._search_regex(self._FILEKEY_REGEX, page, 'filekey')
cc253000 49
ce78943a 50 title = self._html_search_regex(self._TITLE_REGEX, page, 'title', fatal=False)
ce78943a 51 description = self._html_search_regex(self._DESCRIPTION_REGEX, page, 'description', default='', fatal=False)
cc253000 52
10bff13a 53 api_response = self._download_webpage(
ce78943a
S
54 'http://%s/api/player.api.php?key=%s&file=%s' % (self._HOST, filekey, video_id), video_id,
55 'Downloading video api response')
cc253000 56
57 response = compat_urlparse.parse_qs(api_response)
58
59 if 'error_msg' in response:
ce78943a 60 raise ExtractorError('%s returned error: %s' % (self.IE_NAME, response['error_msg'][0]), expected=True)
cc253000 61
62 video_url = response['url'][0]
63
64 return {
65 'id': video_id,
66 'url': video_url,
67 'title': title,
68 'description': description
ce78943a 69 }