| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?php
- /**
- * @file
- * 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, // No bootstrap.
- '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);
- }
|