| 
									
										
										
										
											2017-01-21 20:02:55 +13:00
										 |  |  | # coding: utf-8 | 
					
						
							|  |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							|  |  |  | from ..compat import ( | 
					
						
							|  |  |  |     compat_parse_qs, | 
					
						
							| 
									
										
										
										
											2017-01-22 03:43:27 +07:00
										 |  |  |     compat_str, | 
					
						
							| 
									
										
										
										
											2017-01-21 20:02:55 +13:00
										 |  |  | ) | 
					
						
							|  |  |  | from ..utils import ( | 
					
						
							|  |  |  |     int_or_none, | 
					
						
							|  |  |  |     try_get, | 
					
						
							| 
									
										
										
										
											2017-01-22 03:43:27 +07:00
										 |  |  |     unified_timestamp, | 
					
						
							| 
									
										
										
										
											2017-01-21 20:02:55 +13:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class PornFlipIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2018-04-23 04:03:11 +07:00
										 |  |  |     _VALID_URL = r'https?://(?:www\.)?pornflip\.com/(?:v|embed)/(?P<id>[^/?#&]+)' | 
					
						
							| 
									
										
										
										
											2017-01-22 03:43:27 +07:00
										 |  |  |     _TESTS = [{ | 
					
						
							| 
									
										
										
										
											2017-01-21 20:02:55 +13:00
										 |  |  |         'url': 'https://www.pornflip.com/v/wz7DfNhMmep', | 
					
						
							|  |  |  |         'md5': '98c46639849145ae1fd77af532a9278c', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': 'wz7DfNhMmep', | 
					
						
							|  |  |  |             'ext': 'mp4', | 
					
						
							|  |  |  |             'title': '2 Amateurs swallow make his dream cumshots true', | 
					
						
							|  |  |  |             'thumbnail': r're:^https?://.*\.jpg$', | 
					
						
							| 
									
										
										
										
											2017-01-22 03:43:27 +07:00
										 |  |  |             'duration': 112, | 
					
						
							|  |  |  |             'timestamp': 1481655502, | 
					
						
							|  |  |  |             'upload_date': '20161213', | 
					
						
							|  |  |  |             'uploader_id': '106786', | 
					
						
							|  |  |  |             'uploader': 'figifoto', | 
					
						
							|  |  |  |             'view_count': int, | 
					
						
							| 
									
										
										
										
											2017-01-21 20:02:55 +13:00
										 |  |  |             'age_limit': 18, | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-01-22 03:43:27 +07:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'https://www.pornflip.com/embed/wz7DfNhMmep', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							| 
									
										
										
										
											2017-10-06 22:26:31 +05:30
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'https://www.pornflip.com/v/EkRD6-vS2-s', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							|  |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'https://www.pornflip.com/embed/EkRD6-vS2-s', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							| 
									
										
										
										
											2018-04-23 04:03:11 +07:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'https://www.pornflip.com/v/NG9q6Pb_iK8', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							| 
									
										
										
										
											2017-01-22 03:43:27 +07:00
										 |  |  |     }] | 
					
						
							| 
									
										
										
										
											2017-01-21 20:02:55 +13:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							|  |  |  |         video_id = self._match_id(url) | 
					
						
							| 
									
										
										
										
											2017-01-22 03:43:27 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         webpage = self._download_webpage( | 
					
						
							|  |  |  |             'https://www.pornflip.com/v/%s' % video_id, video_id) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         flashvars = compat_parse_qs(self._search_regex( | 
					
						
							|  |  |  |             r'<embed[^>]+flashvars=(["\'])(?P<flashvars>(?:(?!\1).)+)\1', | 
					
						
							|  |  |  |             webpage, 'flashvars', group='flashvars')) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-21 20:02:55 +13:00
										 |  |  |         title = flashvars['video_vars[title]'][0] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-22 03:43:27 +07:00
										 |  |  |         def flashvar(kind): | 
					
						
							|  |  |  |             return try_get( | 
					
						
							|  |  |  |                 flashvars, lambda x: x['video_vars[%s]' % kind][0], compat_str) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         formats = [] | 
					
						
							|  |  |  |         for key, value in flashvars.items(): | 
					
						
							|  |  |  |             if not (value and isinstance(value, list)): | 
					
						
							|  |  |  |                 continue | 
					
						
							|  |  |  |             format_url = value[0] | 
					
						
							|  |  |  |             if key == 'video_vars[hds_manifest]': | 
					
						
							|  |  |  |                 formats.extend(self._extract_mpd_formats( | 
					
						
							|  |  |  |                     format_url, video_id, mpd_id='dash', fatal=False)) | 
					
						
							|  |  |  |                 continue | 
					
						
							|  |  |  |             height = self._search_regex( | 
					
						
							|  |  |  |                 r'video_vars\[video_urls\]\[(\d+)', key, 'height', default=None) | 
					
						
							|  |  |  |             if not height: | 
					
						
							|  |  |  |                 continue | 
					
						
							|  |  |  |             formats.append({ | 
					
						
							|  |  |  |                 'url': format_url, | 
					
						
							|  |  |  |                 'format_id': 'http-%s' % height, | 
					
						
							|  |  |  |                 'height': int_or_none(height), | 
					
						
							|  |  |  |             }) | 
					
						
							| 
									
										
										
										
											2017-01-21 20:02:55 +13:00
										 |  |  |         self._sort_formats(formats) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-22 03:43:27 +07:00
										 |  |  |         uploader = self._html_search_regex( | 
					
						
							|  |  |  |             (r'<span[^>]+class="name"[^>]*>\s*<a[^>]+>\s*<strong>(?P<uploader>[^<]+)', | 
					
						
							|  |  |  |              r'<meta[^>]+content=(["\'])[^>]*\buploaded by (?P<uploader>.+?)\1'), | 
					
						
							|  |  |  |             webpage, 'uploader', fatal=False, group='uploader') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-21 20:02:55 +13:00
										 |  |  |         return { | 
					
						
							|  |  |  |             'id': video_id, | 
					
						
							|  |  |  |             'formats': formats, | 
					
						
							|  |  |  |             'title': title, | 
					
						
							| 
									
										
										
										
											2017-01-22 03:43:27 +07:00
										 |  |  |             'thumbnail': flashvar('big_thumb'), | 
					
						
							|  |  |  |             'duration': int_or_none(flashvar('duration')), | 
					
						
							|  |  |  |             'timestamp': unified_timestamp(self._html_search_meta( | 
					
						
							|  |  |  |                 'uploadDate', webpage, 'timestamp')), | 
					
						
							|  |  |  |             'uploader_id': flashvar('author_id'), | 
					
						
							| 
									
										
										
										
											2017-01-21 20:02:55 +13:00
										 |  |  |             'uploader': uploader, | 
					
						
							| 
									
										
										
										
											2017-01-22 03:43:27 +07:00
										 |  |  |             'view_count': int_or_none(flashvar('views')), | 
					
						
							| 
									
										
										
										
											2017-01-21 20:02:55 +13:00
										 |  |  |             'age_limit': 18, | 
					
						
							|  |  |  |         } |