| 
									
										
										
										
											2014-01-18 20:45:53 +05:30
										 |  |  | # coding: utf-8 | 
					
						
							|  |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-19 06:16:40 +01:00
										 |  |  | import os.path | 
					
						
							| 
									
										
										
										
											2014-01-18 20:45:53 +05:30
										 |  |  | import re | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2014-09-21 13:40:22 +02:00
										 |  |  | from ..utils import compat_urllib_parse_unquote, url_basename | 
					
						
							| 
									
										
										
										
											2014-01-18 20:45:53 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-19 06:14:24 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-19 10:20:26 +05:30
										 |  |  | class DropboxIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2014-09-21 13:40:22 +02:00
										 |  |  |     _VALID_URL = r'https?://(?:www\.)?dropbox[.]com/sh?/(?P<id>[a-zA-Z0-9]{15})/.*' | 
					
						
							|  |  |  |     _TESTS = [{ | 
					
						
							| 
									
										
										
										
											2014-08-28 14:00:55 +02:00
										 |  |  |         'url': 'https://www.dropbox.com/s/nelirfsxnmcfbfh/youtube-dl%20test%20video%20%27%C3%A4%22BaW_jenozKc.mp4?dl=0', | 
					
						
							| 
									
										
										
										
											2014-01-19 06:14:24 +01:00
										 |  |  |         'info_dict': { | 
					
						
							| 
									
										
										
										
											2014-07-21 12:57:40 +02:00
										 |  |  |             'id': 'nelirfsxnmcfbfh', | 
					
						
							| 
									
										
										
										
											2014-02-11 17:27:36 +01:00
										 |  |  |             'ext': 'mp4', | 
					
						
							| 
									
										
										
										
											2014-07-21 12:57:40 +02:00
										 |  |  |             'title': 'youtube-dl test video \'ä"BaW_jenozKc' | 
					
						
							| 
									
										
										
										
											2014-01-19 10:20:26 +05:30
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2014-09-21 13:40:22 +02:00
										 |  |  |     }, | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         'url': 'https://www.dropbox.com/sh/662glsejgzoj9sr/AAByil3FGH9KFNZ13e08eSa1a/Pregame%20Ceremony%20Program%20PA%2020140518.m4v', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							|  |  |  |     }, | 
					
						
							|  |  |  |     ] | 
					
						
							| 
									
										
										
										
											2014-01-19 06:14:24 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2014-01-18 20:45:53 +05:30
										 |  |  |         mobj = re.match(self._VALID_URL, url) | 
					
						
							| 
									
										
										
										
											2014-01-19 06:14:24 +01:00
										 |  |  |         video_id = mobj.group('id') | 
					
						
							| 
									
										
										
										
											2014-09-21 13:40:22 +02:00
										 |  |  |         fn = compat_urllib_parse_unquote(url_basename(url)) | 
					
						
							| 
									
										
										
										
											2014-07-21 12:57:40 +02:00
										 |  |  |         title = os.path.splitext(fn)[0] | 
					
						
							| 
									
										
										
										
											2014-08-28 14:00:55 +02:00
										 |  |  |         video_url = ( | 
					
						
							|  |  |  |             re.sub(r'[?&]dl=0', '', url) + | 
					
						
							|  |  |  |             ('?' if '?' in url else '&') + 'dl=1') | 
					
						
							| 
									
										
										
										
											2014-01-19 06:14:24 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return { | 
					
						
							|  |  |  |             'id': video_id, | 
					
						
							|  |  |  |             'title': title, | 
					
						
							|  |  |  |             'url': video_url, | 
					
						
							|  |  |  |         } |