2015-04-10 21:45:41 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2019-06-19 22:19:29 +02:00
|
|
|
# Copyright 2014-2019 Mike Fährmann
|
2015-04-10 21:45:41 +02:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License version 2 as
|
|
|
|
# published by the Free Software Foundation.
|
|
|
|
|
2017-06-30 19:38:14 +02:00
|
|
|
"""Downloader module for http:// and https:// URLs"""
|
2015-04-10 21:45:41 +02:00
|
|
|
|
2019-06-19 22:19:29 +02:00
|
|
|
import os
|
2017-12-02 01:47:26 +01:00
|
|
|
import time
|
2016-09-30 12:32:48 +02:00
|
|
|
import mimetypes
|
2019-06-19 22:19:29 +02:00
|
|
|
from requests.exceptions import RequestException, ConnectionError, Timeout
|
2017-10-24 12:53:03 +02:00
|
|
|
from .common import DownloaderBase
|
2019-06-19 22:19:29 +02:00
|
|
|
from .. import text
|
2017-10-24 23:33:44 +02:00
|
|
|
|
2019-07-01 20:10:26 +02:00
|
|
|
try:
|
|
|
|
from OpenSSL.SSL import Error as SSLError
|
|
|
|
except ImportError:
|
|
|
|
from ssl import SSLError
|
|
|
|
|
2017-10-24 23:33:44 +02:00
|
|
|
|
2018-11-16 14:40:05 +01:00
|
|
|
class HttpDownloader(DownloaderBase):
|
2017-10-26 22:11:36 +02:00
|
|
|
scheme = "http"
|
2017-03-26 18:24:46 +02:00
|
|
|
|
2018-10-06 19:59:19 +02:00
|
|
|
def __init__(self, extractor, output):
|
|
|
|
DownloaderBase.__init__(self, extractor, output)
|
2019-08-07 22:52:29 +02:00
|
|
|
self.adjust_extension = self.config("adjust-extensions", True)
|
2018-10-06 19:59:19 +02:00
|
|
|
self.retries = self.config("retries", extractor._retries)
|
|
|
|
self.timeout = self.config("timeout", extractor._timeout)
|
|
|
|
self.verify = self.config("verify", extractor._verify)
|
2019-06-20 17:19:44 +02:00
|
|
|
self.mtime = self.config("mtime", True)
|
2017-12-02 01:47:26 +01:00
|
|
|
self.rate = self.config("rate")
|
2019-06-19 22:19:29 +02:00
|
|
|
self.downloading = False
|
2017-12-02 01:47:26 +01:00
|
|
|
self.chunk_size = 16384
|
|
|
|
|
2019-06-30 22:55:31 +02:00
|
|
|
if self.retries < 0:
|
|
|
|
self.retries = float("inf")
|
2017-12-02 01:47:26 +01:00
|
|
|
if self.rate:
|
2019-08-29 23:05:47 +02:00
|
|
|
rate = text.parse_bytes(self.rate)
|
|
|
|
if not rate:
|
|
|
|
self.log.warning("Invalid rate limit (%r)", self.rate)
|
|
|
|
elif rate < self.chunk_size:
|
|
|
|
self.chunk_size = rate
|
|
|
|
self.rate = rate
|
2017-10-24 12:53:03 +02:00
|
|
|
|
2019-06-19 22:19:29 +02:00
|
|
|
def download(self, url, pathfmt):
|
2017-12-06 22:35:05 +01:00
|
|
|
try:
|
2019-06-19 22:19:29 +02:00
|
|
|
return self._download_impl(url, pathfmt)
|
|
|
|
except Exception:
|
|
|
|
print()
|
|
|
|
raise
|
|
|
|
finally:
|
|
|
|
# remove file from incomplete downloads
|
|
|
|
if self.downloading and not self.part:
|
|
|
|
try:
|
|
|
|
os.unlink(pathfmt.temppath)
|
|
|
|
except (OSError, AttributeError):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def _download_impl(self, url, pathfmt):
|
|
|
|
response = None
|
|
|
|
tries = 0
|
|
|
|
msg = ""
|
|
|
|
|
|
|
|
if self.part:
|
|
|
|
pathfmt.part_enable(self.partdir)
|
|
|
|
|
|
|
|
while True:
|
|
|
|
if tries:
|
|
|
|
if response:
|
|
|
|
response.close()
|
2019-06-30 21:27:28 +02:00
|
|
|
self.log.warning("%s (%s/%s)", msg, tries, self.retries+1)
|
|
|
|
if tries > self.retries:
|
2019-06-19 22:19:29 +02:00
|
|
|
return False
|
2019-06-30 21:27:28 +02:00
|
|
|
time.sleep(min(2 ** (tries-1), 1800))
|
2019-06-19 22:19:29 +02:00
|
|
|
tries += 1
|
|
|
|
|
|
|
|
# check for .part file
|
|
|
|
filesize = pathfmt.part_size()
|
|
|
|
if filesize:
|
|
|
|
headers = {"Range": "bytes={}-".format(filesize)}
|
|
|
|
else:
|
|
|
|
headers = None
|
|
|
|
|
|
|
|
# connect to (remote) source
|
|
|
|
try:
|
|
|
|
response = self.session.request(
|
|
|
|
"GET", url, stream=True, headers=headers,
|
|
|
|
timeout=self.timeout, verify=self.verify)
|
|
|
|
except (ConnectionError, Timeout) as exc:
|
|
|
|
msg = str(exc)
|
|
|
|
continue
|
|
|
|
except Exception as exc:
|
|
|
|
self.log.warning("%s", exc)
|
|
|
|
return False
|
|
|
|
|
|
|
|
# check response
|
|
|
|
code = response.status_code
|
|
|
|
if code == 200: # OK
|
|
|
|
offset = 0
|
|
|
|
size = response.headers.get("Content-Length")
|
|
|
|
elif code == 206: # Partial Content
|
|
|
|
offset = filesize
|
|
|
|
size = response.headers["Content-Range"].rpartition("/")[2]
|
2019-08-19 23:46:58 +02:00
|
|
|
elif code == 416 and filesize: # Requested Range Not Satisfiable
|
2019-06-19 22:19:29 +02:00
|
|
|
break
|
|
|
|
else:
|
2019-10-27 23:16:25 +01:00
|
|
|
msg = "'{} {}' for '{}'".format(code, response.reason, url)
|
2019-06-19 22:19:29 +02:00
|
|
|
if code == 429 or 500 <= code < 600: # Server Error
|
|
|
|
continue
|
|
|
|
self.log.warning("%s", msg)
|
|
|
|
return False
|
|
|
|
size = text.parse_int(size)
|
|
|
|
|
|
|
|
# set missing filename extension
|
2019-08-12 21:40:37 +02:00
|
|
|
if not pathfmt.extension:
|
2019-06-19 22:19:29 +02:00
|
|
|
pathfmt.set_extension(self.get_extension(response))
|
|
|
|
if pathfmt.exists():
|
|
|
|
pathfmt.temppath = ""
|
|
|
|
return True
|
|
|
|
|
|
|
|
# set open mode
|
|
|
|
if not offset:
|
|
|
|
mode = "w+b"
|
|
|
|
if filesize:
|
2019-08-29 23:05:47 +02:00
|
|
|
self.log.debug("Unable to resume partial download")
|
2019-06-19 22:19:29 +02:00
|
|
|
else:
|
|
|
|
mode = "r+b"
|
2019-08-29 23:05:47 +02:00
|
|
|
self.log.debug("Resuming download at byte %d", offset)
|
2019-06-19 22:19:29 +02:00
|
|
|
|
|
|
|
# start downloading
|
|
|
|
self.out.start(pathfmt.path)
|
|
|
|
self.downloading = True
|
|
|
|
with pathfmt.open(mode) as file:
|
|
|
|
if offset:
|
|
|
|
file.seek(offset)
|
|
|
|
|
|
|
|
# download content
|
|
|
|
try:
|
|
|
|
self.receive(response, file)
|
|
|
|
except (RequestException, SSLError) as exc:
|
|
|
|
msg = str(exc)
|
|
|
|
print()
|
|
|
|
continue
|
|
|
|
|
|
|
|
# check filesize
|
|
|
|
if size and file.tell() < size:
|
|
|
|
msg = "filesize mismatch ({} < {})".format(
|
|
|
|
file.tell(), size)
|
2019-06-30 21:27:28 +02:00
|
|
|
print()
|
2019-06-19 22:19:29 +02:00
|
|
|
continue
|
|
|
|
|
|
|
|
# check filename extension
|
2019-08-07 22:52:29 +02:00
|
|
|
if self.adjust_extension:
|
2019-08-12 21:40:37 +02:00
|
|
|
adj_ext = self.check_extension(file, pathfmt.extension)
|
2019-08-07 22:52:29 +02:00
|
|
|
if adj_ext:
|
|
|
|
pathfmt.set_extension(adj_ext)
|
2019-06-19 22:19:29 +02:00
|
|
|
|
|
|
|
break
|
|
|
|
|
|
|
|
self.downloading = False
|
2019-06-20 17:19:44 +02:00
|
|
|
if self.mtime:
|
2019-08-12 21:40:37 +02:00
|
|
|
pathfmt.kwdict["_mtime"] = response.headers.get("Last-Modified")
|
2019-06-19 22:19:29 +02:00
|
|
|
return True
|
|
|
|
|
|
|
|
def receive(self, response, file):
|
2017-12-02 01:47:26 +01:00
|
|
|
if self.rate:
|
|
|
|
total = 0 # total amount of bytes received
|
|
|
|
start = time.time() # start time
|
|
|
|
|
2019-06-19 22:19:29 +02:00
|
|
|
for data in response.iter_content(self.chunk_size):
|
2017-10-24 12:53:03 +02:00
|
|
|
file.write(data)
|
|
|
|
|
2017-12-02 01:47:26 +01:00
|
|
|
if self.rate:
|
|
|
|
total += len(data)
|
|
|
|
expected = total / self.rate # expected elapsed time
|
|
|
|
delta = time.time() - start # actual elapsed time since start
|
|
|
|
if delta < expected:
|
|
|
|
# sleep if less time passed than expected
|
|
|
|
time.sleep(expected - delta)
|
|
|
|
|
2019-06-19 22:19:29 +02:00
|
|
|
def get_extension(self, response):
|
|
|
|
mtype = response.headers.get("Content-Type", "image/jpeg")
|
2017-10-24 12:53:03 +02:00
|
|
|
mtype = mtype.partition(";")[0]
|
2017-11-30 22:30:01 +01:00
|
|
|
|
|
|
|
if mtype in MIMETYPE_MAP:
|
|
|
|
return MIMETYPE_MAP[mtype]
|
|
|
|
|
2017-10-24 12:53:03 +02:00
|
|
|
exts = mimetypes.guess_all_extensions(mtype, strict=False)
|
|
|
|
if exts:
|
|
|
|
exts.sort()
|
|
|
|
return exts[-1][1:]
|
2017-11-30 22:30:01 +01:00
|
|
|
|
2017-10-24 12:53:03 +02:00
|
|
|
self.log.warning(
|
|
|
|
"No filename extension found for MIME type '%s'", mtype)
|
|
|
|
return "txt"
|
2017-11-30 22:30:01 +01:00
|
|
|
|
2019-06-19 22:19:29 +02:00
|
|
|
@staticmethod
|
2019-08-12 21:40:37 +02:00
|
|
|
def check_extension(file, extension):
|
2019-06-19 22:19:29 +02:00
|
|
|
"""Check filename extension against fileheader"""
|
|
|
|
if extension in FILETYPE_CHECK:
|
|
|
|
file.seek(0)
|
|
|
|
header = file.read(8)
|
|
|
|
if len(header) >= 8 and not FILETYPE_CHECK[extension](header):
|
|
|
|
for ext, check in FILETYPE_CHECK.items():
|
|
|
|
if ext != extension and check(header):
|
|
|
|
return ext
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
|
FILETYPE_CHECK = {
|
|
|
|
"jpg": lambda h: h[0:2] == b"\xff\xd8",
|
|
|
|
"png": lambda h: h[0:8] == b"\x89\x50\x4e\x47\x0d\x0a\x1a\x0a",
|
|
|
|
"gif": lambda h: h[0:4] == b"GIF8" and h[5] == 97,
|
|
|
|
}
|
|
|
|
|
2017-11-30 22:30:01 +01:00
|
|
|
|
|
|
|
MIMETYPE_MAP = {
|
|
|
|
"image/jpeg": "jpg",
|
|
|
|
"image/jpg": "jpg",
|
|
|
|
"image/png": "png",
|
|
|
|
"image/gif": "gif",
|
|
|
|
"image/bmp": "bmp",
|
|
|
|
"image/webp": "webp",
|
|
|
|
"image/svg+xml": "svg",
|
|
|
|
|
|
|
|
"video/webm": "webm",
|
|
|
|
"video/ogg": "ogg",
|
|
|
|
"video/mp4": "mp4",
|
|
|
|
|
|
|
|
"audio/wav": "wav",
|
|
|
|
"audio/x-wav": "wav",
|
|
|
|
"audio/webm": "webm",
|
|
|
|
"audio/ogg": "ogg",
|
|
|
|
"audio/mpeg": "mp3",
|
|
|
|
|
2019-10-10 18:30:23 +02:00
|
|
|
"application/zip": "zip",
|
|
|
|
"application/x-zip": "zip",
|
|
|
|
"application/x-zip-compressed": "zip",
|
|
|
|
"application/x-rar": "rar",
|
|
|
|
"application/x-rar-compressed": "rar",
|
|
|
|
"application/x-7z-compressed": "7z",
|
|
|
|
|
2017-11-30 22:30:01 +01:00
|
|
|
"application/ogg": "ogg",
|
|
|
|
"application/octet-stream": "bin",
|
|
|
|
}
|
2018-11-16 14:40:05 +01:00
|
|
|
|
|
|
|
|
|
|
|
__downloader__ = HttpDownloader
|