-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathprovision.api.php
420 lines (396 loc) · 13 KB
/
provision.api.php
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
<?php
/**
* @file
* Provision API
*
* @see drush.api.php
* @see drush_command_invoke_all()
* @see http://docs.aegirproject.org/en/3.x/extend/altering-behaviours/
*/
/**
* Possible variables to set in local.drushrc.php or another drushrc location Drush supports.
*
* usage:
* $options['provision_backup_suffix'] = '.tar.bz2';
*
* provision_verify_platforms_before_migrate
* When migrating many sites turning this off can save time, default TRUE.
*
* provision_backup_suffix
* Method to set the compression used for backups... e.g. '.tar.bz2' or '.tar.', defaults to '.tar.gz'.
*
* provision_apache_conf_suffix
* Set to TRUE to generate apache vhost files with a .conf suffix, default FALSE.
* This takes advantage of the IncludeOptional statment introduced in Apache 2.3.6.
* WARNING: After turning this on you need to re-verify all your sites, then servers,
* and then cleanup the old configfiles (those without the .conf suffix).
* Or run: `rename s/$/.conf/ /var/aegir/config/server_master/apache/vhost.d/*` for each server.
*
* provision_create_local_settings_file
* Create a site 'local.settings.php' file if one isn't found, default TRUE.
*
* provision_mysqldump_suppress_gtid_restore
* Don't restore GTIDs from a database export. Set to TRUE for MySQL versions 5.6 and above to
* avoid having restores error out during operations such as cloning, migrating, and restoring from
* backup. Default is FALSE.
*
* provision_composer_install_platforms
* Set to FALSE to prevent provision from ever running `composer install`.
* Default is TRUE.
*
* provision_composer_install_platforms_verify_always
* By default, provision will run `composer install` every time a platform
* is verified.
*
* Set to FALSE to only run `composer install` once. If composer.json
* changes, you will have to run `composer install` manually.
*
* Default is TRUE.
*
* provision_composer_install_command
*
* The full command to run during platform verify.
* Default is 'composer install --no-interaction --no-progress --no-dev'
*
*/
/**
* Implements hook_drush_load(). Deprecated. Removed in Drush 7.x.
*
* In a drush contrib check if the frontend part (hosting_hook variant) is enabled.
*/
function hook_drush_load() {
$features = drush_get_option('hosting_features', array());
$hook_feature_name = 'something';
return array_key_exists($hook_feature_name, $features) // Front-end module is installed...
&& $features[$hook_feature_name]; // ... and enabled.
}
/**
* Advertise what service types are available and their default
* implementations. Services are class Provision_Service_{type}_{service} in
* {type}/{service}/{service}_service.inc files.
*
* @return
* An associative array of type => default. Default may be NULL.
*
* @see provision.service.inc
*/
function hook_provision_services() {
return array('db' => NULL);
}
/**
* Alter a Context immediately after it is loaded and the 'init' methods are run.
*
* If replacing the context with a new object, be sure to implement the methods
* $context->method_invoke('init) and $context->type_invoke('init');
*
* @param $context \Provision_Context|\Provision_Context_server|\Provision_Context_site|\Provision_Context_platform
*
* @see provision.context.inc#72
*/
function hook_provision_context_alter(&$context) {
$context = new Provision_Context_Server_alternate($context->name);
$context->method_invoke('init');
$context->type_invoke('init');
}
/**
* Append PHP code to Drupal's settings.php file.
*
* To use templating, return an include statement for the template.
*
* @param $uri
* URI for the site.
* @param $data
* Associative array of data from Provision_Config_Drupal_Settings::data.
*
* @return
* Lines to add to the site's settings.php file.
*
* @see Provision_Config_Drupal_Settings
*/
function hook_provision_drupal_config($uri, $data) {
return '$conf[\'reverse_proxy\'] = TRUE;';
}
/**
* Append Apache configuration to server configuration.
*
* To use templating, return an include statement for the template.
*
* The d() function is available to retrieve more information from the aegir
* context.
*
* @param $data
* Associative array of data from Provision_Config_Apache_Server::data.
*
* @return
* Lines to add to the configuration file.
*
* @see Provision_Config_Apache_Server
*/
function hook_provision_apache_server_config($data) {
}
/**
* Append Apache configuration to platform configuration.
*
* To use templating, return an include statement for the template.
*
* The d() function is available to retrieve more information from the aegir
* context.
*
* @param $data
* Associative array of data from Provision_Config_Apache_Platform::data.
*
* @return
* Lines to add to the configuration file.
*
* @see Provision_Config_Apache_Platform
*/
function drush_hook_provision_apache_dir_config($data) {
}
/**
* Append Apache configuration to site vhost configuration.
*
* To use templating, return an include statement for the template.
*
* The d() function is available to retrieve more information from the aegir
* context.
*
* @param $uri
* URI for the site.
* @param $data
* Associative array of data from Provision_Config_Apache_Site::data.
* For example:
* Array (
* [server] => Provision_Context_server Object()
* [application_name] => apache
* [http_pred_path] => /var/aegir/config/server_master/apache/pre.d
* [http_postd_path] => /var/aegir/config/server_master/apache/post.d
* [http_platformd_path] => /var/aegir/config/server_master/apache/platform.d
* [http_vhostd_path] => /var/aegir/config/server_master/apache/vhost.d
* [http_subdird_path] => /var/aegir/config/server_master/apache/subdir.d
* [http_port] => 80
* [redirect_url] => http://example.com
* [db_type] => mysql
* [db_host] => localhost
* [db_port] => 3306
* [db_passwd] => ***
* [db_name] => ***
* [db_user] => ***
* [packages] => Array of package information...
* [installed] => 1
* [config-file] => /var/aegir/platforms/drupal-7.58/sites/example.com/drushrc.php
* [context-path] => /var/aegir/platforms/drupal-7.58/sites/example.com/drushrc.php
* [https_port] => 443
* [extra_config] => # Extra configuration from modules:
* )
*
* @return
* Lines to add to the configuration file.
*
* @see Provision_Config_Apache_Site
*/
function drush_hook_provision_apache_vhost_config($uri, $data) {
}
/**
* Append Nginx configuration to server configuration.
*
* To use templating, return an include statement for the template.
*
* The d() function is available to retrieve more information from the aegir
* context.
*
* @param $data
* Associative array of data from Provision_Config_Nginx_Server::data.
*
* @return
* Lines to add to the configuration file.
*
* @see Provision_Config_Nginx_Server
*/
function hook_provision_nginx_server_config($data) {
}
/**
* Append Nginx configuration to platform configuration.
*
* To use templating, return an include statement for the template.
*
* The d() function is available to retrieve more information from the aegir
* context.
*
* @param $data
* Associative array of data from Provision_Config_Nginx_Platform::data.
*
* @return
* Lines to add to the configuration file.
*
* @see Provision_Config_Nginx_Platform
*/
function drush_hook_provision_nginx_dir_config($data) {
}
/**
* Append Nginx configuration to site vhost configuration.
*
* To use templating, return an include statement for the template.
*
* The d() function is available to retrieve more information from the aegir
* context.
*
* @param $uri
* URI for the site.
* @param $data
* Associative array of data from Provision_Config_Nginx_Site::data.
*
* @return
* Lines to add to the configuration file.
*
* @see Provision_Config_Nginx_Site
*/
function drush_hook_provision_nginx_vhost_config($uri, $data) {
}
/**
* Specify a different template for rendering a config file.
*
* @param $config
* The Provision_config object trying to find its template.
*
* @return
* A filename of a template to use for rendering.
*
* @see hook_provision_config_load_templates_alter()
*/
function hook_provision_config_load_templates($config) {
if (is_a($config, 'Provision_Config_Drupal_Settings')) {
$file = dirname(__FILE__) . '/custom-php-settings.tpl.php';
return $file;
}
}
/**
* Alter the templates suggested for rendering a config file.
*
* @param $templates
* The array of templates suggested by other Drush commands.
* @param $config
* The Provision_config object trying to find its template.
*
* @see hook_provision_config_load_templates()
*/
function hook_provision_config_load_templates_alter(&$templates, $config) {
// Don't let any custom templates be used.
$templates = array();
}
/**
* Alter the variables used for rendering a config file.
*
* When implementing this hook, the function name should start with your file's name, not "drush_".
*
* @param $variables
* The variables that are about to be injected into the template.
* @param $template
* The template file chosen for use.
* @param $config
* The Provision_config object trying to find its template.
*
* @see hook_provision_config_load_templates()
* @see hook_provision_config_load_templates_alter()
*/
function hook_provision_config_variables_alter(&$variables, $template, $config) {
// If this is the vhost template and the http service is Docker...
if (is_a($config, 'Provision_Config_Apache_Site') && is_a(d()->platform->service('http'), 'Provision_Service_http_apache_docker')) {
// Force the listen port to be 80.
$variables['http_port'] = '80';
}
}
/**
* Alter the array of directories to create.
*
* @param $mkdir
* The array of directories to create.
* @param string $url
* The url of the site being invoked.
*/
function hook_provision_drupal_create_directories_alter(&$mkdir, $url) {
$mkdir["sites/$url/my_special_dir"] = 02770;
$mkdir["sites/$url/my_other_dir"] = FALSE; // Skip the chmod on this directory.
}
/**
* Alter the array of directories to change group ownership of.
*
* @param $chgrp
* The array of directories to change group ownership of.
* @param string $url
* The url of the site being invoked.
*/
function hook_provision_drupal_chgrp_directories_alter(&$chgrp, $url) {
$chgrp["sites/$url/my_special_dir"] = d('@server_master')->web_group;
$chgrp["sites/$url/my_other_dir"] = FALSE; // Skip the chgrp on this directory.
}
/**
* Alter the array of directories to not to recurse into in mkdir and chgrp
* operations.
*
* @param $chgrp_not_recursive
* The array of directories not to recurse into.
* @param string $url
* The url of the site being invoked.
*/
function hook_provision_drupal_chgrp_not_recursive_directories_alter($chgrp_not_recursive, $url) {
$chgrp_not_recursive[] = "sites/$url/my_special_dir";
unset($chgrp_not_recursive["sites/$url"]); // Allow recursion where we otherwise wouldn't.
}
/**
* Alter the array of directories to not to recurse into in chmod operations.
*
* @param $chmod_not_recursive
* The array of directories not to recurse into.
* @param string $url
* The url of the site being invoked.
*/
function hook_provision_drupal_chmod_not_recursive_directories_alter($chmod_not_recursive, $url) {
$chmod_not_recursive[] = "sites/$url/my_special_dir";
unset($chmod_not_recursive["sites/$url"]); // Allow recursion where we otherwise wouldn't.
}
/**
* Alter the settings array just before starting the provision install.
*
* @param $settings
* The array with settings.
* @param $url
* The site url.
*/
function hook_provision_drupal_install_settings_alter(&$settings, $url) {
$settings['forms']['install_configure_form']['update_status_module'] = array();
}
/**
* Alter the options passed to 'provision-deploy' when it is invoked in
* restore, clone and migrate tasks.
*
* @param array $deploy_options
* Options passed to the invocation of provision-deploy.
* @param string $context
* The type of task invoking the hook (e.g., 'clone').
*/
function hook_provision_deploy_options_alter(&$deploy_options, $context) {
// From hosting_s3; see: https://www.drupal.org/node/2412563
// Inject the backup bucket name during the 'clone' task, so that it is
// available in deploy().
if ($bucket = drush_get_option('s3_backup_name', FALSE)) {
$deploy_options['s3_backup_name'] = $bucket;
}
}
/**
* Alter the array of regexes used to filter mysqldumps.
*
* @param $regexes
* An array of patterns to match (keys) and replacement patterns (values).
* Setting a value to FALSE will omit the line entirely from the database
* dump. Defaults are set in Provision_Service_db_mysql::get_regexes().
*/
function hook_provision_mysql_regex_alter(&$regexes) {
$regexes = array(
// remove these lines entirely.
'#/\*!50013 DEFINER=.*/#' => FALSE,
// just remove the matched content.
'#/\*!50017 DEFINER=`[^`]*`@`[^`]*`\s*\*/#' => '',
// replace matched content as needed
'#/\*!50001 CREATE ALGORITHM=UNDEFINED \*/#' => "/*!50001 CREATE */",
);
}