proj4js.drush.inc in Proj4JS 7
drush integration for Proj4JS.
File
drush/proj4js.drush.inc
View source
<?php
define('PROJ4JS_DOWNLOAD_URI', 'http://download.osgeo.org/proj4js/proj4js-1.1.0.zip');
function proj4js_drush_command() {
$items = array();
$items['dl-proj4js'] = array(
'callback' => 'drush_proj4js_plugin',
'description' => dt('Download and install the Proj4JS library.'),
'bootstrap' => DRUSH_BOOTSTRAP_DRUSH,
'arguments' => array(
'path' => dt('Optional. A path where to install the Proj4JS library. If omitted Drush will use the default location.'),
),
);
return $items;
}
function proj4js_drush_help($section) {
switch ($section) {
case 'drush:dl-proj4js':
return dt('Download and install the Proj4JS library from http://trac.osgeo.org/proj4js, default location is sites/all/libraries.');
}
}
function drush_proj4js_plugin() {
$args = func_get_args();
if (!empty($args[0])) {
$path = $args[0];
}
else {
$path = 'sites/all/libraries';
}
if (!is_dir($path)) {
drush_op('mkdir', $path);
drush_log(dt('Directory @path was created', array(
'@path' => $path,
)), 'notice');
}
$olddir = getcwd();
chdir($path);
if ($filepath = drush_download_file(PROJ4JS_DOWNLOAD_URI)) {
$filename = basename($filepath);
$dirname = 'proj4js';
if (is_dir($dirname) || is_dir('proj4js')) {
drush_delete_dir($dirname, TRUE);
drush_log(dt('A existing Proj4JS library was deleted from @path', array(
'@path' => $path,
)), 'notice');
}
drush_tarball_extract($filename);
}
if (is_dir($dirname)) {
drush_log(dt('Proj4JS library has been installed in @path', array(
'@path' => $path,
)), 'success');
}
else {
drush_log(dt('Drush was unable to install the Proj4JS library to @path', array(
'@path' => $path,
)), 'error');
}
chdir($olddir);
}