Merge remote-tracking branch 'azeem/soundcloud_likes'
[youtube-dl] / youtube_dl / extractor / gorillavid.py
1 # -*- coding: utf-8 -*-
2 from __future__ import unicode_literals
3
4 import re
5
6 from .common import InfoExtractor
7 from ..utils import (
8     determine_ext,
9     compat_urllib_parse,
10     compat_urllib_request,
11 )
12
13
14 class GorillaVidIE(InfoExtractor):
15     IE_DESC = 'GorillaVid.in and daclips.in'
16     _VALID_URL = r'''(?x)
17         https?://(?:www\.)?
18             (?:daclips\.in|gorillavid\.in)/
19         (?:embed-)?(?P<id>[0-9a-zA-Z]+)(?:-[0-9]+x[0-9]+\.html)?
20     '''
21
22     _TESTS = [{
23         'url': 'http://gorillavid.in/06y9juieqpmi',
24         'md5': '5ae4a3580620380619678ee4875893ba',
25         'info_dict': {
26             'id': '06y9juieqpmi',
27             'ext': 'flv',
28             'title': 'Rebecca Black My Moment Official Music Video Reaction',
29             'thumbnail': 're:http://.*\.jpg',
30         },
31     }, {
32         'url': 'http://gorillavid.in/embed-z08zf8le23c6-960x480.html',
33         'md5': 'c9e293ca74d46cad638e199c3f3fe604',
34         'info_dict': {
35             'id': 'z08zf8le23c6',
36             'ext': 'mp4',
37             'title': 'Say something nice',
38             'thumbnail': 're:http://.*\.jpg',
39         },
40     }, {
41         'url': 'http://daclips.in/3rso4kdn6f9m',
42         'info_dict': {
43             'id': '3rso4kdn6f9m',
44             'ext': 'mp4',
45             'title': 'Micro Pig piglets ready on 16th July 2009',
46             'thumbnail': 're:http://.*\.jpg',
47         },
48     }]
49
50     def _real_extract(self, url):
51         mobj = re.match(self._VALID_URL, url)
52         video_id = mobj.group('id')
53
54         webpage = self._download_webpage(url, video_id)
55
56         fields = dict(re.findall(r'''(?x)<input\s+
57             type="hidden"\s+
58             name="([^"]+)"\s+
59             (?:id="[^"]+"\s+)?
60             value="([^"]*)"
61             ''', webpage))
62         
63         if fields['op'] == 'download1':
64             post = compat_urllib_parse.urlencode(fields)
65
66             req = compat_urllib_request.Request(url, post)
67             req.add_header('Content-type', 'application/x-www-form-urlencoded')
68
69             webpage = self._download_webpage(req, video_id, 'Downloading video page')
70
71         title = self._search_regex(r'style="z-index: [0-9]+;">([0-9a-zA-Z ]+)(?:-.+)?</span>', webpage, 'title')
72         thumbnail = self._search_regex(r'image:\'(http[^\']+)\',', webpage, 'thumbnail')
73         url = self._search_regex(r'file: \'(http[^\']+)\',', webpage, 'file url')
74
75         formats = [{
76             'format_id': 'sd',
77             'url': url,
78             'ext': determine_ext(url),
79             'quality': 1,
80         }]
81
82         return {
83             'id': video_id,
84             'title': title,
85             'thumbnail': thumbnail,
86             'formats': formats,
87         }