# coding: utf-8 from __future__ import unicode_literals import datetime import re from .common import InfoExtractor from ..utils import ( ExtractorError, ) class GooglePlusIE(InfoExtractor): IE_DESC = 'Google Plus' _VALID_URL = r'https://plus\.google\.com/(?:[^/]+/)*?posts/(?P\w+)' IE_NAME = 'plus.google' _TEST = { 'url': 'https://plus.google.com/u/0/108897254135232129896/posts/ZButuJc6CtH', 'info_dict': { 'id': 'ZButuJc6CtH', 'ext': 'flv', 'upload_date': '20120613', 'uploader': '井上ヨシマサ', 'title': '嘆きの天使 降臨', } } def _real_extract(self, url): # Extract id from URL mobj = re.match(self._VALID_URL, url) video_id = mobj.group('id') # Step 1, Retrieve post webpage to extract further information webpage = self._download_webpage(url, video_id, 'Downloading entry webpage') self.report_extraction(video_id) # Extract update date upload_date = self._html_search_regex( r'''(?x) ([0-9]{4}-[0-9]{2}-[0-9]{2})''', webpage, 'upload date', fatal=False, flags=re.VERBOSE) 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".*?>(.*?)', webpage, 'uploader', fatal=False) # Extract title # Get the first line for title video_title = self._og_search_description(webpage).splitlines()[0] # Step 2, Simulate clicking the image box to launch video DOMAIN = 'https://plus.google.com/' video_page = self._search_regex(r'