]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/pornotube.py
Fix "invalid escape sequences" error on Python 3.6
[yt-dlp.git] / youtube_dl / extractor / pornotube.py
CommitLineData
51ed9fce
PH
1from __future__ import unicode_literals
2
4237ba10 3import json
1183b85f
PH
4
5from .common import InfoExtractor
647a7bf5 6from ..utils import int_or_none
1183b85f
PH
7
8
9class PornotubeIE(InfoExtractor):
4237ba10 10 _VALID_URL = r'https?://(?:\w+\.)?pornotube\.com/(?:[^?#]*?)/video/(?P<id>[0-9]+)'
6f5ac90c 11 _TEST = {
4237ba10
PH
12 'url': 'http://www.pornotube.com/orientation/straight/video/4964/title/weird-hot-and-wet-science',
13 'md5': '60fc5a4f0d93a97968fc7999d98260c9',
51ed9fce 14 'info_dict': {
4237ba10
PH
15 'id': '4964',
16 'ext': 'mp4',
17 'upload_date': '20141203',
18 'title': 'Weird Hot and Wet Science',
19 'description': 'md5:a8304bef7ef06cb4ab476ca6029b01b0',
20 'categories': ['Adult Humor', 'Blondes'],
21 'uploader': 'Alpha Blue Archives',
ec85ded8 22 'thumbnail': r're:^https?://.*\.jpg$',
4237ba10
PH
23 'timestamp': 1417582800,
24 'age_limit': 18,
6f5ac90c
PH
25 }
26 }
1183b85f
PH
27
28 def _real_extract(self, url):
4237ba10 29 video_id = self._match_id(url)
1183b85f 30
647a7bf5
S
31 token = self._download_json(
32 'https://api.aebn.net/auth/v2/origins/authenticate',
33 video_id, note='Downloading token',
34 data=json.dumps({'credentials': 'Clip Application'}).encode('utf-8'),
35 headers={
36 'Content-Type': 'application/json',
37 'Origin': 'http://www.pornotube.com',
38 })['tokenKey']
4237ba10 39
647a7bf5
S
40 video_url = self._download_json(
41 'https://api.aebn.net/delivery/v1/clips/%s/MP4' % video_id,
42 video_id, note='Downloading delivery information',
43 headers={'Authorization': token})['mediaUrl']
1183b85f 44
647a7bf5
S
45 FIELDS = (
46 'title', 'description', 'startSecond', 'endSecond', 'publishDate',
47 'studios{name}', 'categories{name}', 'movieId', 'primaryImageNumber'
48 )
1183b85f 49
4237ba10 50 info = self._download_json(
647a7bf5
S
51 'https://api.aebn.net/content/v2/clips/%s?fields=%s'
52 % (video_id, ','.join(FIELDS)), video_id,
53 note='Downloading metadata',
54 headers={'Authorization': token})
55
56 if isinstance(info, list):
57 info = info[0]
58
59 title = info['title']
1183b85f 60
4237ba10
PH
61 timestamp = int_or_none(info.get('publishDate'), scale=1000)
62 uploader = info.get('studios', [{}])[0].get('name')
647a7bf5
S
63 movie_id = info.get('movieId')
64 primary_image_number = info.get('primaryImageNumber')
65 thumbnail = None
66 if movie_id and primary_image_number:
67 thumbnail = 'http://pic.aebn.net/dis/t/%s/%s_%08d.jpg' % (
68 movie_id, movie_id, primary_image_number)
69 start = int_or_none(info.get('startSecond'))
70 end = int_or_none(info.get('endSecond'))
71 duration = end - start if start and end else None
72 categories = [c['name'] for c in info.get('categories', []) if c.get('name')]
1183b85f 73
51ed9fce
PH
74 return {
75 'id': video_id,
76 'url': video_url,
647a7bf5 77 'title': title,
4237ba10 78 'description': info.get('description'),
647a7bf5 79 'duration': duration,
4237ba10
PH
80 'timestamp': timestamp,
81 'uploader': uploader,
82 'thumbnail': thumbnail,
83 'categories': categories,
84 'age_limit': 18,
51ed9fce 85 }