6 from .common 
import InfoExtractor
 
  10     compat_urllib_request
, 
  15 from .brightcove 
import BrightcoveIE
 
  18 class GenericIE(InfoExtractor
): 
  19     IE_DESC 
= u
'Generic downloader that works on some sites' 
  24             u
'url': u
'http://www.hodiho.fr/2013/02/regis-plante-sa-jeep.html', 
  25             u
'file': u
'13601338388002.mp4', 
  26             u
'md5': u
'85b90ccc9d73b4acd9138d3af4c27f89', 
  28                 u
"uploader": u
"www.hodiho.fr", 
  29                 u
"title": u
"R\u00e9gis plante sa Jeep" 
  33             u
'url': u
'http://www.8tv.cat/8aldia/videos/xavier-sala-i-martin-aquesta-tarda-a-8-al-dia/', 
  34             u
'file': u
'2371591881001.mp4', 
  35             u
'md5': u
'9e80619e0a94663f0bdc849b4566af19', 
  36             u
'note': u
'Test Brightcove downloads and detection in GenericIE', 
  38                 u
'title': u
'Xavier Sala i Martín: “Un banc que no presta és un banc zombi que no serveix per a res”', 
  40                 u
'description': u
'md5:a950cc4285c43e44d763d036710cd9cd', 
  45     def report_download_webpage(self
, video_id
): 
  46         """Report webpage download.""" 
  47         if not self
._downloader
.params
.get('test', False): 
  48             self
._downloader
.report_warning(u
'Falling back on generic information extractor.') 
  49         super(GenericIE
, self
).report_download_webpage(video_id
) 
  51     def report_following_redirect(self
, new_url
): 
  52         """Report information extraction.""" 
  53         self
._downloader
.to_screen(u
'[redirect] Following redirect to %s' % new_url
) 
  55     def _test_redirect(self
, url
): 
  56         """Check if it is a redirect, like url shorteners, in case return the new url.""" 
  57         class HeadRequest(compat_urllib_request
.Request
): 
  61         class HEADRedirectHandler(compat_urllib_request
.HTTPRedirectHandler
): 
  63             Subclass the HTTPRedirectHandler to make it use our 
  64             HeadRequest also on the redirected URL 
  66             def redirect_request(self
, req
, fp
, code
, msg
, headers
, newurl
): 
  67                 if code 
in (301, 302, 303, 307): 
  68                     newurl 
= newurl
.replace(' ', '%20') 
  69                     newheaders 
