|
6 | 6 | import tempfile
|
7 | 7 | import zipfile
|
8 | 8 | from urllib import request
|
9 |
| -from urllib.parse import urlparse |
10 | 9 |
|
11 | 10 | from pkg_resources import resource_filename
|
12 | 11 |
|
13 | 12 | DEFAULT_LIQUIBASE_VERSION: str = "4.21.1"
|
14 | 13 | LIQUIBASE_ZIP_URL: str = "https://github.com/liquibase/liquibase/releases/download/v{}/liquibase-{}.zip"
|
15 |
| -LIQUIBASE_ZIP_FILE: str = "liquibase-{}.zip" |
16 | 14 | LIQUIBASE_DIR: str = "liquibase-{}"
|
17 | 15 |
|
18 | 16 |
|
@@ -54,9 +52,11 @@ def __init__(self, defaultsFile: str = None,
|
54 | 52 |
|
55 | 53 | # if liquibase directory not found download liquibase from Github and extract it under the directory
|
56 | 54 | 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)) |
58 | 56 | 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) |
60 | 60 |
|
61 | 61 | self.cli = self._cli()
|
62 | 62 |
|
@@ -171,52 +171,48 @@ def release_locks(self):
|
171 | 171 | self.log.debug("Marking all undeployed changes as executed in database.")
|
172 | 172 | self.execute("release-locks")
|
173 | 173 |
|
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): |
184 | 175 | """
|
185 | 176 | Downloads java library file from given url and saves to destination directory. If file already exists it skips the download.
|
186 | 177 | :param url: url to java library {jar,zip} file, http:xyz.com/mylibrary.jar, http:xyz.com/mylibrary.zip
|
187 | 178 | :param destination_dir: Optional, download destination. example: /mdirectory1/mydirectory2/libs/
|
188 | 179 | :return: None
|
189 | 180 | """
|
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) |
192 | 184 |
|
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 |
195 | 188 |
|
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()) |
200 | 198 | 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!") |
205 | 200 |
|
206 |
| - def _download_zipfile(self, url: str, destination: str) -> None: |
| 201 | + def _download_zipfile(self, url: str, destination: str, file_name: str) -> None: |
207 | 202 | """downloads zip file from given url and extract to destination folder
|
208 | 203 | :param url:
|
209 | 204 | :param destination:
|
210 | 205 | :return:
|
211 | 206 | """
|
| 207 | + zipfile_dest = pathlib.Path(destination).joinpath(file_name) |
212 | 208 | with tempfile.NamedTemporaryFile(suffix="_liquibase.zip", delete=False) as tmpfile:
|
213 | 209 | self.log.info("Downloading %s to %s" % (url, destination))
|
214 | 210 | self._download_file(url, tmpfile.name)
|
215 | 211 |
|
216 | 212 | self.log.info("Extracting to %s" % (destination))
|
217 | 213 | with zipfile.ZipFile(tmpfile, 'r') as zip_ref:
|
218 | 214 | zip_ref.extractall(destination)
|
219 |
| - os.unlink(tmpfile.name) |
| 215 | + os.replace(src=tmpfile.name, dst=zipfile_dest) |
220 | 216 |
|
221 | 217 | def _download_file(self, url: str, destination: str) -> None:
|
222 | 218 | """downloads file from given url and saves to destination path
|
|
0 commit comments