| 
									
										
										
										
											2013-07-18 15:31:50 +02:00
										 |  |  | # coding: utf-8 | 
					
						
							| 
									
										
										
										
											2014-01-23 14:00:29 +01:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							| 
									
										
										
										
											2013-07-18 15:31:50 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | import re | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2015-11-21 22:18:17 +06:00
										 |  |  | from ..compat import compat_urllib_parse | 
					
						
							|  |  |  | from ..utils import sanitized_Request | 
					
						
							| 
									
										
										
										
											2013-07-18 15:31:50 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class SinaIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2015-02-01 15:16:35 +01:00
										 |  |  |     _VALID_URL = r'''(?x)https?://(.*?\.)?video\.sina\.com\.cn/
 | 
					
						
							| 
									
										
										
										
											2013-07-18 15:31:50 +02:00
										 |  |  |                         ( | 
					
						
							| 
									
										
										
										
											2014-01-23 14:03:14 +01:00
										 |  |  |                             (.+?/(((?P<pseudo_id>\d+).html)|(.*?(\#|(vid=)|b/)(?P<id>\d+?)($|&|\-)))) | 
					
						
							| 
									
										
										
										
											2013-07-18 15:31:50 +02:00
										 |  |  |                             | | 
					
						
							|  |  |  |                             # This is used by external sites like Weibo | 
					
						
							|  |  |  |                             (api/sinawebApi/outplay.php/(?P<token>.+?)\.swf) | 
					
						
							|  |  |  |                         ) | 
					
						
							|  |  |  |                   '''
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-23 14:03:14 +01:00
										 |  |  |     _TESTS = [ | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             'url': 'http://video.sina.com.cn/news/vlist/zt/chczlj2013/?opsubject_id=top12#110028898', | 
					
						
							|  |  |  |             'md5': 'd65dd22ddcf44e38ce2bf58a10c3e71f', | 
					
						
							|  |  |  |             'info_dict': { | 
					
						
							| 
									
										
										
										
											2015-02-01 15:16:35 +01:00
										 |  |  |                 'id': '110028898', | 
					
						
							|  |  |  |                 'ext': 'flv', | 
					
						
							| 
									
										
										
										
											2014-01-23 14:03:14 +01:00
										 |  |  |                 'title': '《中国新闻》 朝鲜要求巴拿马立即释放被扣船员', | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             'url': 'http://video.sina.com.cn/v/b/101314253-1290078633.html', | 
					
						
							|  |  |  |             'info_dict': { | 
					
						
							|  |  |  |                 'id': '101314253', | 
					
						
							|  |  |  |                 'ext': 'flv', | 
					
						
							|  |  |  |                 'title': '军方提高对朝情报监视级别', | 
					
						
							|  |  |  |             }, | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |     ] | 
					
						
							| 
									
										
										
										
											2013-07-18 15:31:50 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _extract_video(self, video_id): | 
					
						
							|  |  |  |         data = compat_urllib_parse.urlencode({'vid': video_id}) | 
					
						
							| 
									
										
										
										
											2013-11-26 18:48:52 +01:00
										 |  |  |         url_doc = self._download_xml('http://v.iask.com/v_play.php?%s' % data, | 
					
						
							| 
									
										
										
										
											2014-11-23 21:39:15 +01:00
										 |  |  |                                      video_id, 'Downloading video url') | 
					
						
							| 
									
										
										
										
											2013-07-18 15:31:50 +02:00
										 |  |  |         image_page = self._download_webpage( | 
					
						
							|  |  |  |             'http://interface.video.sina.com.cn/interface/common/getVideoImage.php?%s' % data, | 
					
						
							| 
									
										
										
										
											2014-01-23 14:00:29 +01:00
										 |  |  |             video_id, 'Downloading thumbnail info') | 
					
						
							| 
									
										
										
										
											2013-07-18 15:31:50 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return {'id': video_id, | 
					
						
							|  |  |  |                 'url': url_doc.find('./durl/url').text, | 
					
						
							|  |  |  |                 'ext': 'flv', | 
					
						
							|  |  |  |                 'title': url_doc.find('./vname').text, | 
					
						
							|  |  |  |                 'thumbnail': image_page.split('=')[1], | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2015-02-01 15:16:35 +01:00
										 |  |  |         mobj = re.match(self._VALID_URL, url) | 
					
						
							| 
									
										
										
										
											2013-07-18 15:31:50 +02:00
										 |  |  |         video_id = mobj.group('id') | 
					
						
							|  |  |  |         if mobj.group('token') is not None: | 
					
						
							|  |  |  |             # The video id is in the redirected url | 
					
						
							| 
									
										
										
										
											2014-01-23 14:00:29 +01:00
										 |  |  |             self.to_screen('Getting video id') | 
					
						
							| 
									
										
										
										
											2015-11-21 22:18:17 +06:00
										 |  |  |             request = sanitized_Request(url) | 
					
						
							| 
									
										
										
										
											2013-07-18 15:31:50 +02:00
										 |  |  |             request.get_method = lambda: 'HEAD' | 
					
						
							|  |  |  |             (_, urlh) = self._download_webpage_handle(request, 'NA', False) | 
					
						
							|  |  |  |             return self._real_extract(urlh.geturl()) | 
					
						
							|  |  |  |         elif video_id is None: | 
					
						
							|  |  |  |             pseudo_id = mobj.group('pseudo_id') | 
					
						
							|  |  |  |             webpage = self._download_webpage(url, pseudo_id) | 
					
						
							| 
									
										
										
										
											2014-01-23 14:00:29 +01:00
										 |  |  |             video_id = self._search_regex(r'vid:\'(\d+?)\'', webpage, 'video id') | 
					
						
							| 
									
										
										
										
											2013-07-18 15:31:50 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return self._extract_video(video_id) |