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