Same name and namespace in other branches
  1. 7.x-1.x color_field.drush.inc \drush_color_field_simple() 1 comment

Commands to download the Simple Color Picker plugin.

File

./color_field.drush.inc, line 105

Code

function drush_color_field_simple($path = 'sites/all/libraries') {
    $filename = 'master.zip';
    $unzipfilename = 'jquery-simple-color-master';
    $dirname = 'jquery-simple-color';
    if (!drush_shell_exec('type unzip')) {
        return drush_set_error(dt('Missing dependency: unzip. Install it before using this command.'));
    }
    // 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);
    // Remove any existing jQuery Simple Color plugin directory.
    if (is_dir($dirname)) {
        drush_shell_exec('rm -rf ' . $dirname);
        drush_log(dt('An existing Simple Color Picker plugin was overwritten at @path', array(
            '@path' => $path,
        )), 'notice');
    }
    // Remove any existing jQuery Simple Color plugin zip archive.
    if (is_file($filename)) {
        drush_op('unlink', $filename);
    }
    // Download the zip archive.
    if (!drush_shell_exec('wget ' . COLOR_FIELD_SIMPLE_COLOR_PICKER_DOWNLOAD_URI)) {
        drush_shell_exec('curl -kOL ' . COLOR_FIELD_SIMPLE_COLOR_PICKER_DOWNLOAD_URI);
    }
    // If file has been downloaded.
    if (is_file($filename)) {
        // Remove old library.
        if (is_dir($dirname)) {
            drush_shell_exec('rm -rf ' . $dirname);
        }
        // Decompress the zip archive.
        drush_shell_exec('unzip -qq -o ' . $filename);
        drush_shell_exec('mv ' . $unzipfilename . ' ' . $dirname);
        // Remove the zip archive.
        drush_op('unlink', $filename);
    }
    // Set working directory back to the previous working directory.
    chdir($olddir);
    if (is_dir($path . '/' . $dirname)) {
        drush_log(dt('jQuery Simple Color plugin has been downloaded to @path', array(
            '@path' => $path,
        )), 'success');
    }
    else {
        drush_log(dt('Drush was unable to download the jQuery Simple Color  plugin to @path', array(
            '@path' => $path,
        )), 'error');
    }
}