= dict((k
,v
) for k
,v 
in req
.headers
.items() 
  70                                       if k
.lower() not in ("content-length", "content-type")) 
  71                     return HeadRequest(newurl
, 
  73                                        origin_req_host
=req
.get_origin_req_host(), 
  76                     raise compat_urllib_error
.HTTPError(req
.get_full_url(), code
, msg
, headers
, fp
) 
  78         class HTTPMethodFallback(compat_urllib_request
.BaseHandler
): 
  80             Fallback to GET if HEAD is not allowed (405 HTTP error) 
  82             def http_error_405(self
, req
, fp
, code
, msg
, headers
): 
  86                 newheaders 
= dict((k
,v
) for k
,v 
in req
.headers
.items() 
  87                                   if k
.lower() not in ("content-length", "content-type")) 
  88                 return self
.parent
.open(compat_urllib_request
.Request(req
.get_full_url(), 
  90                                                  origin_req_host
=req
.get_origin_req_host(), 
  94         opener 
= compat_urllib_request
.OpenerDirector() 
  95         for handler 
in [compat_urllib_request
.HTTPHandler
, compat_urllib_request
.HTTPDefaultErrorHandler
, 
  96                         HTTPMethodFallback
, HEADRedirectHandler
, 
  97                         compat_urllib_request
.HTTPErrorProcessor
, compat_urllib_request
.HTTPSHandler
]: 
  98             opener
.add_handler(handler()) 
 100         response 
= opener
.open(HeadRequest(url
)) 
 102             raise ExtractorError(u
'Invalid URL protocol') 
 103         new_url 
= response
.geturl() 
 108         self
.report_following_redirect(new_url
) 
 111     def _real_extract(self
, url
): 
 113             new_url 
= self
._test
_redirect
(url
) 
 115                 return [self
.url_result(new_url
)] 
 116         except compat_urllib_error
.HTTPError
: 
 117             # This may be a stupid server that doesn't like HEAD, our UA, or so 
 120         video_id 
= url
.split('/')[-1] 
 122             webpage 
= self
._download
_webpage
(url
, video_id
) 
 124             # since this is the last-resort InfoExtractor, if 
 125             # this error is thrown, it'll be thrown here 
 126             raise ExtractorError(u
'Invalid URL: %s' % url
) 
 128         self
.report_extraction(video_id
) 
 129         # Look for BrightCove: 
 130         m_brightcove 
= re
.search(r
'<object.+?class=([\'"]).*?BrightcoveExperience.*?\1.+?</object>', webpage, re.DOTALL) 
 131         if m_brightcove is not None: 
 132             self.to_screen(u'Brightcove video detected.') 
 133             bc_url = BrightcoveIE._build_brighcove_url(m_brightcove.group()) 
 134             return self.url_result(bc_url, 'Brightcove') 
 136         # Start with something easy: JW Player in SWFObject 
 137         mobj = re.search(r'flashvars: [\'"](?
:.*&)?
file=(http
[^
\'"&]*)', webpage) 
 139             # Broaden the search a little bit 
 140             mobj = re.search(r'[^A-Za-z0-9]?(?:file|source)=(http[^\'"&]*)', webpage) 
 142             # Broaden the search a little bit: JWPlayer JS loader 
 143             mobj = re.search(r'[^A
-Za
-z0
-9]?
file["\']?:\s*["\'](http
[^
\'"&]*)', webpage) 
 145             # Try to find twitter cards info 
 146             mobj = re.search(r'<meta (?:property|name)="twitter
:player
:stream
" (?:content|value)="(.+?
)"', webpage) 
 148             # We look for Open Graph info: 
 149             # We have to match any number spaces between elements, some sites try to align them (eg.: statigr.am) 
 150             m_video_type = re.search(r'<meta.*?property="og
:video
:type".*?content="video
/(.*?
)"', webpage) 
 151             # We only look in og:video if the MIME type is a video, don't try if it's a Flash player: 
 152             if m_video_type is not None: 
 153                 mobj = re.search(r'<meta.*?property="og
:video
".*?content="(.*?
)"', webpage) 
 156             mobj = re.search(r'<video[^<]*>.*?<source .*?src="([^
"]+)"', webpage, flags=re.DOTALL) 
 158             raise ExtractorError(u'Invalid URL
: %s' % url) 
 160         # It's possible that one of the regexes
 
 161         # matched, but returned an empty group: 
 162         if mobj
.group(1) is None: 
 163             raise ExtractorError(u
'Invalid URL: %s' % url
) 
 165         video_url 
= compat_urllib_parse
.unquote(mobj
.group(1)) 
 166         video_url 
= compat_urlparse
.urljoin(url
, video_url
) 
 167         video_id 
= os
.path
.basename(video_url
) 
 169         # here's a fun little line of code for you: 
 170         video_extension 
= os
.path
.splitext(video_id
)[1][1:] 
 171         video_id 
= os
.path
.splitext(video_id
)[0] 
 173         # it's tempting to parse this further, but you would 
 174         # have to take into account all the variations like 
 175         #   Video Title - Site Name 
 176         #   Site Name | Video Title 
 177         #   Video Title - Tagline | Site Name 
 178         # and so on and so forth; it's just not practical 
 179         video_title 
= self
._html
_search
_regex
(r
'<title>(.*)</title>', 
 180             webpage
, u
'video title', default
=u
'video', flags
=re
.DOTALL
) 
 182         # video uploader is domain name 
 183         video_uploader 
= self
._search
_regex
(r
'(?:https?://)?([^/]*)/.*', 
 184             url
, u
'video uploader') 
 189             'uploader': video_uploader
, 
 191             'title':    video_title
, 
 192             'ext':      video_extension
,