-
Notifications
You must be signed in to change notification settings - Fork 37
/
islandora_internet_archive_bookreader.drush.inc
100 lines (85 loc) · 3.01 KB
/
islandora_internet_archive_bookreader.drush.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?php
/**
* @file
* drush integration for islandora_iabookreader.
*/
/**
* The Internet Archive Bookreader plugin URI.
*/
define('IABOOKREADER_DOWNLOAD_URI', 'https://github.com/internetarchive/bookreader/archive/2.0.2.zip');
/**
* The original extracted directory from the zip file.
*/
define('IABOOKREADER_ORIGINAL_DIR', 'bookreader-2.0.2');
/**
* Implements hook_drush_command().
*/
function islandora_internet_archive_bookreader_drush_command() {
$items = array();
// The key in the $items array is the name of the command.
$items['iabookreader-plugin'] = array(
'callback' => 'drush_islandora_internet_archive_bookreader_plugin',
'description' => dt('Download and install the Internet Archive Bookreader plugin.'),
'bootstrap' => DRUSH_BOOTSTRAP_DRUSH,
'arguments' => array(
'path' => dt('Optional. A path where to install the Internet Archive Bookreader plugin. If omitted Drush will use the default location.'),
),
'aliases' => array('iabookreaderplugin'),
);
return $items;
}
/**
* Implements hook_drush_help().
*/
function islandora_internet_archive_bookreader_drush_help($section) {
switch ($section) {
case 'drush:iabookreader-plugin':
return dt('Download and install the Internet Archive Bookreader plugin, default location is sites/all/libraries.');
}
}
/**
* Command to download the Internet Archive Bookreader plugin.
*/
function drush_islandora_internet_archive_bookreader_plugin() {
$args = func_get_args();
if (!empty($args[0])) {
$path = $args[0];
}
else {
$path = _drush_core_directory("@site: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);
// Download the zip archive.
if ($filepath = drush_download_file(IABOOKREADER_DOWNLOAD_URI)) {
$filename = basename($filepath);
$dirname = IABOOKREADER_ORIGINAL_DIR;
// Remove any existing Internet Archive Bookreader plugin directory.
if (is_dir($dirname) || is_dir('bookreader')) {
drush_delete_dir($dirname, TRUE);
drush_delete_dir('bookreader', TRUE);
drush_log(dt('A existing Internet Archive Bookreader plugin was deleted from @path', array('@path' => $path)), 'notice');
}
// Decompress the zip archive.
drush_tarball_extract($filename);
// Change the directory name to "iabookreader" if needed.
if ($dirname != 'bookreader') {
drush_move_dir($dirname, 'bookreader', TRUE);
$dirname = 'bookreader';
}
}
if (is_dir($dirname)) {
drush_log(dt('Internet Archive Bookreader plugin has been installed in @path', array('@path' => $path)), 'success');
}
else {
drush_log(dt('Drush was unable to install the Internet Archive Bookreader plugin to @path', array('@path' => $path)), 'error');
}
// Set working directory back to the previous working directory.
chdir($olddir);
}