-
Notifications
You must be signed in to change notification settings - Fork 12
/
provision.drush.inc
493 lines (458 loc) · 20.3 KB
/
provision.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
<?php
/**
* @file
* Provision Drush commands.
*
*
* This module provides a framework for a Drupal site to manage and install new Drupal sites, using the command line
* Drush utility.
*
* It allows for pluggable 'provisioning modules' that can extend and modify the tasks that are taken during installation.
*
* Each site has the following commands that can be run on it.
*
* Implemented :
* install - Install a new Drupal site. The install command uses 3 separate hooks to do its job,
* namely hook_pre_provision_install(), hook_provision_install() and hook_post_provision_install().
* verify - Recreate all configuration files, to be in synch with changes in the front end. And test that they are correct.
* stats - Return an associated array of site statistics. (implemented in provision_stats module, is thus optional)
* import - Import the details of an already existing site into the provisioning framework.
* This command inspects the settings.php and generates the site.php file that the framework uses for configuration.
* backup - Generates a tarball containing the sites directory, the site data configuration and the database dump.
* This allows the tarball to act as a 'site package', which can be redeployed on other installations,
* or used for an upgrade.
* disable - Disable an installed Drupal site. Changes the virtual host config file so that it redirects to provision_disabled_site_redirect_url
* enable - Re-enable a site that has already been disabled. Recreates the virtual host file.
* delete - In a site context: generates a back up of the site, and then removes all references to it.
* In a platform context: removes the platform and its vhost config from the server if no sites are currently running on it
* restore - Revert to a previous backup of the site.
*
* deploy - Accepts a site package (backup) as argument, and redeploys it, running the upgrade processes on it.
* Uses hook_provision_pre_upgrade(), hook_provision_upgrade() and hook_provision_post_upgrade() hooks,
* and allows clean roll back if any errors occur. Will include stringent checking of module versions,
* and allow unit tests to be run.
* lock - Lock a platform so that sites cannot be provisioned on it. This does not disable or delete the platform
* nor any sites currently provisioned on it.
* unlock - Unlock a platform so that sites can be provisioned on it.
*
* login-reset - Generate a one-time login reset URL.
*/
/**
* @defgroup provisiondrush Command line interface for Provision.
* @{
*/
include_once('provision.inc');
/**
* Implements hook_drush_init().
*/
function provision_drush_init() {
// try to load the drush siterecoard (the "alias") into d
// if a name is provided, it's because we're in provision-save so we
// need to specify it because it's not loaded by drush
$hash_name = drush_get_option('#name') ? '#name' : 'name';
d(drush_get_option($hash_name, '@self', 'alias'), TRUE);
// Make sure that the provision command is not being run as the root user.
_provision_drush_check_user();
// Abort the process if the load is too high.
_provision_drush_check_load();
}
/**
* This will abort any process running drush provision commands if the
* user running the command is root.
*/
function _provision_drush_check_user() {
$command = drush_get_command();
$name = posix_getpwuid(posix_geteuid());
if (preg_match("/^provision-\b/", $command['command']) && $name['name'] == 'root') {
return drush_set_error('PROVISION_IS_ROOT', dt('You are running the provision script as the root user. Exiting'));
}
}
/**
* This will abort any process running drush if the load is critical.
*
* @see provision_load_critical()
*/
function _provision_drush_check_load() {
$load = sys_getloadavg();
if (provision_load_critical($load)) {
drush_set_error('PROVISION_OVERLOAD', dt("load on system too heavy (@load), aborting", array('@load' => join(" ", $load))));
exit(1);
}
}
/**
* Implementation of hook_drush_command().
*/
function provision_drush_command() {
$items['provision-save'] = array(
'description' => dt('Save Drush alias'),
'arguments' => array(
'@context_name' => 'Context to save',
),
'options' => array_merge(array(
'context_type' => 'server, platform, or site; default server',
'delete' => 'Remove the alias.'),
Provision_Context_server::option_documentation(),
Provision_Context_platform::option_documentation(),
Provision_Context_site::option_documentation()),
// we should populate from all known contexts, unfortunately we don't
// enumerate them yet... see https://drupal.org/node/1972286
'allow-additional-options' => TRUE,
'bootstrap' => DRUSH_BOOTSTRAP_DRUSH,
);
$items['provision-install'] = array(
'description' => dt('Provision a new site using the provided data.'),
'examples' => array(
'drush @site provision-install' => 'Install the site as defined by the site Drush alias generated with provision-save.',
),
'options' => array(
'client_email' => dt('The email address of the client to use.'),
'profile' => dt('The profile to use when installing the site.'),
'force-reinstall' => dt('Delete the sites database and files, before attempting to install.'),
),
'allow-additional-options' => TRUE,
'bootstrap' => DRUSH_BOOTSTRAP_DRUPAL_ROOT
);
$items['provision-install-backend'] = array(
'description' => dt('Provision a new site using the provided data.'),
'options' => array(
'client_email' => dt('The email address of the client to use.'),
),
'allow-additional-options' => TRUE,
'hidden' => TRUE,
'bootstrap' => DRUSH_BOOTSTRAP_DRUPAL_SITE
);
$items['provision-import'] = array(
'description' => dt('Turn an already running site into a provisioned site.'),
'options' => array(
'client_email' => dt('The email address of the client to use.'),
),
'allow-additional-options' => TRUE,
'examples' => array(
'drush @site provision-import' => 'Import the site as defined by the site Drush alias generated with provision-save.',
),
'bootstrap' => DRUSH_BOOTSTRAP_DRUPAL_ROOT
);
$items['provision-backup'] = array(
'optional arguments' => array('backup-file' => dt('The file to save the backup to. This will be a gzipped tarball.')),
'options' => array(
'provision_backup_suffix' => dt('Set the extension for the backupfile, compression is derived from this (default: ".tar.gz"'),
),
'description' => dt('Generate a back up for the site.'),
'allow-additional-options' => TRUE,
'examples' => array(
'drush @site provision-backup' => 'Back up the site as defined by the site Drush alias generated with provision-save.',
),
'bootstrap' => DRUSH_BOOTSTRAP_DRUPAL_ROOT
);
$items['provision-enable'] = array(
'description' => 'Enable a disabled site.',
'allow-additional-options' => TRUE,
'examples' => array(
'drush @site provision-enable' => 'Enable the site as defined by the site Drush alias generated with provision-save.',
),
'bootstrap' => DRUSH_BOOTSTRAP_DRUPAL_ROOT
);
$items['provision-disable'] = array(
'arguments' => array('domain.com' => dt('The domain of the site to disable (only if disabled).')),
'description' => 'Disable a site.',
'allow-additional-options' => TRUE,
'examples' => array(
'drush @site provision-disable' => 'Disable the site as defined by the site Drush alias generated with provision-save.',
),
'bootstrap' => DRUSH_BOOTSTRAP_DRUPAL_ROOT
);
$items['provision-lock'] = array(
'description' => 'Lock a platform from having any other sites provisioned on it.',
'examples' => array(
'drush @platform provision-lock' => 'Lock the platform as defined by the platform Drush alias generated with provision-save.',
),
'bootstrap' => DRUSH_BOOTSTRAP_DRUPAL_ROOT
);
$items['provision-unlock'] = array(
'description' => 'Unlock a platform so that sites can be provisioned on it.',
'examples' => array(
'drush @platform provision-unlock' => 'Unlock the platform as defined by the platform Drush alias generated with provision-save.',
),
'bootstrap' => DRUSH_BOOTSTRAP_DRUPAL_ROOT
);
$items['provision-verify'] = array(
'arguments' => array('domain.com' => dt('The domain of the site to verify).')),
'description' => 'Verify that the provisioning framework is correctly installed.',
'examples' => array(
'drush @site provision-verify' => 'Verify the site as defined by the site Drush alias generated with provision-save.',
'drush @platform provision-verify' => 'Verify the platform as defined by the platform Drush alias generated with provision-save.',
),
'options' => array(
'working-copy' => array(
'description' => dt('Keep VCS files when building the a platform using Drush make.'),
'hidden' => TRUE,
),
'override_slave_authority' => array(
'description' => dt('Push the site specific files directory to a slave. This overrides the slaves authority.'),
),
),
'allow-additional-options' => TRUE,
'bootstrap' => DRUSH_BOOTSTRAP_DRUSH
);
$items['provision-restore'] = array(
'description' => 'Restore the site to a previous backup. This will also generate a backup of the site as it was.',
'arguments' => array(
'site_backup.tar.gz' => dt('The backup to restore the site to.')),
'allow-additional-options' => TRUE,
'examples' => array(
'drush @site provision-restore ~/backups/some_site.tar.gz' => 'Restore the site to the backup in ~/backups/some_site.tar.gz.',
),
'bootstrap' => DRUSH_BOOTSTRAP_DRUPAL_ROOT
);
$items['provision-deploy'] = array(
'description' => 'Deploy an existing backup to a new url.',
'arguments' => array(
'site_backup.tar.gz' => dt('The backup to deploy.')),
'options' => array(
'old_uri' => dt('Old site uri to replace in references to sites/example.com/files/ in the database content.)'),
),
'allow-additional-options' => TRUE,
'examples' => array(
'drush @site provision-deploy ~/backups/some_site.tar.gz' => 'Deploy the site as defined by the site Drush alias, from the backup in ~/backups/some_site.tar.gz.',
),
'bootstrap' => DRUSH_BOOTSTRAP_DRUPAL_ROOT
);
$items['provision-migrate'] = array(
'description' => 'Migrate a site between platforms.',
'arguments' => array(
'@platform_name' => dt('The Drush alias of the platform.')),
'options' => array(
'profile' => dt('The Drupal profile to use.')),
'allow-additional-options' => TRUE,
'examples' => array(
'drush @site provision-migrate @platform_name' => 'Migrate the site as defined by the Drush alias, to the platform as defined by the platform\'s Drush alias',
),
'bootstrap' => DRUSH_BOOTSTRAP_DRUPAL_ROOT
);
$items['provision-clone'] = array(
'description' => 'Clone a site between platforms.',
'arguments' => array(
'@new_site' => dt('The Drush alias of the new site as generated by provision-save.'),
'@platform_name' => dt('The Drush alias of the platform to clone the site onto.')),
'options' => array(
'profile' => dt('The Drupal profile to use.')),
'allow-additional-options' => TRUE,
'examples' => array(
'drush @site provision-clone @new_site @platform_name' => 'Clone the original site to the new site on a platform',
),
'bootstrap' => DRUSH_BOOTSTRAP_DRUPAL_ROOT
);
$items['provision-delete'] = array(
'description' => 'Delete a site or platform.',
'options' => array(
'force' => dt('Force deletion.')),
'allow-additional-options' => TRUE,
'examples' => array(
'drush @site provision-delete' => 'Delete the site as defined by the site Drush alias generated with provision-save.',
),
'bootstrap' => DRUSH_BOOTSTRAP_DRUSH
);
$items['provision-login-reset'] = array(
'description' => 'Generate a one-time login reset URL.',
'allow-additional-options' => TRUE,
'examples' => array(
'drush @site provision-login-reset' => 'Generate a one-time login reset URL for the site as defined by the site Drush alias generated with provision-save.',
),
'bootstrap' => DRUSH_BOOTSTRAP_DRUPAL_ROOT
);
$items['provision-backup-delete'] = array(
'description' => 'Delete a backup file.',
'arguments' => array('backup-file' => dt('The backup file to delete. This will be a gzipped tarball.')),
'required-arguments' => TRUE,
'examples' => array(
'drush @site provision-backup-delete /path/to/site_backup.tgz' => 'Delete a backup of this site as defined by the site Drush alias generated with provision-save.',
),
'allow-additional-options' => TRUE,
'bootstrap' => DRUSH_BOOTSTRAP_DRUSH
);
$items['hostmaster-migrate'] = array(
'description' => dt('Migrate an instance of the Hostmaster front end to a new platform'),
'bootstrap' => DRUSH_BOOTSTRAP_DRUPAL_ROOT,
'arguments' => array(
'example.com' => dt('The name of the site to migrate'),
'/path/to/platform' => dt('The platform to migrate the site to.'),
),
'options' => array(
'http_service_type' => dt('Webserver type to configure (default: %webserver)', array('%webserver' => 'apache')),
'makefile' => dt('The makefile used to create the hostmaster platform (default: %makefile)', array('%makefile' => dirname(__FILE__). '/aegir.make')),
'working-copy' => dt('Keep VCS files when building the hostmaster platform using Drush make.')
),
);
$items['hostmaster-install'] = array(
'description' => dt('Install and verify the Hostmaster frontend.'),
'bootstrap' => DRUSH_BOOTSTRAP_DRUSH,
'arguments' => array(
'example.com' => dt('The URL of the site to install, optional (default: %host).', array('%host' => provision_fqdn())),
),
'options' => array
(
'http_service_type' => dt('Webserver type to configure (default: %webserver)', array('%webserver' => 'apache')),
'aegir_db_host' => dt('Database host to connect to (default: %host)', array('%host' => 'localhost')),
'aegir_db_user' => dt('Database user to connect as (default: %user)', array('%user' => 'root')),
'aegir_db_pass' => dt('Database password to use'),
'aegir_db_port' => dt('Database port to use (default: %port)', array('%port' => '3306')),
'aegir_db_grant_all_hosts' => dt('Allow connection from arbitrary web hosts. (Default: FALSE)'),
'client_email' => dt('Email of the first client to create in the frontend'),
'client_name' => dt('Name of the first client to create in the frontend (default: %user)', array('%user' => 'admin')),
'makefile' => dt('The makefile used to create the hostmaster platform (default: %makefile)', array('%makefile' => dirname(__FILE__). '/aegir.make')),
'aegir_host' => dt('Fully qualified domain name of the local server (default: %fqdn)', array('%fqdn' => provision_fqdn())),
'script_user' => dt('User to run the backend as (default: %user)', array('%user' => provision_current_user())),
'web_group' => dt('Group the webserver is running as (default: %group)', array('%group' => _provision_default_web_group())),
'http_port' => dt('Port the webserver is running on (default: %port)', array('%port' => '80')),
'version' => dt('The version of this released. (default: %version)', array('%version' => provision_version())),
'aegir_root' => dt('Install aegir in this home directory (default: %home). Do not change unless you know what you are doing.', array('%home' => drush_server_home())),
'root' => dt('Install the frontend in this directory (default: %home/hostmaster-%version).', array('%home' => drush_server_home(), '%version' => provision_version())),
'backend-only' => dt('Install just the backend, and not the frontend UI.'),
'working-copy' => dt('Keep VCS files when building the hostmaster platform using Drush make.')
),
);
$items['hostmaster-uninstall'] = array(
'description' => dt('Uninstall the Hostmaster frontend.'),
'bootstrap' => DRUSH_BOOTSTRAP_DRUPAL_SITE,
'options' => array
(
'all' => dt('Destroy *ALL* sites managed by the Aegir frontend'),
),
);
$items['backend-parse'] = array(
'description' => dt('Parse the output of --backend commands to a human readable form'),
'bootstrap' => DRUSH_BOOTSTRAP_DRUSH,
);
return $items;
}
function drush_provision_save($alias = NULL) {
if (drush_get_option('delete', FALSE)) {
// remove an existing alias
$config = new Provision_Config_Drushrc_Alias($alias);
$config->unlink();
}
else {
// trigger additional logic that should happen only on save.
d($alias)->type_invoke('save');
// create or update the record
d($alias)->write_alias();
}
}
function drush_provision_verify() {
provision_backend_invoke(d()->name, 'provision-save');
d()->command_invoke('verify');
}
function _provision_default_web_group() {
$info = posix_getgrgid(posix_getgid());
$common_groups = array(
'www-data',
'apache',
'nginx',
'www',
'_www',
'webservd',
'httpd',
'nogroup',
'nobody',
$info['name']);
foreach ($common_groups as $group) {
if (provision_posix_groupname($group)) {
return $group;
break;
}
}
return NULL;
}
/**
* determine the number of CPU on the machine
*
* This tries a best guess at the number of CPUs running on the system. This is
* useful for calculating sane load threshold.
*
* On Linux, this parses /proc/cpuinfo and looks for lines like this:
*
* processor : 0
* ...
* processor : 1
* processor : n
*
* The number of CPUs on the system is n+1, we just count the number of lines.
*
* Other systems remain to be implemented, and would be best implemetend
* through a PECL (or similar) extension that would use the POSIX sysconf
* interface, as such:
*
* ncpus = sysconf(_SC_NPROCESSORS_ONLN);
*
* If no method can be found to figure out the number of CPUs, this will return
* FALSE.
*
* People wishing to extend this to other platforms should look at
* suggestions at:
*
* http://groups.google.com/group/sage-devel/browse_thread/thread/d65209f7ad6057fc
*
* @see provision_load_critical()
* @todo implement for other systems than Linux
*/
function provision_count_cpus() {
$ncpus = FALSE;
if (is_readable("/data/all/cpuinfo")) {
# this should work on BOA with a /data/all/cpuinfo generated daily
$cpuinfo = (int) file_get_contents("/data/all/cpuinfo");
if ($cpuinfo !== FALSE && is_numeric($cpuinfo)) {
$ncpus = $cpuinfo;
}
}
elseif (is_readable("/proc/cpuinfo")) {
# this should work on Linux with a /proc filesystem
$cpuinfo = file_get_contents("/proc/cpuinfo");
if ($cpuinfo !== FALSE) {
if (preg_match_all("/^processor.*:.*[0-9]+$/m", $cpuinfo, $matches)) {
$ncpus = count(array_pop($matches));
}
}
}
return $ncpus;
}
define('CRITICAL_LOAD_MULTIPLIER', 5);
define('CRITICAL_LOAD_THRESHOLD', 10);
/**
* determine if overall load of the machine is critical
*
* We use the "average system load" of the system as a metric, as available
* through 'uptime' or in PHP sys_getloadavg() since 5.1. The load is usually
* defined as "the number of processes in the system run queue"
*
* It's not a really reliable metric, but it's the best shot we've got without
* getting into real specific details about I/O, CPU or memory load that are
* going to be even tougher to evaluate.
*
* We base our evaluation on the number of CPUs on the servers. If there are
* more than 5 processes waiting per CPU, we abort completely. If we ignore the
* number of available CPUs, we assume a critical limit is a load of 10.
*
* @see sys_getloadavg()
*/
function provision_load_critical($load = NULL, $threshold = NULL) {
if (is_null($load)) {
$load = sys_getloadavg();
}
if (is_null($threshold)) {
if ($ncpus = provision_count_cpus()) {
$threshold = $ncpus * drush_get_option('critical_load_multiplier', CRITICAL_LOAD_MULTIPLIER);
}
else {
// can't determine the number of CPU, we hardcode at load 10
$threshold = drush_get_option('critical_load_threshold', CRITICAL_LOAD_THRESHOLD);
}
}
return ($load[0] > $threshold);
}
/**
* Check whether a Hosting feature is enabled.
*/
function provision_hosting_feature_enabled($feature) {
$features = drush_get_option('hosting_features', array());
return array_key_exists($feature, $features) && $features[$feature];
}