1 from __future__ 
import unicode_literals
 
   7 from .common 
import InfoExtractor
 
  11     compat_urllib_parse_urlparse
 
  18 class NHLBaseInfoExtractor(InfoExtractor
): 
  20     def _fix_json(json_string
): 
  21         return json_string
.replace('\\\'', '\'') 
  23     def _real_extract_video(self
, video_id
): 
  24         vid_parts 
= video_id
.split(',') 
  25         if len(vid_parts
) == 3: 
  26             video_id 
= '%s0%s%s-X-h' % (vid_parts
[0][:4], vid_parts
[1], vid_parts
[2].rjust(4, '0')) 
  27         json_url 
= 'http://video.nhl.com/videocenter/servlets/playlist?ids=%s&format=json' % video_id
 
  28         data 
= self
._download
_json
( 
  29             json_url
, video_id
, transform_source
=self
._fix
_json
) 
  30         return self
._extract
_video
(data
[0]) 
  32     def _extract_video(self
, info
): 
  34         self
.report_extraction(video_id
) 
  36         initial_video_url 
= info
['publishPoint'] 
  37         if info
['formats'] == '1': 
  38             parsed_url 
= compat_urllib_parse_urlparse(initial_video_url
) 
  39             filename
, ext 
= os
.path
.splitext(parsed_url
.path
) 
  40             path 
= '%s_sd%s' % (filename
, ext
) 
  41             data 
