Skip to content

Download Management

download

ObjectDownloader class to manage file downloads with an option to use rich interface.

This class provides methods to download files from URLs with progress tracking using either tqdm or rich interface. It supports both raw downloads and enhanced visual feedback during the download process.

Functions:

Name Description
download_file

Downloads a file from the given URL to the specified path with optional rich interface.

_download_file_raw

Static method that performs the actual file download with tqdm progress bar.

Attributes:

Name Type Description
None
Example
>>> downloader = ObjectDownloader()
>>> result = downloader.download_file(
...     url='http://example.com/file.zip',
...     file_path='/downloads',
...     filename='file.zip',
...     rich_interface=True
... )

SoftManager

SoftManager(dry_run: bool = False)

SoftManager helps to download files from a remote location.

This class provides methods to download files using either a simple progress bar or a rich interface with enhanced visual feedback.

Examples:

>>> downloader = SoftManager()
>>> downloader.download_file(
...     url="http://example.com/file.txt",
...     file_path="/tmp",
...     filename="file.txt"
... )
'/tmp/file.txt'
Source code in eos_downloader/logics/download.py
65
66
67
68
69
70
71
def __init__(self, dry_run: bool = False) -> None:
    self.file: Dict[str, Union[str, None]] = {}
    self.file["name"] = None
    self.file["md5sum"] = None
    self.file["sha512sum"] = None
    self.dry_run = dry_run
    logging.info("SoftManager initialized%s", " in dry-run mode" if dry_run else "")

checksum

checksum(
    check_type: Literal["md5sum", "sha512sum", "md5"]
) -> bool

Verifies the integrity of a downloaded file using a specified checksum algorithm.

Parameters:

Name Type Description Default
check_type Literal['md5sum', 'sha512sum', 'md5']

The type of checksum to perform. Currently supports ‘md5sum’ or ‘sha512sum’.

required

Returns:

Type Description
bool

True if the checksum verification passes.

Raises:

Type Description
ValueError

If the calculated checksum does not match the expected checksum.

FileNotFoundError

If either the checksum file or the target file cannot be found.

Examples:

>>> client.checksum('sha512sum')  # Returns True if checksum matches
Source code in eos_downloader/logics/download.py
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
def checksum(self, check_type: Literal["md5sum", "sha512sum", "md5"]) -> bool:
    """
    Verifies the integrity of a downloaded file using a specified checksum algorithm.

    Parameters
    ----------
    check_type : Literal['md5sum', 'sha512sum', 'md5']
        The type of checksum to perform. Currently supports 'md5sum' or 'sha512sum'.

    Returns
    -------
    bool
        True if the checksum verification passes.

    Raises
    ------
    ValueError
        If the calculated checksum does not match the expected checksum.
    FileNotFoundError
        If either the checksum file or the target file cannot be found.

    Examples
    --------
    >>> client.checksum('sha512sum')  # Returns True if checksum matches
    """
    logging.info(f"Checking checksum for {self.file['name']} using {check_type}")

    if self.dry_run:
        logging.debug("Dry-run mode enabled, skipping checksum verification")
        return True

    if check_type == "sha512sum":
        hash_sha512 = hashlib.sha512()
        hash512sum = self.file["sha512sum"]
        file_name = self.file["name"]

        logging.debug(f"checksum sha512sum file is: {hash512sum}")

        if file_name is None or hash512sum is None:
            logging.error("File or checksum not found")
            raise ValueError("File or checksum not found")

        with open(hash512sum, "r", encoding="utf-8") as f:
            hash_expected = f.read().split()[0]
        with open(file_name, "rb") as f:
            while True:
                chunk = f.read(4096)
                if not chunk:
                    break
                hash_sha512.update(chunk)
        if hash_sha512.hexdigest() != hash_expected:
            logging.error(
                f"Checksum failed for {self.file['name']}: computed {hash_sha512.hexdigest()} - expected {hash_expected}"
            )
            raise ValueError("Incorrect checksum")
        return True

    if check_type in ["md5sum", "md5"]:
        md5sum_file = self.file["md5sum"]
        file_name = self.file["name"]

        if md5sum_file is None:
            raise ValueError(f"md5sum is not found: {md5sum_file}")

        with open(md5sum_file, "r", encoding="utf-8") as f:
            hash_expected = f.read().split()[0]

        if hash_expected is None:
            raise ValueError("MD5Sum is empty, cannot compute file.")

        if file_name is None:
            raise ValueError("Filename is None. Please fix it")

        if not self._compute_hash_md5sum(file_name, hash_expected=hash_expected):
            logging.error(
                f"Checksum failed for {self.file['name']}: expected {hash_expected}"
            )

            raise ValueError("Incorrect checksum")

        return True

    logging.error(f"Checksum type {check_type} not yet supported")
    raise ValueError(f"Checksum type {check_type} not yet supported")

download_file

download_file(
    url: str,
    file_path: str,
    filename: str,
    rich_interface: bool = True,
) -> Union[None, str]

Downloads a file from a given URL to a specified location.

Parameters:

Name Type Description Default
url str

The URL from which to download the file.

