nhl.py 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. from __future__ import unicode_literals
  2. import re
  3. import json
  4. import os
  5. from .common import InfoExtractor
  6. from ..compat import (
  7. compat_urlparse,
  8. compat_urllib_parse,
  9. compat_urllib_parse_urlparse
  10. )
  11. from ..utils import (
  12. unified_strdate,
  13. )
  14. class NHLBaseInfoExtractor(InfoExtractor):
  15. @staticmethod
  16. def _fix_json(json_string):
  17. return json_string.replace('\\\'', '\'')
  18. def _real_extract_video(self, video_id):
  19. vid_parts = video_id.split(',')
  20. if len(vid_parts) == 3:
  21. video_id = '%s0%s%s-X-h' % (vid_parts[0][:4], vid_parts[1], vid_parts[2].rjust(4, '0'))
  22. json_url = 'http://video.nhl.com/videocenter/servlets/playlist?ids=%s&format=json' % video_id
  23. data = self._download_json(
  24. json_url, video_id, transform_source=self._fix_json)
  25. return self._extract_video(data[0])
  26. def _extract_video(self, info):
  27. video_id = info['id']
  28. self.report_extraction(video_id)
  29. initial_video_url = info['publishPoint']
  30. if info['formats'] == '1':
  31. parsed_url = compat_urllib_parse_urlparse(initial_video_url)
  32. filename, ext = os.path.splitext(parsed_url.path)
  33. path = '%s_sd%s' % (filename, ext)
  34. data = compat_urllib_parse.urlencode({
  35. 'type': 'fvod',
  36. 'path': compat_urlparse.urlunparse(parsed_url[:2] + (path,) + parsed_url[3:])
  37. })
  38. path_url = 'http://video.nhl.com/videocenter/servlets/encryptvideopath?' + data
  39. path_doc = self._download_xml(
  40. path_url, video_id, 'Downloading final video url')
  41. video_url = path_doc.find('path').text
  42. else:
  43. video_url = initial_video_url
  44. join = compat_urlparse.urljoin
  45. return {
  46. 'id': video_id,
  47. 'title': info['name'],
  48. 'url': video_url,
  49. 'description': info['description'],
  50. 'duration': int(info['duration']),
  51. 'thumbnail': join(join(video_url, '/u/'), info['bigImage']),
  52. 'upload_date': unified_strdate(info['releaseDate'].split('.')[0]),
  53. }
  54. class NHLIE(NHLBaseInfoExtractor):
  55. IE_NAME = 'nhl.com'
  56. _VALID_URL = r'https?://video(?P<team>\.[^.]*)?\.nhl\.com/videocenter/(?:console)?(?:\?(?:.*?[?&])?)(?:id|hlg)=(?P<id>[-0-9a-zA-Z,]+)'
  57. _TESTS = [{
  58. 'url': 'http://video.canucks.nhl.com/videocenter/console?catid=6?id=453614',
  59. 'md5': 'db704a4ea09e8d3988c85e36cc892d09',
  60. 'info_dict': {
  61. 'id': '453614',
  62. 'ext': 'mp4',
  63. 'title': 'Quick clip: Weise 4-3 goal vs Flames',
  64. 'description': 'Dale Weise scores his first of the season to put the Canucks up 4-3.',
  65. 'duration': 18,
  66. 'upload_date': '20131006',
  67. },
  68. }, {
  69. 'url': 'http://video.nhl.com/videocenter/console?id=2014020024-628-h',
  70. 'md5': 'd22e82bc592f52d37d24b03531ee9696',
  71. 'info_dict': {
  72. 'id': '2014020024-628-h',
  73. 'ext': 'mp4',
  74. 'title': 'Alex Galchenyuk Goal on Ray Emery (14:40/3rd)',
  75. 'description': 'Home broadcast - Montreal Canadiens at Philadelphia Flyers - October 11, 2014',
  76. 'duration': 0,
  77. 'upload_date': '20141011',
  78. },
  79. }, {
  80. 'url': 'http://video.mapleleafs.nhl.com/videocenter/console?id=58665&catid=802',
  81. 'md5': 'c78fc64ea01777e426cfc202b746c825',
  82. 'info_dict': {
  83. 'id': '58665',
  84. 'ext': 'flv',
  85. 'title': 'Classic Game In Six - April 22, 1979',
  86. '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.',
  87. 'duration': 400,
  88. 'upload_date': '20100129'
  89. },
  90. }, {
  91. 'url': 'http://video.flames.nhl.com/videocenter/console?id=630616',
  92. 'only_matching': True,
  93. }, {
  94. 'url': 'http://video.nhl.com/videocenter/?id=736722',
  95. 'only_matching': True,
  96. }, {
  97. 'url': 'http://video.nhl.com/videocenter/console?hlg=20142015,2,299&lang=en',
  98. 'md5': '076fcb88c255154aacbf0a7accc3f340',
  99. 'info_dict': {
  100. 'id': '2014020299-X-h',
  101. 'ext': 'mp4',
  102. 'title': 'Penguins at Islanders / Game Highlights',
  103. 'description': 'Home broadcast - Pittsburgh Penguins at New York Islanders - November 22, 2014',
  104. 'duration': 268,
  105. 'upload_date': '20141122',
  106. }
  107. }]
  108. def _real_extract(self, url):
  109. video_id = self._match_id(url)
  110. return self._real_extract_video(video_id)
  111. class NHLNewsIE(NHLBaseInfoExtractor):
  112. IE_NAME = 'nhl.com:news'
  113. IE_DESC = 'NHL news'
  114. _VALID_URL = r'https?://(?:www\.)?nhl\.com/ice/news\.html?(?:\?(?:.*?[?&])?)id=(?P<id>[-0-9a-zA-Z]+)'
  115. _TEST = {
  116. 'url': 'http://www.nhl.com/ice/news.htm?id=750727',
  117. 'md5': '4b3d1262e177687a3009937bd9ec0be8',
  118. 'info_dict': {
  119. 'id': '736722',
  120. 'ext': 'mp4',
  121. 'title': 'Cal Clutterbuck has been fined $2,000',
  122. 'description': 'md5:45fe547d30edab88b23e0dd0ab1ed9e6',
  123. 'duration': 37,
  124. 'upload_date': '20150128',
  125. },
  126. }
  127. def _real_extract(self, url):
  128. news_id = self._match_id(url)
  129. webpage = self._download_webpage(url, news_id)
  130. video_id = self._search_regex(
  131. [r'pVid(\d+)', r"nlid\s*:\s*'(\d+)'"],
  132. webpage, 'video id')
  133. return self._real_extract_video(video_id)
  134. class NHLVideocenterIE(NHLBaseInfoExtractor):
  135. IE_NAME = 'nhl.com:videocenter'
  136. IE_DESC = 'NHL videocenter category'
  137. _VALID_URL = r'https?://video\.(?P<team>[^.]*)\.nhl\.com/videocenter/(console\?[^(id=)]*catid=(?P<catid>[0-9]+)(?![&?]id=).*?)?$'
  138. _TEST = {
  139. 'url': 'http://video.canucks.nhl.com/videocenter/console?catid=999',
  140. 'info_dict': {
  141. 'id': '999',
  142. 'title': 'Highlights',
  143. },
  144. 'playlist_count': 12,
  145. }
  146. def _real_extract(self, url):
  147. mobj = re.match(self._VALID_URL, url)
  148. team = mobj.group('team')
  149. webpage = self._download_webpage(url, team)
  150. cat_id = self._search_regex(
  151. [r'var defaultCatId = "(.+?)";',
  152. r'{statusIndex:0,index:0,.*?id:(.*?),'],
  153. webpage, 'category id')
  154. playlist_title = self._html_search_regex(
  155. r'tab0"[^>]*?>(.*?)</td>',
  156. webpage, 'playlist title', flags=re.DOTALL).lower().capitalize()
  157. data = compat_urllib_parse.urlencode({
  158. 'cid': cat_id,
  159. # This is the default value
  160. 'count': 12,
  161. 'ptrs': 3,
  162. 'format': 'json',
  163. })
  164. path = '/videocenter/servlets/browse?' + data
  165. request_url = compat_urlparse.urljoin(url, path)
  166. response = self._download_webpage(request_url, playlist_title)
  167. response = self._fix_json(response)
  168. if not response.strip():
  169. self._downloader.report_warning('Got an empty reponse, trying '
  170. 'adding the "newvideos" parameter')
  171. response = self._download_webpage(request_url + '&newvideos=true',
  172. playlist_title)
  173. response = self._fix_json(response)
  174. videos = json.loads(response)
  175. return {
  176. '_type': 'playlist',
  177. 'title': playlist_title,
  178. 'id': cat_id,
  179. 'entries': [self._extract_video(v) for v in videos],
  180. }