-
Notifications
You must be signed in to change notification settings - Fork 3
/
migrate.hostmaster.inc
231 lines (204 loc) · 8.66 KB
/
migrate.hostmaster.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
<?php
/**
* @file manual site migrate system
*/
/**
* Convert a directory name to a drush aliasname, stripping unwanted chars.
*
* @param string $name The directory name.
*
* @return string
* A drush alias name for the platform.
*/
function _provision_path_to_platform_alias($name) {
return '@platform_' . preg_replace("/[!\W]/", "", basename(rtrim($name, '/')));
}
function drush_provision_hostmaster_migrate_validate($site, $platform) {
// XXX: this doesn't actually document the pre alpha9 upgrade path
drush_print('
This command will operate the following changes in your system:
1. verify the server and the hostmaster site (provision-verify)
2. verify the new platform (which will download it if missing)
3. stop the queue (hosting-pause)
4. attempt a migration to the new platform (provision-migrate)
5. start the queue (hosting-resume)
We are making the following assumptions:
* you have read UPGRADE.txt
* you are executing this script as your "aegir" user
');
if (!drush_confirm("Do you really want to proceed with the upgrade?")) {
return drush_set_error('PROVISION_CANCEL_MIGRATE', 'Upgrade canceled by user');
}
$data = drush_get_merged_options();
$alias_file = drush_server_home() . '/.drush/server_master.alias.drushrc.php';
if (!file_exists($platform)) {
$dir = realpath(dirname($platform));
if (is_dir($dir)) {
$platform = $dir . '/' . basename($platform);
drush_log("changed relative platform path to absolute");
}
}
// If the alias file exists, it means we are migrating from a post alpha9 release.
if (is_readable($alias_file)) {
provision_backend_invoke('@server_master', 'provision-verify');
provision_backend_invoke('@hostmaster', 'provision-verify');
drush_set_option('site_name', '@hostmaster');
drush_set_option('old_platform', d('@hostmaster')->platform->name);
$new_platform = _provision_path_to_platform_alias($platform);
drush_invoke_process('@none', "provision-save", array($new_platform), array(
'context_type' => 'platform',
'server' => '@server_master',
'web_server' => '@server_master',
'root' => $platform,
'makefile' => drush_get_option('makefile', dirname(__FILE__) . '/aegir.make'),
));
// propagate working-copy args downward
$options = array();
if (drush_get_option('working-copy')) {
$options['working-copy'] = 1;
}
provision_backend_invoke($new_platform, 'provision-verify', array(), $options);
drush_set_option('new_platform', $new_platform);
// exit if an error has occured.
if (drush_get_error()) {
return false;
}
}
else {
// add a server record :
$server = '@server_master';
/**
* @deprecated in drush3 it's 'options', in drush 4 it's 'cli', drop
* 'options' when we drop drush3 support
*/
$context = drush_get_context('cli') ? 'cli' : 'options';
drush_invoke_process('@none', "provision-save", array($server), array(
'context_type' => 'server',
'aegir_root' => dirname(rtrim($data['config_path'], '/')),
'remote_host' => php_uname('n'),
'script_user' => $data['script_user'],
// apache or nginx or..
'http_service_type' => drush_get_option('http_service_type', 'apache', $context),
'web_group' => $data['web_group'],
'master_url' => $data['master_url'],
'restart_cmd' => $data['restart_cmd'],
// mysql
'db_service_type' => 'mysql',
'master_db' => $data['master_db'],
));
provision_backend_invoke($server, 'provision-verify');
drush_set_option('server_name', $server);
// exit if an error has occured.
if (drush_get_error()) {
return false;
}
$old_platform = _provision_path_to_platform_alias($data['publish_path']);
drush_invoke_process('@none', "provision-save", array($old_platform), array(
'context_type' => 'platform',
'server' => $server,
'web_server' => $server,
'root' => $data['publish_path'],
));
provision_backend_invoke($old_platform, 'provision-verify');
drush_set_option('old_platform', $old_platform);
// exit if an error has occured.
if (drush_get_error()) {
return false;
}
$new_platform = _provision_path_to_platform_alias($platform);
drush_invoke_process('@none', "provision-save", array($new_platform), array(
'context_type' => 'platform',
'server' => $server,
'web_server' => $server,
'root' => $platform,
'makefile' => drush_get_option('makefile', dirname(__FILE__) . '/aegir.make'),
));
provision_backend_invoke($new_platform, 'provision-verify');
drush_set_option('new_platform', $new_platform);
// exit if an error has occured.
if (drush_get_error()) {
return false;
}
$site_name = '@hostmaster';
drush_invoke_process('@none', "provision-save", array($site_name), array(
'context_type' => 'site',
'platform' => $old_platform,
'db_server' => $server,
'uri' => $site,
'profile' => 'hostmaster',
'drush_aliases' => 'hm',
'command-specific' => array (
'pm-download' => array (
'use-site-dir' => 1,
),
),
));
provision_backend_invoke($site_name, 'provision-verify');
drush_set_option('site_name', $site_name);
// exit if an error has occured.
if (drush_get_error()) {
return false;
}
}
}
/**
* Prepare the hostmaster site for migration
*/
function drush_provision_pre_hostmaster_migrate($site, $platform) {
// we ignore errors here through integrate = FALSE
// provision_backend_invoke(drush_get_option('site_name'), 'hosting-pause', array(), array('#integrate' => FALSE));
}
function drush_provision_hostmaster_migrate($site, $platform) {
// See: https://www.drupal.org/node/2762701.
$platform_version = provision_backend_invoke(drush_get_option('site_name'), 'status', array(), array('fields' => 'drupal-version', 'field-labels' => 0));
drush_log(dt("Debug trim platform_version @name", array('@name' => trim($platform_version['output']))), 'debug');
drush_log(dt("Debug platform_version @path: @id", array('@path' => $platform, '@id' => $platform_version)), 'debug');
$major_version_upgrade = version_compare('7.0', trim($platform_version['output'])) > 0 ? TRUE : FALSE;
//
// Disable PHP errors/warnings silencing temporarily
//
$major_version_upgrade = FALSE;
if ($major_version_upgrade) {
drush_log('Detected major version upgrade. Disabling error-reporting.', 'warning');
$local_settings_file = d('@hostmaster')->site_path . '/local.settings.php';
if (!file_exists($local_settings_file)) {
file_put_contents($local_settings_file, "<?php # local settings.php \n");
}
$local_settings_backup = $local_settings_file . '.bak';
provision_file()->copy($local_settings_file, $local_settings_backup)
->succeed('Backed up local.settings.php.')
->fail('Failed to backup of local.settings.php.');
provision_file()->chmod($local_settings_file, 02640);
$lines_to_append = "
// These lines were added to overcome a false-positive error thrown in Drupal 7.50+
error_reporting(0);
ini_set('display_errors', FALSE);
ini_set('display_startup_errors', FALSE);";
file_put_contents($local_settings_file, $lines_to_append, FILE_APPEND);
}
provision_backend_invoke(drush_get_option('site_name'), 'provision-migrate', array(drush_get_option('new_platform')));
if ($major_version_upgrade) {
drush_log('Re-enabling error-reporting.', 'notice');
// The site path has changed, so update file paths.
$local_settings_file = $platform . '/sites/' . d('@hostmaster')->uri . '/local.settings.php';
$local_settings_backup = $local_settings_file . '.bak';
provision_file()->chmod($local_settings_file, 02640);
provision_file()->copy($local_settings_backup, $local_settings_file)
->succeed('Restored backup of local.settings.php.')
->fail('Failed to restore backup of local.settings.php.');
provision_file()->unlink($local_settings_backup);
}
}
function drush_provision_post_hostmaster_migrate($site, $platform) {
provision_backend_invoke(drush_get_option('site_name'), 'cache-clear', array('drush'));
// we pass the context names we generated to the task so we can enforce that the names
// stay the same.
provision_backend_invoke(drush_get_option('site_name'), 'hosting-resume', array(), array(
'old_platform_name' => drush_get_option('old_platform'),
'new_platform_name' => drush_get_option('new_platform'),
));
// We need to re-verify @server_master via frontend to re-generate
// its drush alias and to update Nginx configuration files.
$server = '@server_master';
provision_backend_invoke('@hostmaster', 'hosting-task', array("$server", 'verify'), array('force' => TRUE));
}