2 from __future__ import unicode_literals
10 from .common import InfoExtractor
11 from ..compat import (
27 def cookie_to_dict(cookie):
30 'value': cookie.value,
32 if cookie.port_specified:
33 cookie_dict['port'] = cookie.port
34 if cookie.domain_specified:
35 cookie_dict['domain'] = cookie.domain
36 if cookie.path_specified:
37 cookie_dict['path'] = cookie.path
38 if cookie.expires is not None:
39 cookie_dict['expires'] = cookie.expires
40 if cookie.secure is not None:
41 cookie_dict['secure'] = cookie.secure
42 if cookie.discard is not None:
43 cookie_dict['discard'] = cookie.discard
45 if (cookie.has_nonstandard_attr('httpOnly') or
46 cookie.has_nonstandard_attr('httponly') or
47 cookie.has_nonstandard_attr('HttpOnly')):
48 cookie_dict['httponly'] = True
54 def cookie_jar_to_list(cookie_jar):
55 return [cookie_to_dict(cookie) for cookie in cookie_jar]
58 class PhantomJSwrapper(object):
59 """PhantomJS wrapper class
61 This class is experimental.
65 phantom.onError = function(msg, trace) {{
66 var msgStack = ['PHANTOM ERROR: ' + msg];
67 if(trace && trace.length) {{
68 msgStack.push('TRACE:');
69 trace.forEach(function(t) {{
70 msgStack.push(' -> ' + (t.file || t.sourceURL) + ': ' + t.line
71 + (t.function ? ' (in function ' + t.function +')' : ''));
74 console.error(msgStack.join('\n'));
77 var page = require('webpage').create();
78 var fs = require('fs');
79 var read = {{ mode: 'r', charset: 'utf-8' }};
80 var write = {{ mode: 'w', charset: 'utf-8' }};
81 JSON.parse(fs.read("{cookies}", read)).forEach(function(x) {{
84 page.settings.resourceTimeout = {timeout};
85 page.settings.userAgent = "{ua}";
86 page.onLoadStarted = function() {{
87 page.evaluate(function() {{
88 delete window._phantom;
89 delete window.callPhantom;
92 var saveAndExit = function() {{
93 fs.write("{html}", page.content, write);
94 fs.write("{cookies}", JSON.stringify(phantom.cookies), write);
97 page.onLoadFinished = function(status) {{
98 if(page.url === "") {{
99 page.setContent(fs.read("{html}", read), "{url}");
108 _TMP_FILE_NAMES = ['script', 'html', 'cookies']
112 return get_exe_version('phantomjs', version_re=r'([0-9.]+)')
114 def __init__(self, extractor, required_version=None, timeout=10000):
117 self.exe = check_executable('phantomjs', ['-v'])
119 raise ExtractorError('PhantomJS executable not found in PATH, '
120 'download it from http://phantomjs.org',
123 self.extractor = extractor
126 version = self._version()
127 if is_outdated_version(version, required_version):
128 self.extractor._downloader.report_warning(
129 'Your copy of PhantomJS is outdated, update it to version '
130 '%s or newer if you encounter any errors.' % required_version)
135 for name in self._TMP_FILE_NAMES:
136 tmp = tempfile.NamedTemporaryFile(delete=False)
138 self._TMP_FILES[name] = tmp
141 for name in self._TMP_FILE_NAMES:
143 os.remove(self._TMP_FILES[name].name)
144 except (IOError, OSError, KeyError):
147 def _save_cookies(self, url):
148 cookies = cookie_jar_to_list(self.extractor._downloader.cookiejar)
149 for cookie in cookies:
150 if 'path' not in cookie:
152 if 'domain' not in cookie:
153 cookie['domain'] = compat_urlparse.urlparse(url).netloc
154 with open(self._TMP_FILES['cookies'].name, 'wb') as f:
155 f.write(json.dumps(cookies).encode('utf-8'))
157 def _load_cookies(self):
158 with open(self._TMP_FILES['cookies'].name, 'rb') as f:
159 cookies = json.loads(f.read().decode('utf-8'))
160 for cookie in cookies:
161 if cookie['httponly'] is True:
162 cookie['rest'] = {'httpOnly': None}
163 if 'expiry' in cookie:
164 cookie['expire_time'] = cookie['expiry']
165 self.extractor._set_cookie(**compat_kwargs(cookie))
167 def get(self, url, html=None, video_id=None, note=None, note2='Executing JS on webpage', headers={}, jscode='saveAndExit();'):
169 Downloads webpage (if needed) and executes JS
173 html: optional, html code of website
175 note: optional, displayed when downloading webpage
176 note2: optional, displayed when executing JS
177 headers: custom http headers
178 jscode: code to be executed when page is loaded
181 * downloaded website (after JS execution)
182 * anything you print with `console.log` (but not inside `page.execute`!)
184 In most cases you don't need to add any `jscode`.
185 It is executed in `page.onLoadFinished`.
186 `saveAndExit();` is mandatory, use it instead of `phantom.exit()`
187 It is possible to wait for some element on the webpage, for example:
188 var check = function() {
189 var elementFound = page.evaluate(function() {
190 return document.querySelector('#b.done') !== null;
195 window.setTimeout(check, 500);
198 page.evaluate(function(){
199 document.querySelector('#a').click();
203 if 'saveAndExit();' not in jscode:
204 raise ExtractorError('`saveAndExit();` not found in `jscode`')
206 html = self.extractor._download_webpage(url, video_id, note=note, headers=headers)
207 with open(self._TMP_FILES['html'].name, 'wb') as f:
208 f.write(html.encode('utf-8'))
210 self._save_cookies(url)
212 replaces = self.options
213 replaces['url'] = url
214 user_agent = headers.get('User-Agent') or std_headers['User-Agent']
215 replaces['ua'] = user_agent.replace('"', '\\"')
216 replaces['jscode'] = jscode
218 for x in self._TMP_FILE_NAMES:
219 replaces[x] = self._TMP_FILES[x].name.replace('\\', '\\\\').replace('"', '\\"')
221 with open(self._TMP_FILES['script'].name, 'wb') as f:
222 f.write(self._TEMPLATE.format(**replaces).encode('utf-8'))
225 self.extractor.to_screen('%s' % (note2,))
227 self.extractor.to_screen('%s: %s' % (video_id, note2))
229 p = subprocess.Popen([
230 self.exe, '--ssl-protocol=any',
231 self._TMP_FILES['script'].name
232 ], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
233 out, err = p.communicate()
234 if p.returncode != 0:
235 raise ExtractorError(
236 'Executing JS failed\n:' + encodeArgument(err))
237 with open(self._TMP_FILES['html'].name, 'rb') as f:
238 html = f.read().decode('utf-8')
242 return (html, encodeArgument(out))
245 class OpenloadIE(InfoExtractor):
246 _DOMAINS = r'(?:openload\.(?:co|io|link|pw)|oload\.(?:tv|stream|site|xyz|win|download|cloud|cc|icu|fun|club|info|pw|live|space)|oladblock\.(?:services|xyz|me))'
247 _VALID_URL = r'''(?x)
254 (?P<id>[a-zA-Z0-9-_]+)
258 'url': 'https://openload.co/f/kUEfGclsU9o',
259 'md5': 'bf1c059b004ebc7a256f89408e65c36e',
263 'title': 'skyrim_no-audio_1080.mp4',
264 'thumbnail': r're:^https?://.*\.jpg$',
267 'url': 'https://openload.co/embed/rjC09fkPLYs',
271 'title': 'movie.mp4',
272 'thumbnail': r're:^https?://.*\.jpg$',
280 'skip_download': True, # test subtitles only
283 'url': 'https://openload.co/embed/kUEfGclsU9o/skyrim_no-audio_1080.mp4',
284 'only_matching': True,
286 'url': 'https://openload.io/f/ZAn6oz-VZGE/',
287 'only_matching': True,
289 'url': 'https://openload.co/f/_-ztPaZtMhM/',
290 'only_matching': True,
292 # unavailable via https://openload.co/f/Sxz5sADo82g/, different layout
294 'url': 'https://openload.co/embed/Sxz5sADo82g/',
295 'only_matching': True,
297 # unavailable via https://openload.co/embed/e-Ixz9ZR5L0/ but available
298 # via https://openload.co/f/e-Ixz9ZR5L0/
299 'url': 'https://openload.co/f/e-Ixz9ZR5L0/',
300 'only_matching': True,
302 'url': 'https://oload.tv/embed/KnG-kKZdcfY/',
303 'only_matching': True,
305 'url': 'http://www.openload.link/f/KnG-kKZdcfY',
306 'only_matching': True,
308 'url': 'https://oload.stream/f/KnG-kKZdcfY',
309 'only_matching': True,
311 'url': 'https://oload.xyz/f/WwRBpzW8Wtk',
312 'only_matching': True,
314 'url': 'https://oload.win/f/kUEfGclsU9o',
315 'only_matching': True,
317 'url': 'https://oload.download/f/kUEfGclsU9o',
318 'only_matching': True,
320 'url': 'https://oload.cloud/f/4ZDnBXRWiB8',
321 'only_matching': True,
323 # Its title has not got its extension but url has it
324 'url': 'https://oload.download/f/N4Otkw39VCw/Tomb.Raider.2018.HDRip.XviD.AC3-EVO.avi.mp4',
325 'only_matching': True,
327 'url': 'https://oload.cc/embed/5NEAbI2BDSk',
328 'only_matching': True,
330 'url': 'https://oload.icu/f/-_i4y_F_Hs8',
331 'only_matching': True,
333 'url': 'https://oload.fun/f/gb6G1H4sHXY',
334 'only_matching': True,
336 'url': 'https://oload.club/f/Nr1L-aZ2dbQ',
337 'only_matching': True,
339 'url': 'https://oload.info/f/5NEAbI2BDSk',
340 'only_matching': True,
342 'url': 'https://openload.pw/f/WyKgK8s94N0',
343 'only_matching': True,
345 'url': 'https://oload.pw/f/WyKgK8s94N0',
346 'only_matching': True,
348 'url': 'https://oload.live/f/-Z58UZ-GR4M',
349 'only_matching': True,
351 'url': 'https://oload.space/f/IY4eZSst3u8/',
352 'only_matching': True,
354 'url': 'https://oladblock.services/f/b8NWEgkqNLI/',
355 'only_matching': True,
357 'url': 'https://oladblock.xyz/f/b8NWEgkqNLI/',
358 'only_matching': True,
360 'url': 'https://oladblock.me/f/b8NWEgkqNLI/',
361 'only_matching': True,
364 _USER_AGENT = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'
367 def _extract_urls(webpage):
369 r'<iframe[^>]+src=["\']((?:https?://)?%s/embed/[a-zA-Z0-9-_]+)'
370 % OpenloadIE._DOMAINS, webpage)
372 def _real_extract(self, url):
373 mobj = re.match(self._VALID_URL, url)
374 host = mobj.group('host')
375 video_id = mobj.group('id')
377 url_pattern = 'https://%s/%%s/%s/' % (host, video_id)
379 'User-Agent': self._USER_AGENT,
382 for path in ('embed', 'f'):
383 page_url = url_pattern % path
385 webpage = self._download_webpage(
386 page_url, video_id, 'Downloading %s webpage' % path,
387 headers=headers, fatal=last)
390 if 'File not found' in webpage or 'deleted by the owner' in webpage:
393 raise ExtractorError('File not found', expected=True, video_id=video_id)
396 phantom = PhantomJSwrapper(self, required_version='2.0')
397 webpage, _ = phantom.get(page_url, html=webpage, video_id=video_id, headers=headers)
399 decoded_id = (get_element_by_id('streamurl', webpage) or
400 get_element_by_id('streamuri', webpage) or
401 get_element_by_id('streamurj', webpage) or
403 (r'>\s*([\w-]+~\d{10,}~\d+\.\d+\.0\.0~[\w-]+)\s*<',
404 r'>\s*([\w~-]+~\d+\.\d+\.\d+\.\d+~[\w~-]+)',
405 r'>\s*([\w-]+~\d{10,}~(?:[a-f\d]+:){2}:~[\w-]+)\s*<',
406 r'>\s*([\w~-]+~[a-f0-9:]+~[\w~-]+)\s*<',
407 r'>\s*([\w~-]+~[a-f0-9:]+~[\w~-]+)'), webpage,
410 video_url = 'https://%s/stream/%s?mime=true' % (host, decoded_id)
412 title = self._og_search_title(webpage, default=None) or self._search_regex(
413 r'<span[^>]+class=["\']title["\'][^>]*>([^<]+)', webpage,
414 'title', default=None) or self._html_search_meta(
415 'description', webpage, 'title', fatal=True)
417 entries = self._parse_html5_media_entries(page_url, webpage, video_id)
418 entry = entries[0] if entries else {}
419 subtitles = entry.get('subtitles')
424 'thumbnail': entry.get('thumbnail') or self._og_search_thumbnail(webpage, default=None),
426 'ext': determine_ext(title, None) or determine_ext(url, 'mp4'),
427 'subtitles': subtitles,
428 'http_headers': headers,