required
file_path str

The directory path where the file should be saved.

required
filename str

The name to be given to the downloaded file.

required
rich_interface bool

Whether to use rich progress bar interface. Defaults to True.

True

Returns:

Type Description
Union[None, str]

The full path to the downloaded file if successful, None if download fails.

Source code in eos_downloader/logics/download.py
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
def download_file(
    self, url: str, file_path: str, filename: str, rich_interface: bool = True
) -> Union[None, str]:
    """
    Downloads a file from a given URL to a specified location.

    Parameters
    ----------
    url : str
        The URL from which to download the file.
    file_path : str
        The directory path where the file should be saved.
    filename : str
        The name to be given to the downloaded file.
    rich_interface : bool, optional
        Whether to use rich progress bar interface. Defaults to True.

    Returns
    -------
    Union[None, str]
        The full path to the downloaded file if successful, None if download fails.
    """
    logging.info(
        f"{'[DRY-RUN] Would download' if self.dry_run else 'Downloading'} {filename} from {url}"
    )
    if self.dry_run:
        return os.path.join(file_path, filename)

    if url is not False:
        if not rich_interface:
            return self._download_file_raw(
                url=url, file_path=os.path.join(file_path, filename)
            )
        rich_downloader = eos_downloader.helpers.DownloadProgressBar()
        rich_downloader.download(urls=[url], dest_dir=file_path)
        return os.path.join(file_path, filename)
    logging.error(f"Cannot download file {file_path}")
    return None

downloads

downloads(
    object_arista: eos_downloader.logics.arista_xml_server.AristaXmlObjects,
    file_path: str,
    rich_interface: bool = True,
) -> Union[None, str]

Downloads files from Arista EOS server.

Downloads the EOS image and optional md5/sha512 files based on the provided EOS XML object. Each file is downloaded to the specified path with appropriate filenames.

Parameters:

Name Type Description Default
object_arista AristaXmlObjects

Object containing EOS image and hash file URLs.

required
file_path str

Directory path where files should be downloaded.

required
rich_interface bool

Whether to use rich console output. Defaults to True.

True

Returns:

Type Description
Union[None, str]

The file path where files were downloaded, or None if download failed.

Examples:

>>> client.downloads(eos_obj, "/tmp/downloads")
'/tmp/downloads'
Source code in eos_downloader/logics/download.py
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
def downloads(
    self,
    object_arista: eos_downloader.logics.arista_xml_server.AristaXmlObjects,
    file_path: str,
    rich_interface: bool = True,
) -> Union[None, str]:
    """
    Downloads files from Arista EOS server.

    Downloads the EOS image and optional md5/sha512 files based on the provided EOS XML object.
    Each file is downloaded to the specified path with appropriate filenames.

    Parameters
    ----------
    object_arista : eos_downloader.logics.arista_xml_server.AristaXmlObjects
        Object containing EOS image and hash file URLs.
    file_path : str
        Directory path where files should be downloaded.
    rich_interface : bool, optional
        Whether to use rich console output. Defaults to True.

    Returns
    -------
    Union[None, str]
        The file path where files were downloaded, or None if download failed.

    Examples
    --------
    >>> client.downloads(eos_obj, "/tmp/downloads")
    '/tmp/downloads'
    """
    logging.info(f"Downloading files from {object_arista.version}")

    if len(object_arista.urls) == 0:
        logging.error("No URLs found for download")
        raise ValueError("No URLs found for download")

    for file_type, url in sorted(object_arista.urls.items(), reverse=True):
        logging.debug(f"Downloading {file_type} from {url}")
        if file_type == "image":
            filename = object_arista.filename
            self.file["name"] = filename
        else:
            filename = object_arista.hash_filename()
            self.file[file_type] = filename
        if url is None:
            logging.error(f"URL not found for {file_type}")
            raise ValueError(f"URL not found for {file_type}")
        if filename is None:
            logging.error(f"Filename not found for {file_type}")
            raise ValueError(f"Filename not found for {file_type}")
        if not self.dry_run:
            logging.info(
                f"downloading file {filename} for version {object_arista.version}"
            )
            self.download_file(url, file_path, filename, rich_interface)
        else:
            logging.info(
                f"[DRY-RUN] - downloading file {filename} for version {object_arista.version}"
            )

    return file_path

import_docker

import_docker(
    local_file_path: str,
    docker_name: str = "arista/ceos",
    docker_tag: str = "latest",
) -> None

Import a local file into a Docker image.

This method imports a local file into Docker with a specified image name and tag. It checks for the existence of both the local file and docker binary before proceeding.

Parameters:

Name Type Description Default
local_file_path str

Path to the local file to import.

required
docker_name str

Name for the Docker image. Defaults to ‘arista/ceos’.

'arista/ceos'
docker_tag str

Tag for the Docker image. Defaults to ‘latest’.

'latest'

Raises:

Type Description
FileNotFoundError

If the local file doesn’t exist or docker binary is not found.

Exception

If the docker import operation fails.

Returns:

