| 
									
										
										
										
											2014-07-09 12:14:53 +02:00
										 |  |  | # -*- coding: utf-8 -*- | 
					
						
							|  |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							|  |  |  | from ..utils import ( | 
					
						
							|  |  |  |     compat_urlparse, | 
					
						
							|  |  |  |     ExtractorError, | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class GoshgayIE(InfoExtractor): | 
					
						
							|  |  |  |     _VALID_URL = r'^(?:https?://)www.goshgay.com/video(?P<id>\d+?)($|/)' | 
					
						
							|  |  |  |     _TEST = { | 
					
						
							|  |  |  |         'url': 'http://www.goshgay.com/video4116282', | 
					
						
							|  |  |  |         'md5': '268b9f3c3229105c57859e166dd72b03', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': '4116282', | 
					
						
							|  |  |  |             'ext': 'flv', | 
					
						
							|  |  |  |             'title': 'md5:089833a4790b5e103285a07337f245bf', | 
					
						
							|  |  |  |             'thumbnail': 're:http://.*\.jpg', | 
					
						
							| 
									
										
										
										
											2014-07-11 11:01:59 +02:00
										 |  |  |             'age_limit': 18, | 
					
						
							| 
									
										
										
										
											2014-07-09 12:14:53 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2014-11-06 01:19:20 +02:00
										 |  |  |         video_id = self._match_id(url) | 
					
						
							| 
									
										
										
										
											2014-07-09 12:14:53 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         webpage = self._download_webpage(url, video_id) | 
					
						
							| 
									
										
										
										
											2014-11-06 01:19:20 +02:00
										 |  |  |         title = self._og_search_title(webpage) | 
					
						
							|  |  |  |         thumbnail = self._og_search_thumbnail(webpage) | 
					
						
							|  |  |  |         family_friendly = self._html_search_meta( | 
					
						
							|  |  |  |             'isFamilyFriendly', webpage, default='false') | 
					
						
							|  |  |  |         config_url = self._search_regex( | 
					
						
							|  |  |  |             r"'config'\s*:\s*'([^']+)'", webpage, 'config URL') | 
					
						
							| 
									
										
										
										
											2014-07-09 12:14:53 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-06 01:19:20 +02:00
										 |  |  |         config = self._download_xml( | 
					
						
							|  |  |  |             config_url, video_id, 'Downloading player config XML') | 
					
						
							| 
									
										
										
										
											2014-07-09 12:14:53 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-06 01:19:20 +02:00
										 |  |  |         if config is None: | 
					
						
							| 
									
										
										
										
											2014-07-09 12:14:53 +02:00
										 |  |  |             raise ExtractorError('Missing config XML') | 
					
						
							| 
									
										
										
										
											2014-11-06 01:19:20 +02:00
										 |  |  |         if config.tag != 'config': | 
					
						
							| 
									
										
										
										
											2014-07-09 12:14:53 +02:00
										 |  |  |             raise ExtractorError('Missing config attribute') | 
					
						
							| 
									
										
										
										
											2014-11-06 01:19:20 +02:00
										 |  |  |         fns = config.findall('file') | 
					
						
							|  |  |  |         if len(fns) < 1: | 
					
						
							| 
									
										
										
										
											2014-07-09 12:14:53 +02:00
										 |  |  |             raise ExtractorError('Missing media URI') | 
					
						
							|  |  |  |         video_url = fns[0].text | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         url_comp = compat_urlparse.urlparse(url) | 
					
						
							|  |  |  |         ref = "%s://%s%s" % (url_comp[0], url_comp[1], url_comp[2]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return { | 
					
						
							|  |  |  |             'id': video_id, | 
					
						
							|  |  |  |             'url': video_url, | 
					
						
							|  |  |  |             'title': title, | 
					
						
							|  |  |  |             'thumbnail': thumbnail, | 
					
						
							|  |  |  |             'http_referer': ref, | 
					
						
							| 
									
										
										
										
											2014-11-06 01:19:20 +02:00
										 |  |  |             'age_limit': 0 if family_friendly == 'true' else 18, | 
					
						
							| 
									
										
										
										
											2014-07-09 12:14:53 +02:00
										 |  |  |         } |