| 
									
										
										
										
											2013-06-27 20:31:27 +02:00
										 |  |  | # coding: utf-8 | 
					
						
							| 
									
										
										
										
											2014-02-10 20:31:08 +01:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							| 
									
										
										
										
											2013-06-27 20:31:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-23 20:55:15 +02:00
										 |  |  | import datetime | 
					
						
							|  |  |  | import re | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							|  |  |  | from ..utils import ( | 
					
						
							|  |  |  |     ExtractorError, | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class GooglePlusIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2014-02-10 20:31:08 +01:00
										 |  |  |     IE_DESC = 'Google Plus' | 
					
						
							|  |  |  |     _VALID_URL = r'https://plus\.google\.com/(?:[^/]+/)*?posts/(?P<id>\w+)' | 
					
						
							|  |  |  |     IE_NAME = 'plus.google' | 
					
						
							| 
									
										
										
										
											2013-06-27 20:31:27 +02:00
										 |  |  |     _TEST = { | 
					
						
							| 
									
										
										
										
											2014-02-10 20:31:08 +01:00
										 |  |  |         'url': 'https://plus.google.com/u/0/108897254135232129896/posts/ZButuJc6CtH', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': 'ZButuJc6CtH', | 
					
						
							|  |  |  |             'ext': 'flv', | 
					
						
							|  |  |  |             'upload_date': '20120613', | 
					
						
							|  |  |  |             'uploader': '井上ヨシマサ', | 
					
						
							|  |  |  |             'title': '嘆きの天使 降臨', | 
					
						
							| 
									
										
										
										
											2013-06-27 20:31:27 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-06-23 20:55:15 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							|  |  |  |         # Extract id from URL | 
					
						
							|  |  |  |         mobj = re.match(self._VALID_URL, url) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-10 20:31:08 +01:00
										 |  |  |         video_id = mobj.group('id') | 
					
						
							| 
									
										
										
										
											2013-06-23 20:55:15 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # Step 1, Retrieve post webpage to extract further information | 
					
						
							| 
									
										
										
										
											2014-02-10 20:31:08 +01:00
										 |  |  |         webpage = self._download_webpage(url, video_id, 'Downloading entry webpage') | 
					
						
							| 
									
										
										
										
											2013-06-23 20:55:15 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         self.report_extraction(video_id) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Extract update date | 
					
						
							| 
									
										
										
										
											2013-09-14 11:10:01 +02:00
										 |  |  |         upload_date = self._html_search_regex( | 
					
						
							| 
									
										
										
										
											2013-10-21 15:00:21 +02:00
										 |  |  |             r'''(?x)<a.+?class="o-U-s\s[^"]+"\s+style="display:\s*none"\s*>
 | 
					
						
							| 
									
										
										
										
											2013-10-05 16:38:33 +02:00
										 |  |  |                     ([0-9]{4}-[0-9]{2}-[0-9]{2})</a>''',
 | 
					
						
							| 
									
										
										
										
											2014-02-10 20:31:08 +01:00
										 |  |  |             webpage, 'upload date', fatal=False, flags=re.VERBOSE) | 
					
						
							| 
									
										
										
										
											2013-06-23 20:55:15 +02:00
										 |  |  |         if upload_date: | 
					
						
							|  |  |  |             # Convert timestring to a format suitable for filename | 
					
						
							|  |  |  |             upload_date = datetime.datetime.strptime(upload_date, "%Y-%m-%d") | 
					
						
							|  |  |  |             upload_date = upload_date.strftime('%Y%m%d') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Extract uploader | 
					
						
							|  |  |  |         uploader = self._html_search_regex(r'rel\="author".*?>(.*?)</a>', | 
					
						
							| 
									
										
										
										
											2014-02-10 20:31:08 +01:00
										 |  |  |             webpage, 'uploader', fatal=False) | 
					
						
							| 
									
										
										
										
											2013-06-23 20:55:15 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # Extract title | 
					
						
							|  |  |  |         # Get the first line for title | 
					
						
							| 
									
										
										
										
											2014-06-29 16:43:31 +02:00
										 |  |  |         video_title = self._og_search_description(webpage).splitlines()[0] | 
					
						
							| 
									
										
										
										
											2013-06-23 20:55:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-25 17:52:29 +02:00
										 |  |  |         # Step 2, Simulate clicking the image box to launch video | 
					
						
							| 
									
										
										
										
											2013-08-27 14:38:50 -05:00
										 |  |  |         DOMAIN = 'https://plus.google.com/' | 
					
						
							|  |  |  |         video_page = self._search_regex(r'<a href="((?:%s)?photos/.*?)"' % re.escape(DOMAIN), | 
					
						
							| 
									
										
										
										
											2014-02-10 20:31:08 +01:00
										 |  |  |             webpage, 'video page URL') | 
					
						
							| 
									
										
										
										
											2013-06-25 17:52:29 +02:00
										 |  |  |         if not video_page.startswith(DOMAIN): | 
					
						
							|  |  |  |             video_page = DOMAIN + video_page | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-10 20:31:08 +01:00
										 |  |  |         webpage = self._download_webpage(video_page, video_id, 'Downloading video page') | 
					
						
							| 
									
										
										
										
											2013-06-23 20:55:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-10 20:31:08 +01:00
										 |  |  |         # Extract video links all sizes | 
					
						
							| 
									
										
										
										
											2013-06-25 17:52:29 +02:00
										 |  |  |         pattern = r'\d+,\d+,(\d+),"(http\://redirector\.googlevideo\.com.*?)"' | 
					
						
							| 
									
										
										
										
											2013-06-23 20:55:15 +02:00
										 |  |  |         mobj = re.findall(pattern, webpage) | 
					
						
							|  |  |  |         if len(mobj) == 0: | 
					
						
							| 
									
										
										
										
											2014-02-10 20:31:08 +01:00
										 |  |  |             raise ExtractorError('Unable to extract video links') | 
					
						
							| 
									
										
										
										
											2013-06-23 20:55:15 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # Sort in resolution | 
					
						
							|  |  |  |         links = sorted(mobj) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Choose the lowest of the sort, i.e. highest resolution | 
					
						
							|  |  |  |         video_url = links[-1] | 
					
						
							|  |  |  |         # Only get the url. The resolution part in the tuple has no use anymore | 
					
						
							|  |  |  |         video_url = video_url[-1] | 
					
						
							|  |  |  |         # Treat escaped \u0026 style hex | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             video_url = video_url.decode("unicode_escape") | 
					
						
							|  |  |  |         except AttributeError: # Python 3 | 
					
						
							|  |  |  |             video_url = bytes(video_url, 'ascii').decode('unicode-escape') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-10 20:31:08 +01:00
										 |  |  |         return { | 
					
						
							|  |  |  |             'id': video_id, | 
					
						
							|  |  |  |             'url': video_url, | 
					
						
							| 
									
										
										
										
											2013-06-23 20:55:15 +02:00
										 |  |  |             'uploader': uploader, | 
					
						
							| 
									
										
										
										
											2014-02-10 20:31:08 +01:00
										 |  |  |             'upload_date': upload_date, | 
					
						
							|  |  |  |             'title': video_title, | 
					
						
							|  |  |  |             'ext': 'flv', | 
					
						
							|  |  |  |         } |