You are here

FontawesomeIconPickerCommands.php in Font Awesome Icons 8.2

File

modules/fontawesome_iconpicker_widget/src/Commands/FontawesomeIconPickerCommands.php
View source
<?php

namespace Drupal\fontawesome_iconpicker_widget\Commands;

use Drupal\Core\File\FileSystemInterface;
use Drush\Commands\DrushCommands;
use Drupal\Core\Asset\LibraryDiscoveryInterface;
use Drupal\Core\Archiver\ArchiverManager;

/**
 * A Drush commandfile for Font Awesome module.
 */
class FontawesomeIconPickerCommands extends DrushCommands {

  /**
   * Library discovery service.
   *
   * @var \Drupal\Core\Asset\LibraryDiscoveryInterface
   */
  protected $libraryDiscovery;

  /**
   * File system service.
   *
   * @var \Drupal\Core\File\FileSystemInterface
   */
  protected $fileSystem;

  /**
   * Archive manager service.
   *
   * @var \Drupal\Core\Archiver\ArchiverManager
   */
  protected $archiverManager;

  /**
   * {@inheritdoc}
   */
  public function __construct(LibraryDiscoveryInterface $library_discovery, FileSystemInterface $file_system, ArchiverManager $archiver_manager) {
    parent::__construct();
    $this->libraryDiscovery = $library_discovery;
    $this->fileSystem = $file_system;
    $this->archiverManager = $archiver_manager;
  }

  /**
   * Downloads the required Fontawesome Iconpicker library.
   *
   * @param string $path
   *   Optional path to module. If omitted Drush will use the default location.
   *
   * @command fa:download-iconpicker
   * @aliases fa-download-iconpicker
   */
  public function download($path = '') {
    if (empty($path)) {

      // We have dependencies on libraries module so no need to check for that
      // TODO: any way to get path for libraries directory?
      // Just in case if it is site specific? e.g. sites/domain.com/libraries ?
      $path = DRUPAL_ROOT . '/libraries/fonticonpicker--fonticonpicker';
    }

    // Create the path if it does not exist yet. Added substr check for
    // preventing any wrong attempts or hacks !
    if (substr($path, -30) == 'fonticonpicker--fonticonpicker' && !is_dir($path)) {
      $this->fileSystem
        ->mkdir($path);
    }
    if (is_dir($path . '/dist')) {
      $this
        ->logger()
        ->notice(dt('IconPicker already present at @path. No download required.', [
        '@path' => $path,
      ]));
      return;
    }

    // Load the Font Awesome defined library.
    if ($iconpicker_library = $this->libraryDiscovery
      ->getLibraryByName('fontawesome_iconpicker_widget', 'fonticonpicker')) {

      // Download the file.
      $destination = tempnam(sys_get_temp_dir(), 'file.') . "tar.gz";
      system_retrieve_file($iconpicker_library['remote'], $destination);
      if (!file_exists($destination)) {

        // Remove the directory.
        $this->fileSystem
          ->rmdir($path);
        $this
          ->logger()
          ->error(dt('Drush was unable to download the fontIconPicker library from @remote.', [
          '@remote' => $iconpicker_library['remote'],
        ]));
        return;
      }
      $this->fileSystem
        ->move($destination, $path . '/fontIconPicker.zip');
      if (!file_exists($path . '/fontIconPicker.zip')) {

        // Remove the directory where we tried to install.
        $this->fileSystem
          ->rmdir($path);
        $this
          ->logger()
          ->error(dt('Error: unable to download fontIconPicker library from @remote', [
          '@remote' => $iconpicker_library['remote'],
        ]));
        return;
      }

      // Unzip the file.

      /** @var \Drupal\Core\Archiver\ArchiverInterface $zipFile */
      $zipFile = $this->archiverManager
        ->getInstance([
        'filepath' => $path . '/fontIconPicker.zip',
      ]);
      $zipFile
        ->extract($path);

      // Remove the downloaded zip file.
      $this->fileSystem
        ->unlink($path . '/fontIconPicker.zip');

      // Success.
      $this
        ->logger()
        ->notice(dt('fontIconPicker library has been successfully downloaded to @path.', [
        '@path' => $path,
      ]));
    }
    else {
      $this
        ->logger()
        ->error(dt('Drush was unable to load the fontIconPicker) library'));
    }
  }

}

Classes

Namesort descending Description
FontawesomeIconPickerCommands A Drush commandfile for Font Awesome module.