8a1c296dda8b57611a0e464387be43ab0fc9a370
[youtube-dl] / youtube_dl / extractor / played.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 import re
5 import os.path
6
7 from .common import InfoExtractor
8 from ..compat import (
9     compat_urllib_parse,
10     compat_urllib_request,
11 )
12 from ..utils import (
13     ExtractorError,
14 )
15
16
17 class PlayedIE(InfoExtractor):
18     IE_NAME = 'played.to'
19     _VALID_URL = r'https?://(?:www\.)?played\.to/(?P<id>[a-zA-Z0-9_-]+)'
20
21     _TEST = {
22         'url': 'http://played.to/j2f2sfiiukgt',
23         'md5': 'c2bd75a368e82980e7257bf500c00637',
24         'info_dict': {
25             'id': 'j2f2sfiiukgt',
26             'ext': 'flv',
27             'title': 'youtube-dl_test_video.mp4',
28         },
29         'skip': 'Removed for copyright infringement.',  # oh wow
30     }
31
32     def _real_extract(self, url):
33         video_id = self._match_id(url)
34         orig_webpage = self._download_webpage(url, video_id)
35
36         m_error = re.search(
37             r'(?s)Reason for deletion:.*?<b class="err"[^>]*>(?P<msg>[^<]+)</b>', orig_webpage)
38         if m_error:
39             raise ExtractorError(m_error.group('msg'), expected=True)
40
41         data = self._hidden_inputs(orig_webpage)
42
43         self._sleep(2, video_id)
44
45         post = compat_urllib_parse.urlencode(data)
46         headers = {
47             b'Content-Type': b'application/x-www-form-urlencoded',
48         }
49         req = compat_urllib_request.Request(url, post, headers)
50         webpage = self._download_webpage(
51             req, video_id, note='Downloading video page ...')
52
53         title = os.path.splitext(data['fname'])[0]
54
55         video_url = self._search_regex(
56             r'file: "?(.+?)",', webpage, 'video URL')
57
58         return {
59             'id': video_id,
60             'title': title,
61             'url': video_url,
62         }