Merge branch 'compat-getenv-and-expanduser' of https://github.com/dstftw/youtube...
[youtube-dl] / youtube_dl / extractor / condenast.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 import re
5 import json
6
7 from .common import InfoExtractor
8 from ..utils import (
9     compat_urllib_parse,
10     orderedSet,
11     compat_urllib_parse_urlparse,
12     compat_urlparse,
13 )
14
15
16 class CondeNastIE(InfoExtractor):
17     """
18     Condé Nast is a media group, some of its sites use a custom HTML5 player
19     that works the same in all of them.
20     """
21
22     # The keys are the supported sites and the values are the name to be shown
23     # to the user and in the extractor description.
24     _SITES = {
25         'wired': 'WIRED',
26         'gq': 'GQ',
27         'vogue': 'Vogue',
28         'glamour': 'Glamour',
29         'wmagazine': 'W Magazine',
30         'vanityfair': 'Vanity Fair',
31         'cnevids': 'Condé Nast',
32     }
33
34     _VALID_URL = r'http://(video|www|player)\.(?P<site>%s)\.com/(?P<type>watch|series|video|embed)/(?P<id>[^/?#]+)' % '|'.join(_SITES.keys())
35     IE_DESC = 'Condé Nast media group: %s' % ', '.join(sorted(_SITES.values()))
36
37     EMBED_URL = r'(?:https?:)?//player\.(?P<site>%s)\.com/(?P<type>embed)/.+?' % '|'.join(_SITES.keys())
38
39     _TEST = {
40         'url': 'http://video.wired.com/watch/3d-printed-speakers-lit-with-led',
41         'md5': '1921f713ed48aabd715691f774c451f7',
42         'info_dict': {
43             'id': '5171b343c2b4c00dd0c1ccb3',
44             'ext': 'mp4',
45             'title': '3D Printed Speakers Lit With LED',
46             'description': 'Check out these beautiful 3D printed LED speakers.  You can\'t actually buy them, but LumiGeek is working on a board that will let you make you\'re own.',
47         }
48     }
49
50     def _extract_series(self, url, webpage):
51         title = self._html_search_regex(r'<div class="cne-series-info">.*?<h1>(.+?)</h1>',
52                                         webpage, 'series title', flags=re.DOTALL)
53         url_object = compat_urllib_parse_urlparse(url)
54         base_url = '%s://%s' % (url_object.scheme, url_object.netloc)
55         m_paths = re.finditer(r'<p class="cne-thumb-title">.*?<a href="(/watch/.+?)["\?]',
56                               webpage, flags=re.DOTALL)
57         paths = orderedSet(m.group(1) for m in m_paths)
58         build_url = lambda path: compat_urlparse.urljoin(base_url, path)
59         entries = [self.url_result(build_url(path), 'CondeNast') for path in paths]
60         return self.playlist_result(entries, playlist_title=title)
61
62     def _extract_video(self, webpage, url_type):
63         if url_type != 'embed':
64             description = self._html_search_regex(
65                 [
66                     r'<div class="cne-video-description">(.+?)</div>',
67                     r'<div class="video-post-content">(.+?)</div>',
68                 ],
69                 webpage, 'description', fatal=False, flags=re.DOTALL)
70         else:
71             description = None
72         params = self._search_regex(r'var params = {(.+?)}[;,]', webpage,
73                                     'player params', flags=re.DOTALL)
74         video_id = self._search_regex(r'videoId: [\'"](.+?)[\'"]', params, 'video id')
75         player_id = self._search_regex(r'playerId: [\'"](.+?)[\'"]', params, 'player id')
76         target = self._search_regex(r'target: [\'"](.+?)[\'"]', params, 'target')
77         data = compat_urllib_parse.urlencode({'videoId': video_id,
78                                               'playerId': player_id,
79                                               'target': target,
80                                               })
81         base_info_url = self._search_regex(r'url = [\'"](.+?)[\'"][,;]',
82                                            webpage, 'base info url',
83                                            default='http://player.cnevids.com/player/loader.js?')
84         info_url = base_info_url + data
85         info_page = self._download_webpage(info_url, video_id,
86                                            'Downloading video info')
87         video_info = self._search_regex(r'var video = ({.+?});', info_page, 'video info')
88         video_info = json.loads(video_info)
89
90         formats = [{
91             'format_id': '%s-%s' % (fdata['type'].split('/')[-1], fdata['quality']),
92             'url': fdata['src'],
93             'ext': fdata['type'].split('/')[-1],
94             'quality': 1 if fdata['quality'] == 'high' else 0,
95         } for fdata in video_info['sources'][0]]
96         self._sort_formats(formats)
97
98         return {
99             'id': video_id,
100             'formats': formats,
101             'title': video_info['title'],
102             'thumbnail': video_info['poster_frame'],
103             'description': description,
104         }
105
106     def _real_extract(self, url):
107         mobj = re.match(self._VALID_URL, url)
108         site = mobj.group('site')
109         url_type = mobj.group('type')
110         item_id = mobj.group('id')
111
112         self.to_screen('Extracting from %s with the Condé Nast extractor' % self._SITES[site])
113         webpage = self._download_webpage(url, item_id)
114
115         if url_type == 'series':
116             return self._extract_series(url, webpage)
117         else:
118             return self._extract_video(webpage, url_type)