You are here

openlayers.drush.inc in Openlayers 7.3

Same filename and directory in other branches
  1. 7.2 drush/openlayers.drush.inc

The drush integration for Openlayers.

File

drush/openlayers.drush.inc
View source
<?php

/**
 * @file
 * The drush integration for Openlayers.
 */

/**
 * Implements hook_drush_command().
 */
function openlayers_drush_command() {
  $items = array();

  // The key in the $items array is the name of the command.
  $items['dl-openlayers'] = array(
    'callback' => 'drush_openlayers_plugin',
    'description' => dt('Download and install the Openlayers library.'),
    'bootstrap' => DRUSH_BOOTSTRAP_DRUSH,
    'arguments' => array(
      'path' => dt('Optional. A path where to install the Openlayers library. If omitted Drush will use the default location.'),
    ),
  );
  return $items;
}

/**
 * Implements hook_drush_help().
 */
function openlayers_drush_help($section) {
  switch ($section) {
    case 'drush:dl-openlayers':
      return dt('Download and install the Openlayers library from http://openlayers.org, default location is sites/all/libraries.');
  }
}

/**
 * Command to download the Openlayers library.
 */
function drush_openlayers_plugin() {
  $args = func_get_args();
  if (!empty($args[0])) {
    $path = $args[0];
  }
  else {
    $path = 'sites/all/libraries';
  }

  // Create the path if it does not exist.
  if (!is_dir($path)) {
    drush_op('mkdir', $path);
    drush_log(dt('Directory @path was created', array(
      '@path' => $path,
    )), 'notice');
  }

  // Set the directory to the download location.
  $olddir = getcwd();
  chdir($path);
  $library = libraries_detect('openlayers3');

  // Download the archive.
  if ($filepath = drush_download_file($library['download url'])) {
    $filename = basename($filepath);
    $dirname = basename($filepath, '.zip');

    // Remove any existing Openlayers library directory.
    if (is_dir($dirname) || is_dir('openlayers3')) {
      drush_delete_dir($dirname, TRUE);
      drush_delete_dir('openlayers3', TRUE);
      drush_log(dt('A existing Openlayers library was deleted from @path', array(
        '@path' => $path,
      )), 'notice');
    }

    // Decompress the archive.
    drush_tarball_extract($filename);
    drush_move_dir($dirname, 'openlayers3', TRUE);
    $dirname = 'openlayers3';
  }
  if (is_dir($dirname)) {
    drush_log(dt('Openlayers library has been installed in @path', array(
      '@path' => $path,
    )), 'success');
  }
  else {
    drush_log(dt('Drush was unable to install the Openlayers library to @path', array(
      '@path' => $path,
    )), 'error');
  }

  // Set working directory back to the previous working directory.
  chdir($olddir);
}

Functions

Namesort descending Description
drush_openlayers_plugin Command to download the Openlayers library.
openlayers_drush_command Implements hook_drush_command().
openlayers_drush_help Implements hook_drush_help().