forked from drush-ops/drush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsync_enable.drush.inc
116 lines (113 loc) · 4.76 KB
/
sync_enable.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?php
/**
* @file
* Example "Sync enable" sql-sync command alter.
*
* Sync_enable adds options to sql-sync to enable and disable
* modules after an sql-sync operation. One use case for this
* is to use Drush site aliases to automatically enable your
* development modules whenever you sync from your live site to
* your dev site. You may also add or remove permissions at
* the same time.
*
* For example:
*
* @code
* $aliases['dev'] = array (
* 'root' => '/srv/www/drupal',
* 'uri' => 'site.com',
* 'target-command-specific' => array(
* 'sql-sync' => array(
* 'enable' => array('devel', 'hacked'),
* 'disable' => array('securepages'),
* 'permission' => array(
* 'authenticated user' => array(
* 'add' => array('access devel information', 'access environment indicator'),
* 'remove' => 'change own password',
* ),
* 'anonymous user' => array(
* 'add' => 'access environment indicator',
* ),
* ),
* ),
* ),
* );
* @endcode
*
* To use this feature, copy the 'target-command-specific'
* item from the example alias above, place it in your development
* site aliases, and customize the development module list
* to suit. You must also copy the sync_enable.drush.inc
* file to a location where Drush will find it, such as
* $HOME/.drush. See `drush topic docs-commands` for more
* information.
*
* To set variables on a development site:
*
* Instead of calling variable_set and variable_delete in a post-sync
* hook, consider adding $conf variables to settings.php.
*
* For example:
*
* $conf['error_level'] = 2;
* error_reporting(E_ALL);
* ini_set('display_errors', TRUE);
* ini_set('display_startup_errors', TRUE);
* $conf['preprocess_css'] = 0;
* $conf['cache'] = 0;
* $conf['googleanalytics_account'] = '';
*/
/**
* Implements hook_drush_help_alter().
*
* When a hook extends a command with additional options, it must
* implement help alter and declare the option(s). Doing so will add
* the option to the help text for the modified command, and will also
* allow the new option to be specified on the command line. Without
* this, Drush will fail with an error when a user attempts to use
* the option.
*/
function sync_enable_drush_help_alter(&$command) {
if ($command['command'] == 'sql-sync') {
$command['options']['enable'] = "Enable the specified modules in the target database after the sync operation has completed.";
$command['options']['disable'] = "Disable the specified modules in the target database after the sync operation has completed.";
$command['options']['permission'] = "Add or remove permissions from a role in the target database after the sync operation has completed. The value of this option must be an array, so it may only be specified in a site alias record or drush configuration file. See `drush topic docs-example-sync-extension`.";
}
}
/**
* Implements drush_hook_post_COMMAND().
*
* The post hook is only called if the sql-sync operation completes
* without an error. When called, we check to see if the user specified
* any modules to enable/disable. If so, we will call pm-enable/pm-disable on
* each module.
*/
function drush_sync_enable_post_sql_sync($source = NULL, $destination = NULL) {
$modules_to_enable = drush_get_option_list('enable');
if (!empty($modules_to_enable)) {
drush_log(dt("Enable !modules post-sql-sync", array('!modules' => implode(',', $modules_to_enable))), 'ok');
drush_invoke_process($destination, 'pm-enable', $modules_to_enable, array('yes' => TRUE));
}
$modules_to_disable = drush_get_option_list('disable');
if (!empty($modules_to_disable)) {
drush_log(dt("Disable !modules post-sql-sync", array('!modules' => implode(',', $modules_to_disable))), 'ok');
drush_invoke_process($destination, 'pm-disable', $modules_to_disable, array('yes' => TRUE));
}
$permissions_table = drush_get_option('permission');
if (!empty($permissions_table)) {
foreach ($permissions_table as $role_name => $actions) {
if (array_key_exists('add', $actions)) {
$permissions_to_add = is_array($actions['add']) ? $actions['add'] : explode(', ', $actions['add']);
foreach ($permissions_to_add as $permission) {
$values = drush_invoke_process($destination, 'role-add-perm', array($role_name, $permission), array(), array('integrate' => TRUE));
}
}
if (array_key_exists('remove', $actions)) {
$permissions_to_remove = is_array($actions['remove']) ? $actions['remove'] : explode(', ', $actions['remove']);
foreach ($permissions_to_remove as $permission) {
$values = drush_invoke_process($destination, 'role-remove-perm', array($role_name, $permission), array(), array('integrate' => TRUE));
}
}
}
}
}