= compat_urllib_parse
.urlencode({ 
  43                 'path': compat_urlparse
.urlunparse(parsed_url
[:2] + (path
,) + parsed_url
[3:]) 
  45             path_url 
= 'http://video.nhl.com/videocenter/servlets/encryptvideopath?' + data
 
  46             path_doc 
= self
._download
_xml
( 
  47                 path_url
, video_id
, 'Downloading final video url') 
  48             video_url 
= path_doc
.find('path').text
 
  50             video_url 
= initial_video_url
 
  52         join 
= compat_urlparse
.urljoin
 
  55             'title': info
['name'], 
  57             'description': info
['description'], 
  58             'duration': int(info
['duration']), 
  59             'thumbnail': join(join(video_url
, '/u/'), info
['bigImage']), 
  60             'upload_date': unified_strdate(info
['releaseDate'].split('.')[0]), 
  62         if video_url
.startswith('rtmp:'): 
  63             mobj 
= re
.match(r
'(?P<tc_url>rtmp://[^/]+/(?P<app>[a-z0-9/]+))/(?P<play_path>mp4:.*)', video_url
) 
  65                 'tc_url': mobj
.group('tc_url'), 
  66                 'play_path': mobj
.group('play_path'), 
  67                 'app': mobj
.group('app'), 
  73 class NHLIE(NHLBaseInfoExtractor
): 
  75     _VALID_URL 
= r
'https?://video(?P<team>\.[^.]*)?\.nhl\.com/videocenter/(?:console)?(?:\?(?:.*?[?&])?)(?:id|hlg)=(?P<id>[-0-9a-zA-Z,]+)' 
  78         'url': 'http://video.canucks.nhl.com/videocenter/console?catid=6?id=453614', 
  79         'md5': 'db704a4ea09e8d3988c85e36cc892d09', 
  83             'title': 'Quick clip: Weise 4-3 goal vs Flames', 
  84             'description': 'Dale Weise scores his first of the season to put the Canucks up 4-3.', 
  86             'upload_date': '20131006', 
  89         'url': 'http://video.nhl.com/videocenter/console?id=2014020024-628-h', 
  90         'md5': 'd22e82bc592f52d37d24b03531ee9696', 
  92             'id': '2014020024-628-h', 
  94             'title': 'Alex Galchenyuk Goal on Ray Emery (14:40/3rd)', 
  95             'description': 'Home broadcast - Montreal Canadiens at Philadelphia Flyers - October 11, 2014', 
  97             'upload_date': '20141011', 
 100         'url': 'http://video.mapleleafs.nhl.com/videocenter/console?id=58665&catid=802', 
 101         'md5': 'c78fc64ea01777e426cfc202b746c825', 
 105             'title': 'Classic Game In Six - April 22, 1979', 
 106             'description': 'It was the last playoff game for the Leafs in the decade, and the last time the Leafs and Habs played in the playoffs. Great game, not a great ending.', 
 108             'upload_date': '20100129' 
 111         'url': 'http://video.flames.nhl.com/videocenter/console?id=630616', 
 112         'only_matching': True, 
 114         'url': 'http://video.nhl.com/videocenter/?id=736722', 
 115         'only_matching': True, 
 117         'url': 'http://video.nhl.com/videocenter/console?hlg=20142015,2,299&lang=en', 
 118         'md5': '076fcb88c255154aacbf0a7accc3f340', 
 120             'id': '2014020299-X-h', 
 122             'title': 'Penguins at Islanders / Game Highlights', 
 123             'description': 'Home broadcast - Pittsburgh Penguins at New York Islanders - November 22, 2014', 
 125             'upload_date': '20141122', 
 128         'url': 'http://video.oilers.nhl.com/videocenter/console?id=691469&catid=4', 
 132             'title': 'RAW | Craig MacTavish Full Press Conference', 
 133             'description': 'Oilers GM Craig MacTavish addresses the media at Rexall Place on Friday.', 
 134             'upload_date': '20141205', 
 137             'skip_download': True,  # Requires rtmpdump 
 141     def _real_extract(self
, url
): 
 142         video_id 
= self
._match
_id
(url
) 
 143         return self
._real
_extract
_video
(video_id
) 
 146 class NHLNewsIE(NHLBaseInfoExtractor
): 
 147     IE_NAME 
= 'nhl.com:news' 
 149     _VALID_URL 
= r
'https?://(?:www\.)?nhl\.com/ice/news\.html?(?:\?(?:.*?[?&])?)id=(?P<id>[-0-9a-zA-Z]+)' 
 152         'url': 'http://www.nhl.com/ice/news.htm?id=750727', 
 153         'md5': '4b3d1262e177687a3009937bd9ec0be8', 
 157             'title': 'Cal Clutterbuck has been fined $2,000', 
 158             'description': 'md5:45fe547d30edab88b23e0dd0ab1ed9e6', 
 160             'upload_date': '20150128', 
 164     def _real_extract(self
, url
): 
 165         news_id 
= self
._match
_id
(url
) 
 166         webpage 
= self
._download
_webpage
(url
, news_id
) 
 167         video_id 
= self
._search
_regex
( 
 168             [r
'pVid(\d+)', r
"nlid\s*:\s*'(\d+)'"], 
 170         return self
._real
_extract
_video
(video_id
) 
 173 class NHLVideocenterIE(NHLBaseInfoExtractor
): 
 174     IE_NAME 
= 'nhl.com:videocenter' 
 175     IE_DESC 
= 'NHL videocenter category' 
 176     _VALID_URL 
= r
'https?://video\.(?P<team>[^.]*)\.nhl\.com/videocenter/(console\?[^(id=)]*catid=(?P<catid>[0-9]+)(?![&?]id=).*?)?$' 
 178         'url': 'http://video.canucks.nhl.com/videocenter/console?catid=999', 
 181             'title': 'Highlights', 
 183         'playlist_count': 12, 
 186     def _real_extract(self
, url
): 
 187         mobj 
= re
.match(self
._VALID
_URL
, url
) 
 188         team 
= mobj
.group('team') 
 189         webpage 
= self
._download
_webpage
(url
, team
) 
 190         cat_id 
= self
._search
_regex
( 
 191             [r
'var defaultCatId = "(.+?)";', 
 192              r
'{statusIndex:0,index:0,.*?id:(.*?),'], 
 193             webpage
, 'category id') 
 194         playlist_title 
= self
._html
_search
_regex
( 
 195             r
'tab0"[^>]*?>(.*?)</td>', 
 196             webpage
, 'playlist title', flags
=re
.DOTALL
).lower().capitalize() 
 198         data 
= compat_urllib_parse
.urlencode({ 
 200             # This is the default value 
 205         path 
= '/videocenter/servlets/browse?' + data
 
 206         request_url 
= compat_urlparse
.urljoin(url
, path
) 
 207         response 
= self
._download
_webpage
(request_url
, playlist_title
) 
 208         response 
= self
._fix
_json
(response
) 
 209         if not response
.strip(): 
 210             self
._downloader
.report_warning('Got an empty reponse, trying ' 
 211                                             'adding the "newvideos" parameter') 
 212             response 
= self
._download
_webpage
(request_url 
+ '&newvideos=true', 
 214             response 
= self
._fix
_json
(response
) 
 215         videos 
= json
.loads(response
) 
 219             'title': playlist_title
, 
 221             'entries': [self
._extract
_video
(v
) for v 
in videos
],