| 
									
										
										
										
											2014-02-04 23:02:53 +01:00
										 |  |  | # encoding: utf-8 | 
					
						
							|  |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-23 22:25:46 +02:00
										 |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2014-12-13 12:24:42 +01:00
										 |  |  | from ..compat import ( | 
					
						
							| 
									
										
										
										
											2013-06-23 22:25:46 +02:00
										 |  |  |     compat_urllib_parse, | 
					
						
							|  |  |  |     compat_urllib_request, | 
					
						
							| 
									
										
										
										
											2014-12-13 12:24:42 +01:00
										 |  |  | ) | 
					
						
							|  |  |  | from ..utils import ( | 
					
						
							| 
									
										
										
										
											2013-06-23 22:25:46 +02:00
										 |  |  |     ExtractorError, | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class Vbox7IE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2014-12-13 12:24:42 +01:00
										 |  |  |     _VALID_URL = r'http://(?:www\.)?vbox7\.com/play:(?P<id>[^/]+)' | 
					
						
							| 
									
										
										
										
											2013-06-27 20:46:46 +02:00
										 |  |  |     _TEST = { | 
					
						
							| 
									
										
										
										
											2014-02-04 23:02:53 +01:00
										 |  |  |         'url': 'http://vbox7.com/play:249bb972c2', | 
					
						
							|  |  |  |         'md5': '99f65c0c9ef9b682b97313e052734c3f', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': '249bb972c2', | 
					
						
							| 
									
										
										
										
											2014-09-27 10:53:02 +02:00
										 |  |  |             'ext': 'mp4', | 
					
						
							| 
									
										
										
										
											2014-02-04 23:02:53 +01:00
										 |  |  |             'title': 'Смях! Чудо - чист за секунди - Скрита камера', | 
					
						
							|  |  |  |         }, | 
					
						
							| 
									
										
										
										
											2013-06-27 20:46:46 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-06-23 22:25:46 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-04 23:02:53 +01:00
										 |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2014-12-13 12:24:42 +01:00
										 |  |  |         video_id = self._match_id(url) | 
					
						
							| 
									
										
										
										
											2013-06-23 22:25:46 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         redirect_page, urlh = self._download_webpage_handle(url, video_id) | 
					
						
							| 
									
										
										
										
											2014-02-04 23:02:53 +01:00
										 |  |  |         new_location = self._search_regex(r'window\.location = \'(.*)\';', | 
					
						
							| 
									
										
										
										
											2014-11-23 21:39:15 +01:00
										 |  |  |                                           redirect_page, 'redirect location') | 
					
						
							| 
									
										
										
										
											2013-06-23 22:25:46 +02:00
										 |  |  |         redirect_url = urlh.geturl() + new_location | 
					
						
							| 
									
										
										
										
											2014-02-04 23:02:53 +01:00
										 |  |  |         webpage = self._download_webpage(redirect_url, video_id, | 
					
						
							| 
									
										
										
										
											2014-11-23 21:39:15 +01:00
										 |  |  |                                          'Downloading redirect page') | 
					
						
							| 
									
										
										
										
											2013-06-23 22:25:46 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         title = self._html_search_regex(r'<title>(.*)</title>', | 
					
						
							| 
									
										
										
										
											2014-11-23 21:39:15 +01:00
										 |  |  |                                         webpage, 'title').split('/')[0].strip() | 
					
						
							| 
									
										
										
										
											2013-06-23 22:25:46 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         info_url = "http://vbox7.com/play/magare.do" | 
					
						
							| 
									
										
										
										
											2014-02-04 23:02:53 +01:00
										 |  |  |         data = compat_urllib_parse.urlencode({'as3': '1', 'vid': video_id}) | 
					
						
							| 
									
										
										
										
											2013-06-23 22:25:46 +02:00
										 |  |  |         info_request = compat_urllib_request.Request(info_url, data) | 
					
						
							|  |  |  |         info_request.add_header('Content-Type', 'application/x-www-form-urlencoded') | 
					
						
							| 
									
										
										
										
											2014-02-04 23:02:53 +01:00
										 |  |  |         info_response = self._download_webpage(info_request, video_id, 'Downloading info webpage') | 
					
						
							| 
									
										
										
										
											2013-06-23 22:25:46 +02:00
										 |  |  |         if info_response is None: | 
					
						
							| 
									
										
										
										
											2014-02-04 23:02:53 +01:00
										 |  |  |             raise ExtractorError('Unable to extract the media url') | 
					
						
							| 
									
										
										
										
											2013-06-23 22:25:46 +02:00
										 |  |  |         (final_url, thumbnail_url) = map(lambda x: x.split('=')[1], info_response.split('&')) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-04 23:02:53 +01:00
										 |  |  |         return { | 
					
						
							|  |  |  |             'id': video_id, | 
					
						
							|  |  |  |             'url': final_url, | 
					
						
							|  |  |  |             'title': title, | 
					
						
							| 
									
										
										
										
											2013-06-23 22:25:46 +02:00
										 |  |  |             'thumbnail': thumbnail_url, | 
					
						
							| 
									
										
										
										
											2014-02-04 23:02:53 +01:00
										 |  |  |         } |