]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/porn91.py
[mangomolo] add support for Mangomolo embeds
[yt-dlp.git] / youtube_dl / extractor / porn91.py
CommitLineData
d90b3854
P
1# encoding: utf-8
2from __future__ import unicode_literals
3
d95114dd 4from ..compat import (
d95114dd 5 compat_urllib_parse_unquote,
15707c7e 6 compat_urllib_parse_urlencode,
d95114dd 7)
d90b3854 8from .common import InfoExtractor
a80601f8
YCH
9from ..utils import (
10 parse_duration,
11 int_or_none,
d05a1dbe 12 ExtractorError,
a80601f8 13)
d90b3854
P
14
15
16class Porn91IE(InfoExtractor):
17 IE_NAME = '91porn'
18 _VALID_URL = r'(?:https?://)(?:www\.|)91porn\.com/.+?\?viewkey=(?P<id>[\w\d]+)'
19
20 _TEST = {
9ff811c5
YCH
21 'url': 'http://91porn.com/view_video.php?viewkey=7e42283b4f5ab36da134',
22 'md5': '6df8f6d028bc8b14f5dbd73af742fb20',
23 'info_dict': {
24 'id': '7e42283b4f5ab36da134',
25 'title': '18岁大一漂亮学妹,水嫩性感,再爽一次!',
a80601f8
YCH
26 'ext': 'mp4',
27 'duration': 431,
b61b7787 28 'age_limit': 18,
9ff811c5 29 }
d90b3854
P
30 }
31
32 def _real_extract(self, url):
1c222387 33 video_id = self._match_id(url)
d90b3854 34 self._set_cookie('91porn.com', 'language', 'cn_CN')
298c04b4
S
35
36 webpage = self._download_webpage(
37 'http://91porn.com/view_video.php?viewkey=%s' % video_id, video_id)
d05a1dbe
YCH
38
39 if '作为游客,你每天只可观看10个视频' in webpage:
40 raise ExtractorError('91 Porn says: Daily limit 10 videos exceeded', expected=True)
41
703d78bb 42 title = self._search_regex(
1c222387 43 r'<div id="viewvideo-title">([^<]+)</div>', webpage, 'title')
703d78bb 44 title = title.replace('\n', '')
d90b3854
P
45
46 # get real url
1c222387
YCH
47 file_id = self._search_regex(
48 r'so.addVariable\(\'file\',\'(\d+)\'', webpage, 'file id')
49 sec_code = self._search_regex(
50 r'so.addVariable\(\'seccode\',\'([^\']+)\'', webpage, 'sec code')
51 max_vid = self._search_regex(
52 r'so.addVariable\(\'max_vid\',\'(\d+)\'', webpage, 'max vid')
15707c7e 53 url_params = compat_urllib_parse_urlencode({
1c222387 54 'VID': file_id,
d90b3854 55 'mp4': '1',
1c222387
YCH
56 'seccode': sec_code,
57 'max_vid': max_vid,
d90b3854 58 })
1c222387
YCH
59 info_cn = self._download_webpage(
60 'http://91porn.com/getfile.php?' + url_params, video_id,
298c04b4 61 'Downloading real video url')
d95114dd
S
62 video_url = compat_urllib_parse_unquote(self._search_regex(
63 r'file=([^&]+)&', info_cn, 'url'))
d90b3854 64
a80601f8
YCH
65 duration = parse_duration(self._search_regex(
66 r'时长:\s*</span>\s*(\d+:\d+)', webpage, 'duration', fatal=False))
67
68 comment_count = int_or_none(self._search_regex(
69 r'留言:\s*</span>\s*(\d+)', webpage, 'comment count', fatal=False))
70
1c222387 71 return {
d90b3854
P
72 'id': video_id,
73 'title': title,
74 'url': video_url,
a80601f8
YCH
75 'duration': duration,
76 'comment_count': comment_count,
b61b7787 77 'age_limit': self._rta_search(webpage),
d90b3854 78 }