| 
									
										
										
										
											2014-08-24 06:16:24 +02:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-12 19:44:25 +01:00
										 |  |  | import json | 
					
						
							| 
									
										
										
										
											2013-06-23 22:13:32 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2016-08-13 20:49:16 +07:00
										 |  |  | from ..utils import int_or_none | 
					
						
							| 
									
										
										
										
											2013-06-23 22:13:32 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class PornotubeIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2014-12-12 19:44:25 +01:00
										 |  |  |     _VALID_URL = r'https?://(?:\w+\.)?pornotube\.com/(?:[^?#]*?)/video/(?P<id>[0-9]+)' | 
					
						
							| 
									
										
										
										
											2013-06-27 20:46:46 +02:00
										 |  |  |     _TEST = { | 
					
						
							| 
									
										
										
										
											2014-12-12 19:44:25 +01:00
										 |  |  |         'url': 'http://www.pornotube.com/orientation/straight/video/4964/title/weird-hot-and-wet-science', | 
					
						
							|  |  |  |         'md5': '60fc5a4f0d93a97968fc7999d98260c9', | 
					
						
							| 
									
										
										
										
											2014-08-24 06:16:24 +02:00
										 |  |  |         'info_dict': { | 
					
						
							| 
									
										
										
										
											2014-12-12 19:44:25 +01:00
										 |  |  |             'id': '4964', | 
					
						
							|  |  |  |             'ext': 'mp4', | 
					
						
							|  |  |  |             'upload_date': '20141203', | 
					
						
							|  |  |  |             'title': 'Weird Hot and Wet Science', | 
					
						
							|  |  |  |             'description': 'md5:a8304bef7ef06cb4ab476ca6029b01b0', | 
					
						
							|  |  |  |             'categories': ['Adult Humor', 'Blondes'], | 
					
						
							|  |  |  |             'uploader': 'Alpha Blue Archives', | 
					
						
							| 
									
										
										
										
											2017-01-02 20:08:07 +08:00
										 |  |  |             'thumbnail': r're:^https?://.*\.jpg$', | 
					
						
							| 
									
										
										
										
											2014-12-12 19:44:25 +01:00
										 |  |  |             'timestamp': 1417582800, | 
					
						
							|  |  |  |             'age_limit': 18, | 
					
						
							| 
									
										
										
										
											2013-06-27 20:46:46 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-06-23 22:13:32 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2014-12-12 19:44:25 +01:00
										 |  |  |         video_id = self._match_id(url) | 
					
						
							| 
									
										
										
										
											2013-06-23 22:13:32 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-13 20:49:16 +07:00
										 |  |  |         token = self._download_json( | 
					
						
							|  |  |  |             'https://api.aebn.net/auth/v2/origins/authenticate', | 
					
						
							|  |  |  |             video_id, note='Downloading token', | 
					
						
							|  |  |  |             data=json.dumps({'credentials': 'Clip Application'}).encode('utf-8'), | 
					
						
							|  |  |  |             headers={ | 
					
						
							|  |  |  |                 'Content-Type': 'application/json', | 
					
						
							|  |  |  |                 'Origin': 'http://www.pornotube.com', | 
					
						
							|  |  |  |             })['tokenKey'] | 
					
						
							| 
									
										
										
										
											2014-12-12 19:44:25 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-13 20:49:16 +07:00
										 |  |  |         video_url = self._download_json( | 
					
						
							|  |  |  |             'https://api.aebn.net/delivery/v1/clips/%s/MP4' % video_id, | 
					
						
							|  |  |  |             video_id, note='Downloading delivery information', | 
					
						
							|  |  |  |             headers={'Authorization': token})['mediaUrl'] | 
					
						
							| 
									
										
										
										
											2013-06-23 22:13:32 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-13 20:49:16 +07:00
										 |  |  |         FIELDS = ( | 
					
						
							|  |  |  |             'title', 'description', 'startSecond', 'endSecond', 'publishDate', | 
					
						
							|  |  |  |             'studios{name}', 'categories{name}', 'movieId', 'primaryImageNumber' | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2013-06-23 22:13:32 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-12 19:44:25 +01:00
										 |  |  |         info = self._download_json( | 
					
						
							| 
									
										
										
										
											2016-08-13 20:49:16 +07:00
										 |  |  |             'https://api.aebn.net/content/v2/clips/%s?fields=%s' | 
					
						
							|  |  |  |             % (video_id, ','.join(FIELDS)), video_id, | 
					
						
							|  |  |  |             note='Downloading metadata', | 
					
						
							|  |  |  |             headers={'Authorization': token}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if isinstance(info, list): | 
					
						
							|  |  |  |             info = info[0] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         title = info['title'] | 
					
						
							| 
									
										
										
										
											2013-06-23 22:13:32 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-12 19:44:25 +01:00
										 |  |  |         timestamp = int_or_none(info.get('publishDate'), scale=1000) | 
					
						
							|  |  |  |         uploader = info.get('studios', [{}])[0].get('name') | 
					
						
							| 
									
										
										
										
											2016-08-13 20:49:16 +07:00
										 |  |  |         movie_id = info.get('movieId') | 
					
						
							|  |  |  |         primary_image_number = info.get('primaryImageNumber') | 
					
						
							|  |  |  |         thumbnail = None | 
					
						
							|  |  |  |         if movie_id and primary_image_number: | 
					
						
							|  |  |  |             thumbnail = 'http://pic.aebn.net/dis/t/%s/%s_%08d.jpg' % ( | 
					
						
							|  |  |  |                 movie_id, movie_id, primary_image_number) | 
					
						
							|  |  |  |         start = int_or_none(info.get('startSecond')) | 
					
						
							|  |  |  |         end = int_or_none(info.get('endSecond')) | 
					
						
							|  |  |  |         duration = end - start if start and end else None | 
					
						
							|  |  |  |         categories = [c['name'] for c in info.get('categories', []) if c.get('name')] | 
					
						
							| 
									
										
										
										
											2013-06-23 22:13:32 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-24 06:16:24 +02:00
										 |  |  |         return { | 
					
						
							|  |  |  |             'id': video_id, | 
					
						
							|  |  |  |             'url': video_url, | 
					
						
							| 
									
										
										
										
											2016-08-13 20:49:16 +07:00
										 |  |  |             'title': title, | 
					
						
							| 
									
										
										
										
											2014-12-12 19:44:25 +01:00
										 |  |  |             'description': info.get('description'), | 
					
						
							| 
									
										
										
										
											2016-08-13 20:49:16 +07:00
										 |  |  |             'duration': duration, | 
					
						
							| 
									
										
										
										
											2014-12-12 19:44:25 +01:00
										 |  |  |             'timestamp': timestamp, | 
					
						
							|  |  |  |             'uploader': uploader, | 
					
						
							|  |  |  |             'thumbnail': thumbnail, | 
					
						
							|  |  |  |             'categories': categories, | 
					
						
							|  |  |  |             'age_limit': 18, | 
					
						
							| 
									
										
										
										
											2014-08-24 06:16:24 +02:00
										 |  |  |         } |