]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/common.py
655836ff6efca2ef95e80631d528901d6ae28d46
  10     compat_urllib_request
, 
  18 class InfoExtractor(object): 
  19     """Information Extractor class. 
  21     Information extractors are the classes that, given a URL, extract 
  22     information about the video (or videos) the URL refers to. This 
  23     information includes the real video URL, the video title, author and 
  24     others. The information is stored in a dictionary which is then 
  25     passed to the FileDownloader. The FileDownloader processes this 
  26     information possibly downloading the video to the file system, among 
  27     other possible outcomes. 
  29     The dictionaries must include the following fields: 
  33     title:          Video title, unescaped. 
  34     ext:            Video filename extension. 
  36     The following fields are optional: 
  38     format:         The video format, defaults to ext (used for --get-format) 
  39     thumbnail:      Full URL to a video thumbnail image. 
  40     description:    One-line video description. 
  41     uploader:       Full name of the video uploader. 
  42     upload_date:    Video upload date (YYYYMMDD). 
  43     uploader_id:    Nickname or id of the video uploader. 
  44     location:       Physical location of the video. 
  45     player_url:     SWF Player URL (used for rtmpdump). 
  46     subtitles:      The subtitle file contents. 
  47     view_count:     How many users have watched the video on the platform. 
  48     urlhandle:      [internal] The urlHandle to be used to download the file, 
  49                     like returned by urllib.request.urlopen 
  51     The fields should all be Unicode strings. 
  53     Subclasses of this one should re-define the _real_initialize() and 
  54     _real_extract() methods and define a _VALID_URL regexp. 
  55     Probably, they should also be added to the list of extractors. 
  57     _real_extract() must return a *list* of information dictionaries as 
  60     Finally, the _WORKING attribute should be set to False for broken IEs 
  61     in order to warn the users and skip the tests. 
  68     def __init__(self
, downloader
=None): 
  69         """Constructor. Receives an optional downloader.""" 
  71         self
.set_downloader(downloader
) 
  74     def suitable(cls
, url
): 
  75         """Receives a URL and returns True if suitable for this IE.""" 
  76         return re
.match(cls
._VALID
_URL
, url
) is not None 
  80         """Getter method for _WORKING.""" 
  84         """Initializes an instance (authentication, etc).""" 
  86             self
._real
_initialize
() 
  89     def extract(self
, url
): 
  90         """Extracts URL information and returns it in list of dicts.""" 
  92         return self
._real
_extract
(url
) 
  94     def set_downloader(self
, downloader
): 
  95         """Sets the downloader for this IE.""" 
  96         self
._downloader 
= downloader
 
  98     def _real_initialize(self
): 
  99         """Real initialization process. Redefine in subclasses.""" 
 102     def _real_extract(self
, url
): 
 103         """Real extraction process. Redefine in subclasses.""" 
 108         return type(self
).__name
__[:-2] 
 110     def _request_webpage(self
, url_or_request
, video_id
, note
=None, errnote
=None): 
 111         """ Returns the response handle """ 
 113             self
.report_download_webpage(video_id
) 
 114         elif note 
is not False: 
 115             self
.to_screen(u
'%s: %s' % (video_id
, note
)) 
 117             return compat_urllib_request
.urlopen(url_or_request
) 
 118         except (compat_urllib_error
.URLError
, compat_http_client
.HTTPException
, socket
.error
) as err
: 
 120                 errnote 
= u
'Unable to download webpage' 
 121             raise ExtractorError(u
'%s: %s' % (errnote
, compat_str(err
)), sys
.exc_info()[2]) 
 123     def _download_webpage_handle(self
, url_or_request
, video_id
, note
=None, errnote
=None): 
 124         """ Returns a tuple (page content as string, URL handle) """ 
 125         urlh 
= self
._request
_webpage
(url_or_request
, video_id
, note
, errnote
) 
 126         content_type 
= urlh
.headers
.get('Content-Type', '') 
 127         m 
= re
.match(r
'[a-zA-Z0-9_.-]+/[a-zA-Z0-9_.-]+\s*;\s*charset=(.+)', content_type
) 
 129             encoding 
= m
.group(1) 
 132         webpage_bytes 
= urlh
.read() 
 133         if self
._downloader
.params
.get('dump_intermediate_pages', False): 
 135                 url 
= url_or_request
.get_full_url() 
 136             except AttributeError: 
 138             self
.to_screen(u
'Dumping request to ' + url
) 
 139             dump 
= base64
.b64encode(webpage_bytes
).decode('ascii') 
 140             self
._downloader
.to_screen(dump
) 
 141         content 
= webpage_bytes
.decode(encoding
, 'replace') 
 142         return (content
, urlh
) 
 144     def _download_webpage(self
, url_or_request
, video_id
, note
=None, errnote
=None): 
 145         """ Returns the data of the page as a string """ 
 146         return self
._download
_webpage
_handle
(url_or_request
, video_id
, note
, errnote
)[0] 
 148     def to_screen(self
, msg
): 
 149         """Print msg to screen, prefixing it with '[ie_name]'""" 
 150         self
._downloader
.to_screen(u
'[%s] %s' % (self
.IE_NAME
, msg
)) 
 152     def report_extraction(self
, id_or_name
): 
 153         """Report information extraction.""" 
 154         self
.to_screen(u
'%s: Extracting information' % id_or_name
) 
 156     def report_download_webpage(self
, video_id
): 
 157         """Report webpage download.""" 
 158         self
.to_screen(u
'%s: Downloading webpage' % video_id
) 
 160     def report_age_confirmation(self
): 
 161         """Report attempt to confirm age.""" 
 162         self
.to_screen(u
'Confirming age') 
 164     #Methods for following #608 
 165     #They set the correct value of the '_type' key 
 166     def video_result(self
, video_info
): 
 167         """Returns a video""" 
 168         video_info
['_type'] = 'video' 
 170     def url_result(self
, url
, ie
=None): 
 171         """Returns a url that points to a page that should be processed""" 
 172         #TODO: ie should be the class used for getting the info 
 173         video_info 
= {'_type': 'url', 
 177     def playlist_result(self
, entries
, playlist_id
=None, playlist_title
=None): 
 178         """Returns a playlist""" 
 179         video_info 
= {'_type': 'playlist', 
 182             video_info
['id'] = playlist_id
 
 184             video_info
['title'] = playlist_title
 
 187     def _search_regex(self
, pattern
, string
, name
, default
=None, fatal
=True, flags
=0): 
 189         Perform a regex search on the given string, using a single or a list of 
 190         patterns returning the first matching group. 
 191         In case of failure return a default value or raise a WARNING or a 
 192         ExtractorError, depending on fatal, specifying the field name. 
 194         if isinstance(pattern
, (str, compat_str
, compiled_regex_type
)): 
 195             mobj 
= re
.search(pattern
, string
, flags
) 
 198                 mobj 
= re
.search(p
, string
, flags
) 
 201         if sys
.stderr
.isatty() and os
.name 
!= 'nt': 
 202             _name 
= u
'\033[0;34m%s\033[0m' % name
 
 207             # return the first matching group 
 208             return next(g 
for g 
in mobj
.groups() if g 
is not None) 
 209         elif default 
is not None: 
 212             raise ExtractorError(u
'Unable to extract %s' % _name
) 
 214             self
._downloader
.report_warning(u
'unable to extract %s; ' 
 215                 u
'please report this issue on http://yt-dl.org/bug' % _name
) 
 218     def _html_search_regex(self
, pattern
, string
, name
, default
=None, fatal
=True, flags
=0): 
 220         Like _search_regex, but strips HTML tags and unescapes entities. 
 222         res 
= self
._search
_regex
(pattern
, string
, name
, default
, fatal
, flags
) 
 224             return clean_html(res
).strip() 
 228 class SearchInfoExtractor(InfoExtractor
): 
 230     Base class for paged search queries extractors. 
 231     They accept urls in the format _SEARCH_KEY(|all|[0-9]):{query} 
 232     Instances should define _SEARCH_KEY and _MAX_RESULTS. 
 236     def _make_valid_url(cls
): 
 237         return r
'%s(?P<prefix>|[1-9][0-9]*|all):(?P<query>[\s\S]+)' % cls
._SEARCH
_KEY
 
 240     def suitable(cls
, url
): 
 241         return re
.match(cls
._make
_valid
_url
(), url
) is not None 
 243     def _real_extract(self
, query
): 
 244         mobj 
= re
.match(self
._make
_valid
_url
(), query
) 
 246             raise ExtractorError(u
'Invalid search query "%s"' % query
) 
 248         prefix 
= mobj
.group('prefix') 
 249         query 
= mobj
.group('query') 
 251             return self
._get
_n
_results
(query
, 1) 
 252         elif prefix 
== 'all': 
 253             return self
._get
_n
_results
(query
, self
._MAX
_RESULTS
) 
 257                 raise ExtractorError(u
'invalid download number %s for query "%s"' % (n
, query
)) 
 258             elif n 
> self
._MAX
_RESULTS
: 
 259                 self
._downloader
.report_warning(u
'%s returns max %i results (you requested %i)' % (self
._SEARCH
_KEY
, self
._MAX
_RESULTS
, n
)) 
 260                 n 
= self
._MAX
_RESULTS
 
 261             return self
._get
_n
_results
(query
, n
) 
 263     def _get_n_results(self
, query
, n
): 
 264         """Get a specified number of results for a query""" 
 265         raise NotImplementedError("This method must be implemented by sublclasses") 
 268     def SEARCH_KEY(self
): 
 269         return self
._SEARCH
_KEY