| 
									
										
										
										
											2015-11-11 22:58:39 +06:00
										 |  |  | # coding: utf-8 | 
					
						
							| 
									
										
										
										
											2014-06-07 23:09:45 -03:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import re | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2014-12-13 12:24:42 +01:00
										 |  |  | from ..utils import ( | 
					
						
							|  |  |  |     ExtractorError, | 
					
						
							| 
									
										
										
										
											2014-11-26 20:02:40 +06:00
										 |  |  |     int_or_none, | 
					
						
							| 
									
										
										
										
											2015-11-21 22:18:17 +06:00
										 |  |  |     sanitized_Request, | 
					
						
							| 
									
										
										
										
											2016-03-26 02:19:24 +06:00
										 |  |  |     urlencode_postdata, | 
					
						
							| 
									
										
										
										
											2014-06-17 15:18:46 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-07 23:09:45 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-11 22:58:39 +06:00
										 |  |  | class XFileShareIE(InfoExtractor): | 
					
						
							|  |  |  |     IE_DESC = 'XFileShare based sites: GorillaVid.in, daclips.in, movpod.in, fastvideo.in, realvid.net, filehoot.com and vidto.me' | 
					
						
							| 
									
										
										
										
											2014-07-11 11:05:16 +02:00
										 |  |  |     _VALID_URL = r'''(?x)
 | 
					
						
							| 
									
										
										
										
											2014-07-11 22:23:00 +07:00
										 |  |  |         https?://(?P<host>(?:www\.)? | 
					
						
							| 
									
										
										
										
											2016-02-22 17:37:00 +06:00
										 |  |  |             (?:daclips\.in|gorillavid\.in|movpod\.in|fastvideo\.in|realvid\.net|filehoot\.com|vidto\.me|powerwatch\.pw))/ | 
					
						
							| 
									
										
										
										
											2014-07-11 11:05:16 +02:00
										 |  |  |         (?:embed-)?(?P<id>[0-9a-zA-Z]+)(?:-[0-9]+x[0-9]+\.html)? | 
					
						
							|  |  |  |     '''
 | 
					
						
							| 
									
										
										
										
											2014-06-17 15:18:46 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-06 01:48:01 +07:00
										 |  |  |     _FILE_NOT_FOUND_REGEX = r'>(?:404 - )?File Not Found<' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-17 15:18:46 +02:00
										 |  |  |     _TESTS = [{ | 
					
						
							|  |  |  |         'url': 'http://gorillavid.in/06y9juieqpmi', | 
					
						
							|  |  |  |         'md5': '5ae4a3580620380619678ee4875893ba', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': '06y9juieqpmi', | 
					
						
							|  |  |  |             'ext': 'flv', | 
					
						
							| 
									
										
										
										
											2014-10-06 01:47:22 +07:00
										 |  |  |             'title': 'Rebecca Black My Moment Official Music Video Reaction-6GK87Rc8bzQ', | 
					
						
							| 
									
										
										
										
											2014-06-17 15:18:46 +02:00
										 |  |  |             'thumbnail': 're:http://.*\.jpg', | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://gorillavid.in/embed-z08zf8le23c6-960x480.html', | 
					
						
							| 
									
										
										
										
											2015-05-06 21:43:36 +06:00
										 |  |  |         'only_matching': True, | 
					
						
							| 
									
										
										
										
											2014-07-11 11:05:16 +02:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://daclips.in/3rso4kdn6f9m', | 
					
						
							| 
									
										
										
										
											2014-07-11 22:23:00 +07:00
										 |  |  |         'md5': '1ad8fd39bb976eeb66004d3a4895f106', | 
					
						
							| 
									
										
										
										
											2014-07-11 11:05:16 +02:00
										 |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': '3rso4kdn6f9m', | 
					
						
							|  |  |  |             'ext': 'mp4', | 
					
						
							| 
									
										
										
										
											2014-10-27 00:44:27 +01:00
										 |  |  |             'title': 'Micro Pig piglets ready on 16th July 2009-bG0PdrCdxUc', | 
					
						
							| 
									
										
										
										
											2014-07-11 11:05:16 +02:00
										 |  |  |             'thumbnail': 're:http://.*\.jpg', | 
					
						
							| 
									
										
										
										
											2014-10-27 00:44:27 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2014-11-26 20:02:40 +06:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         # video with countdown timeout | 
					
						
							|  |  |  |         'url': 'http://fastvideo.in/1qmdn1lmsmbw', | 
					
						
							|  |  |  |         'md5': '8b87ec3f6564a3108a0e8e66594842ba', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': '1qmdn1lmsmbw', | 
					
						
							|  |  |  |             'ext': 'mp4', | 
					
						
							|  |  |  |             'title': 'Man of Steel - Trailer', | 
					
						
							|  |  |  |             'thumbnail': 're:http://.*\.jpg', | 
					
						
							|  |  |  |         }, | 
					
						
							| 
									
										
										
										
											2015-04-23 11:41:21 +02:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://realvid.net/ctn2y6p2eviw', | 
					
						
							|  |  |  |         'md5': 'b2166d2cf192efd6b6d764c18fd3710e', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': 'ctn2y6p2eviw', | 
					
						
							|  |  |  |             'ext': 'flv', | 
					
						
							|  |  |  |             'title': 'rdx 1955', | 
					
						
							|  |  |  |             'thumbnail': 're:http://.*\.jpg', | 
					
						
							|  |  |  |         }, | 
					
						
							| 
									
										
										
										
											2014-10-05 07:53:02 +02:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://movpod.in/0wguyyxi1yca', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							| 
									
										
										
										
											2015-09-06 07:32:06 +06:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://filehoot.com/3ivfabn7573c.html', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': '3ivfabn7573c', | 
					
						
							|  |  |  |             'ext': 'mp4', | 
					
						
							|  |  |  |             'title': 'youtube-dl test video \'äBaW_jenozKc.mp4.mp4', | 
					
						
							|  |  |  |             'thumbnail': 're:http://.*\.jpg', | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-11-11 22:47:28 +06:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://vidto.me/ku5glz52nqe1.html', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': 'ku5glz52nqe1', | 
					
						
							|  |  |  |             'ext': 'mp4', | 
					
						
							|  |  |  |             'title': 'test' | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-02-22 17:37:00 +06:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://powerwatch.pw/duecjibvicbu', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': 'duecjibvicbu', | 
					
						
							|  |  |  |             'ext': 'mp4', | 
					
						
							|  |  |  |             'title': 'Big Buck Bunny trailer', | 
					
						
							|  |  |  |         }, | 
					
						
							| 
									
										
										
										
											2014-06-17 15:18:46 +02:00
										 |  |  |     }] | 
					
						
							| 
									
										
										
										
											2014-06-07 23:09:45 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							|  |  |  |         mobj = re.match(self._VALID_URL, url) | 
					
						
							|  |  |  |         video_id = mobj.group('id') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-06 07:23:53 +06:00
										 |  |  |         url = 'http://%s/%s' % (mobj.group('host'), video_id) | 
					
						
							|  |  |  |         webpage = self._download_webpage(url, video_id) | 
					
						
							| 
									
										
										
										
											2014-06-07 23:09:45 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-06 01:48:01 +07:00
										 |  |  |         if re.search(self._FILE_NOT_FOUND_REGEX, webpage) is not None: | 
					
						
							|  |  |  |             raise ExtractorError('Video %s does not exist' % video_id, expected=True) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-14 22:36:30 +06:00
										 |  |  |         fields = self._hidden_inputs(webpage) | 
					
						
							| 
									
										
										
										
											2014-11-23 20:41:03 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-17 15:18:46 +02:00
										 |  |  |         if fields['op'] == 'download1': | 
					
						
							| 
									
										
										
										
											2014-11-26 20:02:40 +06:00
										 |  |  |             countdown = int_or_none(self._search_regex( | 
					
						
							|  |  |  |                 r'<span id="countdown_str">(?:[Ww]ait)?\s*<span id="cxc">(\d+)</span>\s*(?:seconds?)?</span>', | 
					
						
							|  |  |  |                 webpage, 'countdown', default=None)) | 
					
						
							|  |  |  |             if countdown: | 
					
						
							|  |  |  |                 self._sleep(countdown, video_id) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-26 02:19:24 +06:00
										 |  |  |             post = urlencode_postdata(fields) | 
					
						
							| 
									
										
										
										
											2014-06-17 15:18:46 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-21 22:18:17 +06:00
										 |  |  |             req = sanitized_Request(url, post) | 
					
						
							| 
									
										
										
										
											2014-06-17 15:18:46 +02:00
										 |  |  |             req.add_header('Content-type', 'application/x-www-form-urlencoded') | 
					
						
							| 
									
										
										
										
											2014-06-07 23:09:45 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-17 15:18:46 +02:00
										 |  |  |             webpage = self._download_webpage(req, video_id, 'Downloading video page') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-11 22:47:28 +06:00
										 |  |  |         title = (self._search_regex( | 
					
						
							| 
									
										
										
										
											2015-11-11 22:44:03 +06:00
										 |  |  |             [r'style="z-index: [0-9]+;">([^<]+)</span>', | 
					
						
							|  |  |  |              r'<td nowrap>([^<]+)</td>', | 
					
						
							| 
									
										
										
										
											2016-02-22 17:37:00 +06:00
										 |  |  |              r'h4-fine[^>]*>([^<]+)<', | 
					
						
							| 
									
										
										
										
											2015-11-11 22:44:03 +06:00
										 |  |  |              r'>Watch (.+) ', | 
					
						
							|  |  |  |              r'<h2 class="video-page-head">([^<]+)</h2>'], | 
					
						
							| 
									
										
										
										
											2015-11-11 22:47:28 +06:00
										 |  |  |             webpage, 'title', default=None) or self._og_search_title(webpage)).strip() | 
					
						
							| 
									
										
										
										
											2014-11-26 20:02:40 +06:00
										 |  |  |         video_url = self._search_regex( | 
					
						
							| 
									
										
										
										
											2015-11-11 22:44:03 +06:00
										 |  |  |             [r'file\s*:\s*["\'](http[^"\']+)["\'],', | 
					
						
							|  |  |  |              r'file_link\s*=\s*\'(https?:\/\/[0-9a-zA-z.\/\-_]+)'], | 
					
						
							|  |  |  |             webpage, 'file url') | 
					
						
							| 
									
										
										
										
											2014-11-26 20:02:40 +06:00
										 |  |  |         thumbnail = self._search_regex( | 
					
						
							| 
									
										
										
										
											2015-11-11 22:44:03 +06:00
										 |  |  |             r'image\s*:\s*["\'](http[^"\']+)["\'],', webpage, 'thumbnail', default=None) | 
					
						
							| 
									
										
										
										
											2014-06-17 15:18:46 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         formats = [{ | 
					
						
							|  |  |  |             'format_id': 'sd', | 
					
						
							| 
									
										
										
										
											2014-10-06 01:47:22 +07:00
										 |  |  |             'url': video_url, | 
					
						
							| 
									
										
										
										
											2014-06-17 15:18:46 +02:00
										 |  |  |             'quality': 1, | 
					
						
							|  |  |  |         }] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return { | 
					
						
							| 
									
										
										
										
											2014-06-07 23:09:45 -03:00
										 |  |  |             'id': video_id, | 
					
						
							|  |  |  |             'title': title, | 
					
						
							| 
									
										
										
										
											2014-06-17 15:18:46 +02:00
										 |  |  |             'thumbnail': thumbnail, | 
					
						
							|  |  |  |             'formats': formats, | 
					
						
							| 
									
										
										
										
											2014-06-07 23:09:45 -03:00
										 |  |  |         } |