You are here

function drush_quicksand_plugin in Views Quicksand 7

Command to download the Quicksand plugin.

1 string reference to 'drush_quicksand_plugin'
views_quicksand_drush_command in ./views_quicksand.drush.inc
Implementation of hook_drush_command().

File

./views_quicksand.drush.inc, line 77
drush integration for quicksand.

Code

function drush_quicksand_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);
  $filename = basename(QUICKSAND_DOWNLOAD_URI);
  $dirname = basename(QUICKSAND_DOWNLOAD_URI, '.js');

  // Remove any existing Quicksand plugin directory
  if (is_dir($dirname)) {
    drush_log(dt('An existing Quicksand plugin was overwritten at @path', array(
      '@path' => $path,
    )), 'notice');
  }
  else {
    drush_op('mkdir', $dirname);
  }
  chdir($dirname);

  // Remove any existing Quicksand plugin file
  if (is_file($filename)) {
    drush_op('unlink', $filename);
  }

  // Download the js file
  if (!drush_shell_exec('wget ' . QUICKSAND_DOWNLOAD_URI)) {
    drush_shell_exec('curl -O ' . QUICKSAND_DOWNLOAD_URI);
  }

  // Set working directory back to the previous working directory.
  chdir($olddir);
  if (is_dir($path . '/' . $dirname)) {
    drush_log(dt('Quicksand plugin has been downloaded to @path', array(
      '@path' => $path,
    )), 'success');
  }
  else {
    drush_log(dt('Drush was unable to download the Quicksand plugin to @path', array(
      '@path' => $path,
    )), 'error');
  }
}