Skip to content

Commit 6d34a71

Browse files
authored
Improve downloading additional library files (#81)
* Improve file download code * Improve file download code * Reduce custom python code * Improve downloading additional library files
1 parent 70762f0 commit 6d34a71

File tree

1 file changed

+24
-28
lines changed

1 file changed

+24
-28
lines changed

pyliquibase/__init__.py

+24-28
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,11 @@
66
import tempfile
77
import zipfile
88
from urllib import request
9-
from urllib.parse import urlparse
109

1110
from pkg_resources import resource_filename
1211

1312
DEFAULT_LIQUIBASE_VERSION: str = "4.21.1"
1413
LIQUIBASE_ZIP_URL: str = "https://github.com/liquibase/liquibase/releases/download/v{}/liquibase-{}.zip"
15-
LIQUIBASE_ZIP_FILE: str = "liquibase-{}.zip"
1614
LIQUIBASE_DIR: str = "liquibase-{}"
1715

1816

@@ -54,9 +52,11 @@ def __init__(self, defaultsFile: str = None,
5452

5553
# if liquibase directory not found download liquibase from Github and extract it under the directory
5654
if os.path.exists(self.liquibase_dir) and any(pathlib.Path(self.liquibase_dir).iterdir()):
57-
self.log.debug("Liquibase %s found, skipping download..." % str(self.liquibase_dir))
55+
self.log.debug("Liquibase %s found" % str(self.liquibase_dir))
5856
else:
59-
self._download_liquibase()
57+
self.log.warning("Downloading Liquibase version: %s ...", self.version)
58+
self.download_additional_java_library(url=LIQUIBASE_ZIP_URL.format(self.version, self.version),
59+
destination_dir=self.liquibase_dir)
6060

6161
self.cli = self._cli()
6262

@@ -171,52 +171,48 @@ def release_locks(self):
171171
self.log.debug("Marking all undeployed changes as executed in database.")
172172
self.execute("release-locks")
173173

174-
def _download_liquibase(self) -> None:
175-
""" If self.liquibase_dir not found it downloads liquibase from Github and extracts it under self.liquibase_dir
176-
:return:
177-
"""
178-
_file = LIQUIBASE_ZIP_FILE.format(self.version)
179-
self.log.warning("Downloading Liquibase version: %s ...", self.version)
180-
self._download_zipfile(url=LIQUIBASE_ZIP_URL.format(self.version, self.version),
181-
destination=self.liquibase_dir)
182-
183-
def download_additional_java_library(self, url: str, destination_dir: str = None):
174+
def download_additional_java_library(self, url: str, destination_dir: str = None, override=False):
184175
"""
185176
Downloads java library file from given url and saves to destination directory. If file already exists it skips the download.
186177
:param url: url to java library {jar,zip} file, http:xyz.com/mylibrary.jar, http:xyz.com/mylibrary.zip
187178
:param destination_dir: Optional, download destination. example: /mdirectory1/mydirectory2/libs/
188179
:return: None
189180
"""
190-
_url = urlparse(url)
191-
lib_file_name: str = os.path.basename(_url.path)
181+
file_name: str = os.path.basename(url)
182+
destination_dir = destination_dir if destination_dir else self.liquibase_lib_dir
183+
destination_file = pathlib.Path(destination_dir).joinpath(file_name)
192184

193-
if not (lib_file_name.lower().endswith('.zip') or lib_file_name.lower().endswith('.jar')):
194-
raise RuntimeError("Unexpected url, Expecting link to a `**.jar` or `**.zip` file!")
185+
if override is False and destination_file.exists():
186+
self.log.info("File already available skipping download: %s", destination_file.as_posix())
187+
return
195188

196-
destination_dir = destination_dir if destination_dir else self.liquibase_lib_dir
197-
destination_file = "%s/%s" % (destination_dir, lib_file_name)
198-
if pathlib.Path(destination_file).exists():
199-
self.log.info("File already available skipping download: %s", destination_file)
189+
if destination_file.suffix.lower().endswith('.zip'):
190+
self._download_zipfile(url=url,
191+
destination=destination_file.parent.as_posix(),
192+
file_name=destination_file.as_posix())
193+
194+
elif destination_file.suffix.lower().endswith('.jar'):
195+
self.log.info("Downloading file: %s to %s", url, destination_file.as_posix())
196+
self._download_file(url=url,
197+
destination=destination_file.as_posix())
200198
else:
201-
self.log.info("Downloading file: %s to %s", url, destination_file)
202-
self._download_file(url=url, destination=destination_file)
203-
with zipfile.ZipFile(destination_file, 'r') as zip_ref:
204-
zip_ref.extractall(destination_dir)
199+
raise RuntimeError("Unexpected url, Expecting link to a `**.jar` or `**.zip` file!")
205200

206-
def _download_zipfile(self, url: str, destination: str) -> None:
201+
def _download_zipfile(self, url: str, destination: str, file_name: str) -> None:
207202
"""downloads zip file from given url and extract to destination folder
208203
:param url:
209204
:param destination:
210205
:return:
211206
"""
207+
zipfile_dest = pathlib.Path(destination).joinpath(file_name)
212208
with tempfile.NamedTemporaryFile(suffix="_liquibase.zip", delete=False) as tmpfile:
213209
self.log.info("Downloading %s to %s" % (url, destination))
214210
self._download_file(url, tmpfile.name)
215211

216212
self.log.info("Extracting to %s" % (destination))
217213
with zipfile.ZipFile(tmpfile, 'r') as zip_ref:
218214
zip_ref.extractall(destination)
219-
os.unlink(tmpfile.name)
215+
os.replace(src=tmpfile.name, dst=zipfile_dest)
220216

221217
def _download_file(self, url: str, destination: str) -> None:
222218
"""downloads file from given url and saves to destination path

0 commit comments

Comments
 (0)