[fox] remove unused import
[youtube-dl] / youtube_dl / extractor / fox.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 from .adobepass import AdobePassIE
5 from ..utils import (
6     smuggle_url,
7     update_url_query,
8 )
9
10
11 class FOXIE(AdobePassIE):
12     _VALID_URL = r'https?://(?:www\.)?fox\.com/watch/(?P<id>[0-9]+)'
13     _TEST = {
14         'url': 'http://www.fox.com/watch/255180355939/7684182528',
15         'md5': 'ebd296fcc41dd4b19f8115d8461a3165',
16         'info_dict': {
17             'id': '255180355939',
18             'ext': 'mp4',
19             'title': 'Official Trailer: Gotham',
20             'description': 'Tracing the rise of the great DC Comics Super-Villains and vigilantes, Gotham reveals an entirely new chapter that has never been told.',
21             'duration': 129,
22             'timestamp': 1400020798,
23             'upload_date': '20140513',
24             'uploader': 'NEWA-FNG-FOXCOM',
25         },
26         'add_ie': ['ThePlatform'],
27     }
28
29     def _real_extract(self, url):
30         video_id = self._match_id(url)
31         webpage = self._download_webpage(url, video_id)
32
33         settings = self._parse_json(self._search_regex(
34             r'jQuery\.extend\(Drupal\.settings\s*,\s*({.+?})\);',
35             webpage, 'drupal settings'), video_id)
36         fox_pdk_player = settings['fox_pdk_player']
37         release_url = fox_pdk_player['release_url']
38         query = {
39             'mbr': 'true',
40             'switch': 'http'
41         }
42         if fox_pdk_player.get('access') == 'locked':
43             ap_p = settings['foxAdobePassProvider']
44             rating = ap_p.get('videoRating')
45             if rating == 'n/a':
46                 rating = None
47             resource = self._get_mvpd_resource('fbc-fox', None, ap_p['videoGUID'], rating)
48             query['auth'] = self._extract_mvpd_auth(url, video_id, 'fbc-fox', resource)
49
50         info = self._search_json_ld(webpage, video_id, fatal=False)
51         info.update({
52             '_type': 'url_transparent',
53             'ie_key': 'ThePlatform',
54             'url': smuggle_url(update_url_query(release_url, query), {'force_smil_url': True}),
55             'id': video_id,
56         })
57
58         return info