Type Description
None
Source code in eos_downloader/logics/download.py
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
def import_docker(
    self,
    local_file_path: str,
    docker_name: str = "arista/ceos",
    docker_tag: str = "latest",
) -> None:
    """
    Import a local file into a Docker image.

    This method imports a local file into Docker with a specified image name and tag.
    It checks for the existence of both the local file and docker binary before proceeding.

    Parameters
    ----------
    local_file_path : str
        Path to the local file to import.
    docker_name : str, optional
        Name for the Docker image. Defaults to 'arista/ceos'.
    docker_tag : str, optional
        Tag for the Docker image. Defaults to 'latest'.

    Raises
    ------
    FileNotFoundError
        If the local file doesn't exist or docker binary is not found.
    Exception
        If the docker import operation fails.

    Returns
    -------
    None
    """

    logging.info(
        f"Importing {local_file_path} to {docker_name}:{docker_tag} in local docker enginge"
    )

    if os.path.exists(local_file_path) is False:
        raise FileNotFoundError(f"File {local_file_path} not found")
    if not shutil.which("docker"):
        raise FileNotFoundError(f"File {local_file_path} not found")

    try:
        cmd = f"$(which docker) import {local_file_path} {docker_name}:{docker_tag}"
        if self.dry_run:
            logging.info(f"[DRY-RUN] Would execute: {cmd}")
        else:
            logging.debug("running docker import process")
            os.system(cmd)
    except Exception as e:
        logging.error(f"Error importing docker image: {e}")
        raise e

provision_eve

provision_eve(
    object_arista: eos_downloader.logics.arista_xml_server.EosXmlObject,
    noztp: bool = False,
) -> None

Provisions EVE-NG with the specified Arista EOS object.

Parameters:

Name Type Description Default
object_arista EosXmlObject

The Arista EOS object containing version, filename, and URLs.

required
noztp bool

If True, disables ZTP (Zero Touch Provisioning). Defaults to False.

False

Raises:

Type Description
ValueError

If no URLs are found for download or if a URL or filename is None.

Returns:

Type Description
None
Source code in eos_downloader/logics/download.py
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
def provision_eve(
    self,
    object_arista: eos_downloader.logics.arista_xml_server.EosXmlObject,
    noztp: bool = False,
) -> None:
    """
    Provisions EVE-NG with the specified Arista EOS object.

    Parameters
    ----------
    object_arista : eos_downloader.logics.arista_xml_server.EosXmlObject
        The Arista EOS object containing version, filename, and URLs.
    noztp : bool, optional
        If True, disables ZTP (Zero Touch Provisioning). Defaults to False.

    Raises
    ------
    ValueError
        If no URLs are found for download or if a URL or filename is None.

    Returns
    -------
    None
    """

    # EVE-NG provisioning page for vEOS
    # https://www.eve-ng.net/index.php/documentation/howtos/howto-add-arista-veos/

    logging.info(
        f"Provisioning EVE-NG with {object_arista.version} / {object_arista.filename}"
    )

    file_path = f"{eos_downloader.defaults.EVE_QEMU_FOLDER_PATH}/veos-{object_arista.version}"

    filename: Union[str, None] = None
    eos_filename = object_arista.filename

    if len(object_arista.urls) == 0:
        logging.error("No URLs found for download")
        raise ValueError("No URLs found for download")

    for file_type, url in sorted(object_arista.urls.items(), reverse=True):
        logging.debug(f"Downloading {file_type} from {url}")
        if file_type == "image":
            fname = object_arista.filename
            if fname is not None:
                filename = fname
                if noztp:
                    filename = f"{os.path.splitext(fname)[0]}-noztp{os.path.splitext(fname)[1]}"
                eos_filename = filename
                logging.debug(f"filename is {filename}")
                self.file["name"] = filename
        else:
            filename = object_arista.hash_filename()
            if filename is not None:
                self.file[file_type] = filename
        if url is None:
            logging.error(f"URL not found for {file_type}")
            raise ValueError(f"URL not found for {file_type}")
        if filename is None:
            logging.error(f"Filename not found for {file_type}")
            raise ValueError(f"Filename not found for {file_type}")

        if not os.path.exists(file_path):
            logging.warning(f"creating folder on eve-ng server : {file_path}")
            self._create_destination_folder(path=file_path)

        logging.debug(
            f"downloading file {filename} for version {object_arista.version}"
        )
        self.download_file(url, file_path, filename, rich_interface=True)

    # Convert to QCOW2 format
    file_qcow2 = os.path.join(file_path, "hda.qcow2")

    if not self.dry_run:
        os.system(
            f"$(which qemu-img) convert -f vmdk -O qcow2 {file_path}/{eos_filename} {file_path}/{file_qcow2}"
        )
    else:
        logging.info(
            f"{'[DRY-RUN] Would convert' if self.dry_run else 'Converting'} VMDK to QCOW2 format: {file_path}/{eos_filename} to {file_qcow2} "
        )

    logging.info("Applying unl_wrapper to fix permissions")
    if not self.dry_run:
        os.system("/opt/unetlab/wrappers/unl_wrapper -a fixpermissions")
    else:
        logging.info("[DRY-RUN] Would execute unl_wrapper to fix permissions")