[9gag] Remove redundant test
[youtube-dl] / youtube_dl / extractor / ninegag.py
1 from __future__ import unicode_literals
2
3 import re
4 import json
5
6 from .common import InfoExtractor
7 from ..utils import str_to_int
8
9
10 class NineGagIE(InfoExtractor):
11     IE_NAME = '9gag'
12     _VALID_URL = r'https?://(?:www\.)?9gag\.com/tv/p/(?P<id>[a-zA-Z0-9]+)(?:/(?P<display_id>[^?#/]+))?'
13
14     _TESTS = [{
15         "url": "http://9gag.com/tv/p/Kk2X5/people-are-awesome-2013-is-absolutely-awesome",
16         "info_dict": {
17             "id": "Kk2X5",
18             "ext": "mp4",
19             "description": "This 3-minute video will make you smile and then make you feel untalented and insignificant. Anyway, you should share this awesomeness. (Thanks, Dino!)",
20             "title": "\"People Are Awesome 2013\" Is Absolutely Awesome",
21             'uploader_id': 'UCdEH6EjDKwtTe-sO2f0_1XA',
22             'uploader': 'CompilationChannel',
23             'upload_date': '20131110',
24             "view_count": int,
25             "thumbnail": "re:^https?://",
26         },
27         'add_ie': ['Youtube']
28     }, {
29         'url': 'http://9gag.com/tv/p/KklwM',
30         'only_matching': True,
31     }]
32     _EXTERNAL_VIDEO_PROVIDER = {
33         '1': {
34             'url': '%s',
35             'ie_key': 'Youtube',
36         },
37         '2': {
38             'url': 'http://player.vimeo.com/video/%s',
39             'ie_key': 'Vimeo',
40         },
41         '3': {
42             'url': 'http://instagram.com/p/%s',
43             'ie_key': 'Instagram',
44         },
45         '4': {
46             'url': 'http://vine.co/v/%s',
47             'ie_key': 'Vine',
48         },
49     }
50
51     def _real_extract(self, url):
52         mobj = re.match(self._VALID_URL, url)
53         video_id = mobj.group('id')
54         display_id = mobj.group('display_id') or video_id
55
56         webpage = self._download_webpage(url, display_id)
57
58         post_view = json.loads(self._html_search_regex(
59             r'var postView = new app\.PostView\({\s*post:\s*({.+?}),\s*posts:\s*prefetchedCurrentPost', webpage, 'post view'))
60
61         ie_key = None
62         source_url = post_view.get('sourceUrl')
63         if not source_url:
64             external_video_id = post_view['videoExternalId']
65             external_video_provider = post_view['videoExternalProvider']
66             source_url = self._EXTERNAL_VIDEO_PROVIDER[external_video_provider]['url'] % external_video_id
67             ie_key = self._EXTERNAL_VIDEO_PROVIDER[external_video_provider]['ie_key']
68         title = post_view['title']
69         description = post_view['description']
70         view_count = str_to_int(post_view['externalView'])
71         thumbnail = post_view.get('thumbnail_700w') or post_view.get('ogImageUrl') or post_view.get('thumbnail_300w')
72
73         return {
74             '_type': 'url_transparent',
75             'url': source_url,
76             'ie_key': ie_key,
77             'id': video_id,
78             'display_id': display_id,
79             'title': title,
80             'description': description,
81             'view_count': view_count,
82             'thumbnail': thumbnail,
83         }