You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

115 lines
4.9 KiB

10 years ago
10 years ago
  1. # encoding: utf-8
  2. from __future__ import unicode_literals
  3. import re
  4. from .common import InfoExtractor
  5. from ..utils import (
  6. int_or_none,
  7. unified_strdate,
  8. ExtractorError,
  9. )
  10. class LifeNewsIE(InfoExtractor):
  11. IE_NAME = 'lifenews'
  12. IE_DESC = 'LIFE | NEWS'
  13. _VALID_URL = r'http://lifenews\.ru/(?:mobile/)?news/(?P<id>\d+)'
  14. _TESTS = [{
  15. 'url': 'http://lifenews.ru/news/126342',
  16. 'md5': 'e1b50a5c5fb98a6a544250f2e0db570a',
  17. 'info_dict': {
  18. 'id': '126342',
  19. 'ext': 'mp4',
  20. 'title': 'МВД разыскивает мужчин, оставивших в IKEA сумку с автоматом',
  21. 'description': 'Камеры наблюдения гипермаркета зафиксировали троих мужчин, спрятавших оружейный арсенал в камере хранения.',
  22. 'thumbnail': 're:http://.*\.jpg',
  23. 'upload_date': '20140130',
  24. }
  25. }, {
  26. # video in <iframe>
  27. 'url': 'http://lifenews.ru/news/152125',
  28. 'md5': '77d19a6f0886cd76bdbf44b4d971a273',
  29. 'info_dict': {
  30. 'id': '152125',
  31. 'ext': 'mp4',
  32. 'title': 'В Сети появилось видео захвата «Правым сектором» колхозных полей ',
  33. 'description': 'Жители двух поселков Днепропетровской области не простили радикалам угрозу лишения плодородных земель и пошли в лобовую. ',
  34. 'upload_date': '20150402',
  35. 'uploader': 'embed.life.ru',
  36. }
  37. }, {
  38. 'url': 'http://lifenews.ru/news/153461',
  39. 'md5': '9b6ef8bc0ffa25aebc8bdb40d89ab795',
  40. 'info_dict': {
  41. 'id': '153461',
  42. 'ext': 'mp4',
  43. 'title': 'В Москве спасли потерявшегося медвежонка, который спрятался на дереве',
  44. 'description': 'Маленький хищник не смог найти дорогу домой и обрел временное убежище на тополе недалеко от жилого массива, пока его не нашла соседская собака.',
  45. 'upload_date': '20150505',
  46. 'uploader': 'embed.life.ru',
  47. }
  48. }]
  49. def _real_extract(self, url):
  50. mobj = re.match(self._VALID_URL, url)
  51. video_id = mobj.group('id')
  52. webpage = self._download_webpage('http://lifenews.ru/news/%s' % video_id, video_id, 'Downloading page')
  53. videos = re.findall(r'<video.*?poster="(?P<poster>[^"]+)".*?src="(?P<video>[^"]+)".*?></video>', webpage)
  54. iframe_link = self._html_search_regex(
  55. '<iframe[^>]+src="([^"]+)', webpage, 'iframe link', default=None)
  56. if not videos and not iframe_link:
  57. raise ExtractorError('No media links available for %s' % video_id)
  58. title = self._og_search_title(webpage)
  59. TITLE_SUFFIX = ' - Первый по срочным новостям — LIFE | NEWS'
  60. if title.endswith(TITLE_SUFFIX):
  61. title = title[:-len(TITLE_SUFFIX)]
  62. description = self._og_search_description(webpage)
  63. view_count = self._html_search_regex(
  64. r'<div class=\'views\'>\s*(\d+)\s*</div>', webpage, 'view count', fatal=False)
  65. comment_count = self._html_search_regex(
  66. r'<div class=\'comments\'>\s*<span class=\'counter\'>\s*(\d+)\s*</span>', webpage, 'comment count', fatal=False)
  67. upload_date = self._html_search_regex(
  68. r'<time datetime=\'([^\']+)\'>', webpage, 'upload date', fatal=False)
  69. if upload_date is not None:
  70. upload_date = unified_strdate(upload_date)
  71. common_info = {
  72. 'description': description,
  73. 'view_count': int_or_none(view_count),
  74. 'comment_count': int_or_none(comment_count),
  75. 'upload_date': upload_date,
  76. }
  77. def make_entry(video_id, media, video_number=None):
  78. cur_info = dict(common_info)
  79. cur_info.update({
  80. 'id': video_id,
  81. 'url': media[1],
  82. 'thumbnail': media[0],
  83. 'title': title if video_number is None else '%s-video%s' % (title, video_number),
  84. })
  85. return cur_info
  86. if iframe_link:
  87. iframe_link = self._proto_relative_url(iframe_link, 'http:')
  88. cur_info = dict(common_info)
  89. cur_info.update({
  90. '_type': 'url_transparent',
  91. 'id': video_id,
  92. 'title': title,
  93. 'url': iframe_link,
  94. })
  95. return cur_info
  96. if len(videos) == 1:
  97. return make_entry(video_id, videos[0])
  98. else:
  99. return [make_entry(video_id, media, video_number + 1) for video_number, media in enumerate(videos)]