2017-06-05 16:02:39 +03:00
|
|
|
# Copyright (c) 2014-present PlatformIO <contact@platformio.org>
|
2015-11-18 17:16:17 +02:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2014-06-07 13:34:31 +03:00
|
|
|
|
|
|
|
from email.utils import parsedate_tz
|
|
|
|
from math import ceil
|
2015-05-18 19:28:35 +03:00
|
|
|
from os.path import getsize, join
|
2017-11-02 23:14:32 +02:00
|
|
|
from sys import getfilesystemencoding, version_info
|
2014-06-07 13:34:31 +03:00
|
|
|
from time import mktime
|
|
|
|
|
2015-05-18 19:22:42 +03:00
|
|
|
import click
|
|
|
|
import requests
|
2014-06-07 13:34:31 +03:00
|
|
|
|
2018-04-05 11:06:23 -07:00
|
|
|
from platformio import util
|
2014-06-07 13:34:31 +03:00
|
|
|
from platformio.exception import (FDSHASumMismatch, FDSizeMismatch,
|
|
|
|
FDUnrecognizedStatusCode)
|
|
|
|
|
|
|
|
|
|
|
|
class FileDownloader(object):
|
|
|
|
|
|
|
|
CHUNK_SIZE = 1024
|
|
|
|
|
|
|
|
def __init__(self, url, dest_dir=None):
|
2018-04-05 22:10:28 -07:00
|
|
|
self._request = None
|
|
|
|
# make connection
|
|
|
|
self._request = requests.get(
|
|
|
|
url,
|
|
|
|
stream=True,
|
|
|
|
headers=util.get_request_defheaders(),
|
|
|
|
verify=version_info >= (2, 7, 9))
|
|
|
|
if self._request.status_code != 200:
|
|
|
|
raise FDUnrecognizedStatusCode(self._request.status_code, url)
|
2014-06-07 13:34:31 +03:00
|
|
|
|
2016-09-04 00:35:47 +03:00
|
|
|
disposition = self._request.headers.get("content-disposition")
|
|
|
|
if disposition and "filename=" in disposition:
|
2018-06-02 16:14:58 +03:00
|
|
|
self._fname = disposition[disposition.index("filename=") +
|
|
|
|
9:].replace('"', "").replace("'", "")
|
2016-09-12 19:54:28 +03:00
|
|
|
self._fname = self._fname.encode("utf8")
|
2016-09-04 00:35:47 +03:00
|
|
|
else:
|
2018-01-24 14:34:08 +02:00
|
|
|
self._fname = [p for p in url.split("/") if p][-1]
|
2016-09-04 00:35:47 +03:00
|
|
|
|
|
|
|
self._destination = self._fname
|
|
|
|
if dest_dir:
|
2017-11-02 23:14:32 +02:00
|
|
|
self.set_destination(
|
|
|
|
join(dest_dir.decode(getfilesystemencoding()), self._fname))
|
2016-09-04 00:35:47 +03:00
|
|
|
|
2014-06-07 13:34:31 +03:00
|
|
|
def set_destination(self, destination):
|
|
|
|
self._destination = destination
|
|
|
|
|
|
|
|
def get_filepath(self):
|
|
|
|
return self._destination
|
|
|
|
|
|
|
|
def get_lmtime(self):
|
2016-05-26 22:33:17 +03:00
|
|
|
return self._request.headers.get("last-modified")
|
2014-06-07 13:34:31 +03:00
|
|
|
|
|
|
|
def get_size(self):
|
2016-03-22 22:03:51 +02:00
|
|
|
if "content-length" not in self._request.headers:
|
|
|
|
return -1
|
2014-06-07 13:34:31 +03:00
|
|
|
return int(self._request.headers['content-length'])
|
|
|
|
|
2018-04-05 11:06:23 -07:00
|
|
|
def start(self, with_progress=True):
|
2017-12-14 22:01:59 +02:00
|
|
|
label = "Downloading"
|
2014-06-07 13:34:31 +03:00
|
|
|
itercontent = self._request.iter_content(chunk_size=self.CHUNK_SIZE)
|
|
|
|
f = open(self._destination, "wb")
|
2017-12-14 20:05:06 +02:00
|
|
|
try:
|
2018-04-05 11:06:23 -07:00
|
|
|
if not with_progress or self.get_size() == -1:
|
2017-12-14 22:01:59 +02:00
|
|
|
click.echo("%s..." % label)
|
2017-12-14 20:05:06 +02:00
|
|
|
for chunk in itercontent:
|
|
|
|
if chunk:
|
|
|
|
f.write(chunk)
|
|
|
|
else:
|
|
|
|
chunks = int(ceil(self.get_size() / float(self.CHUNK_SIZE)))
|
2017-12-14 22:01:59 +02:00
|
|
|
with click.progressbar(length=chunks, label=label) as pb:
|
2017-12-14 20:05:06 +02:00
|
|
|
for _ in pb:
|
|
|
|
f.write(next(itercontent))
|
|
|
|
finally:
|
|
|
|
f.close()
|
|
|
|
self._request.close()
|
2014-06-07 13:34:31 +03:00
|
|
|
|
2016-05-26 22:33:17 +03:00
|
|
|
if self.get_lmtime():
|
|
|
|
self._preserve_filemtime(self.get_lmtime())
|
2014-06-07 13:34:31 +03:00
|
|
|
|
2018-04-05 11:06:23 -07:00
|
|
|
return True
|
|
|
|
|
2014-06-07 13:34:31 +03:00
|
|
|
def verify(self, sha1=None):
|
|
|
|
_dlsize = getsize(self._destination)
|
2016-03-22 22:03:51 +02:00
|
|
|
if self.get_size() != -1 and _dlsize != self.get_size():
|
2014-06-07 13:34:31 +03:00
|
|
|
raise FDSizeMismatch(_dlsize, self._fname, self.get_size())
|
|
|
|
|
|
|
|
if not sha1:
|
|
|
|
return
|
|
|
|
|
2014-06-11 21:31:36 +03:00
|
|
|
dlsha1 = None
|
2014-06-07 13:34:31 +03:00
|
|
|
try:
|
2015-04-29 18:17:14 +01:00
|
|
|
result = util.exec_command(["sha1sum", self._destination])
|
2015-02-23 11:50:14 +02:00
|
|
|
dlsha1 = result['out']
|
2016-01-03 17:45:49 +02:00
|
|
|
except (OSError, ValueError):
|
2014-06-11 21:31:36 +03:00
|
|
|
try:
|
2015-04-29 18:17:14 +01:00
|
|
|
result = util.exec_command(
|
|
|
|
["shasum", "-a", "1", self._destination])
|
2015-02-23 11:50:14 +02:00
|
|
|
dlsha1 = result['out']
|
2016-01-03 17:45:49 +02:00
|
|
|
except (OSError, ValueError):
|
2014-06-11 21:31:36 +03:00
|
|
|
pass
|
|
|
|
|
2014-11-21 18:13:02 +02:00
|
|
|
if dlsha1:
|
|
|
|
dlsha1 = dlsha1[1:41] if dlsha1.startswith("\\") else dlsha1[:40]
|
|
|
|
if sha1 != dlsha1:
|
|
|
|
raise FDSHASumMismatch(dlsha1, self._fname, sha1)
|
2014-06-07 13:34:31 +03:00
|
|
|
|
|
|
|
def _preserve_filemtime(self, lmdate):
|
|
|
|
timedata = parsedate_tz(lmdate)
|
|
|
|
lmtime = mktime(timedata[:9])
|
2015-04-29 18:17:14 +01:00
|
|
|
util.change_filemtime(self._destination, lmtime)
|
2014-06-07 13:34:31 +03:00
|
|
|
|
|
|
|
def __del__(self):
|
2015-05-28 13:44:10 +03:00
|
|
|
if self._request:
|
|
|
|
self._request.close()
|