-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathwordpress.js
401 lines (361 loc) · 12 KB
/
wordpress.js
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
'use strict';
/**
* External dependencies
*/
const { v2: dockerCompose } = require( 'docker-compose' );
const util = require( 'util' );
const fs = require( 'fs' ).promises;
const path = require( 'path' );
const got = require( 'got' );
const dns = require( 'dns' ).promises;
/**
* Promisified dependencies
*/
const copyDir = util.promisify( require( 'copy-dir' ) );
/**
* Internal dependencies
*/
const { getCache, setCache } = require( './cache' );
/**
* @typedef {import('./config').WPConfig} WPConfig
* @typedef {import('./config').WPEnvironmentConfig} WPEnvironmentConfig
* @typedef {import('./config').WPSource} WPSource
* @typedef {'development'|'tests'} WPEnvironment
* @typedef {'development'|'tests'|'all'} WPEnvironmentSelection
*/
/**
* Utility function to check if a WordPress version is lower than another version.
*
* This is a non-comprehensive check only intended for this usage, to avoid pulling in a full semver library.
* It only considers the major and minor portions of the version and ignores the rest. Additionally, it assumes that
* the minor version is always a single digit (i.e. 0-9).
*
* Do not use this function for general version comparison, as it will not work for all cases.
*
* @param {string} version The version to check.
* @param {string} compareVersion The compare version to check whether the version is lower than.
* @return {boolean} True if the version is lower than the compare version, false otherwise.
*/
function isWPMajorMinorVersionLower( version, compareVersion ) {
const versionNumber = Number.parseFloat(
version.match( /^[0-9]+(\.[0-9]+)?/ )[ 0 ]
);
const compareVersionNumber = Number.parseFloat(
compareVersion.match( /^[0-9]+(\.[0-9]+)?/ )[ 0 ]
);
return versionNumber < compareVersionNumber;
}
/**
* Checks a WordPress database connection. An error is thrown if the test is
* unsuccessful.
*
* @param {WPConfig} config The wp-env config object.
*/
async function checkDatabaseConnection( { dockerComposeConfigPath, debug } ) {
await dockerCompose.run( 'cli', 'wp db check', {
config: dockerComposeConfigPath,
commandOptions: [ '--rm' ],
log: debug,
} );
}
/**
* Configures WordPress for the given environment by installing WordPress,
* activating all plugins, and activating the first theme. These steps are
* performed sequentially so as to not overload the WordPress instance.
*
* @param {WPEnvironment} environment The environment to configure. Either 'development' or 'tests'.
* @param {WPConfig} config The wp-env config object.
* @param {Object} spinner A CLI spinner which indicates progress.
*/
async function configureWordPress( environment, config, spinner ) {
let wpVersion = '';
try {
wpVersion = await readWordPressVersion(
config.env[ environment ].coreSource,
spinner,
config.debug
);
} catch ( err ) {
// Ignore error.
}
const isMultisite = config.env[ environment ].multisite;
const installMethod = isMultisite ? 'multisite-install' : 'install';
const installCommand = `wp core ${ installMethod } --url="${ config.env[ environment ].config.WP_SITEURL }" --title="${ config.name }" --admin_user=admin --admin_password=password --admin_email=wordpress@example.com --skip-email`;
// -eo pipefail exits the command as soon as anything fails in bash.
const setupCommands = [ 'set -eo pipefail', installCommand ];
// Bootstrap .htaccess for multisite
if ( isMultisite ) {
// Using a subshell with `exec` was the best tradeoff I could come up
// with between readability of this source and compatibility with the
// way that all strings in `setupCommands` are later joined with '&&'.
setupCommands.push(
`(
exec > /var/www/html/.htaccess
echo 'RewriteEngine On'
echo 'RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]'
echo 'RewriteBase /'
echo 'RewriteRule ^index\.php$ - [L]'
echo ''
echo '# add a trailing slash to /wp-admin'
echo 'RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]'
echo ''
echo 'RewriteCond %{REQUEST_FILENAME} -f [OR]'
echo 'RewriteCond %{REQUEST_FILENAME} -d'
echo 'RewriteRule ^ - [L]'
echo 'RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]'
echo 'RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]'
echo 'RewriteRule . index.php [L]'
)`
);
}
// WordPress versions below 5.1 didn't use proper spacing in wp-config.
const configAnchor =
wpVersion && isWPMajorMinorVersionLower( wpVersion, '5.1' )
? `"define('WP_DEBUG',"`
: `"define( 'WP_DEBUG',"`;
// Set wp-config.php values.
for ( let [ key, value ] of Object.entries(
config.env[ environment ].config
) ) {
// Allow the configuration to skip a default constant by specifying it as null.
if ( null === value ) {
continue;
}
// Add quotes around string values to work with multi-word strings better.
value = typeof value === 'string' ? `"${ value }"` : value;
setupCommands.push(
`wp config set ${ key } ${ value } --anchor=${ configAnchor }${
typeof value !== 'string' ? ' --raw' : ''
}`
);
}
// Activate all plugins.
for ( const pluginSource of config.env[ environment ].pluginSources ) {
setupCommands.push( `wp plugin activate ${ pluginSource.basename }` );
}
if ( config.debug ) {
spinner.info(
`Running the following setup commands on the ${ environment } instance:\n - ${ setupCommands.join(
'\n - '
) }\n`
);
}
// Execute all setup commands in a batch.
await dockerCompose.run(
environment === 'development' ? 'cli' : 'tests-cli',
[ 'bash', '-c', setupCommands.join( ' && ' ) ],
{
config: config.dockerComposeConfigPath,
commandOptions: [ '--rm' ],
log: config.debug,
}
);
// WordPress versions below 5.1 didn't use proper spacing in wp-config.
// Additionally, WordPress versions below 5.4 used `dirname( __FILE__ )` instead of `__DIR__`.
let abspathDef = `define( 'ABSPATH', __DIR__ . '\\/' );`;
if ( wpVersion && isWPMajorMinorVersionLower( wpVersion, '5.1' ) ) {
abspathDef = `define('ABSPATH', dirname(__FILE__) . '\\/');`;
} else if ( wpVersion && isWPMajorMinorVersionLower( wpVersion, '5.4' ) ) {
abspathDef = `define( 'ABSPATH', dirname( __FILE__ ) . '\\/' );`;
}
// WordPress' PHPUnit suite expects a `wp-tests-config.php` in
// the directory that the test suite is contained within.
// Make sure ABSPATH points to the WordPress install.
await dockerCompose.exec(
environment === 'development' ? 'wordpress' : 'tests-wordpress',
[
'sh',
'-c',
`sed -e "/^require.*wp-settings.php/d" -e "s/${ abspathDef }/define( 'ABSPATH', '\\/var\\/www\\/html\\/' );\\n\\tdefine( 'WP_DEFAULT_THEME', 'default' );/" /var/www/html/wp-config.php > /wordpress-phpunit/wp-tests-config.php`,
],
{
config: config.dockerComposeConfigPath,
log: config.debug,
}
);
}
/**
* Resets the development server's database, the tests server's database, or both.
*
* @param {WPEnvironmentSelection} environment The environment to clean. Either 'development', 'tests', or 'all'.
* @param {WPConfig} config The wp-env config object.
*/
async function resetDatabase(
environment,
{ dockerComposeConfigPath, debug }
) {
const options = {
config: dockerComposeConfigPath,
commandOptions: [ '--rm' ],
log: debug,
};
const tasks = [];
if ( environment === 'all' || environment === 'development' ) {
tasks.push( dockerCompose.run( 'cli', 'wp db reset --yes', options ) );
}
if ( environment === 'all' || environment === 'tests' ) {
tasks.push(
dockerCompose.run( 'tests-cli', 'wp db reset --yes', options )
);
}
await Promise.all( tasks );
}
async function setupWordPressDirectories( config ) {
if (
config.env.development.coreSource &&
hasSameCoreSource( [ config.env.development, config.env.tests ] )
) {
await copyCoreFiles(
config.env.development.coreSource.path,
config.env.development.coreSource.testsPath
);
}
}
/**
* Returns true if all given environment configs have the same core source.
*
* @param {WPEnvironmentConfig[]} envs An array of environments to check.
*
* @return {boolean} True if all the environments have the same core source.
*/
function hasSameCoreSource( envs ) {
if ( envs.length < 2 ) {
return true;
}
return ! envs.some( ( env ) =>
areCoreSourcesDifferent( envs[ 0 ].coreSource, env.coreSource )
);
}
function areCoreSourcesDifferent( coreSource1, coreSource2 ) {
if (
( ! coreSource1 && coreSource2 ) ||
( coreSource1 && ! coreSource2 )
) {
return true;
}
if ( coreSource1 && coreSource2 && coreSource1.path !== coreSource2.path ) {
return true;
}
return false;
}
/**
* Copies a WordPress installation, taking care to ignore large directories
* (.git, node_modules) and configuration files (wp-config.php).
*
* @param {string} fromPath Path to the WordPress directory to copy.
* @param {string} toPath Destination path.
*/
async function copyCoreFiles( fromPath, toPath ) {
await copyDir( fromPath, toPath, {
filter( stat, filepath, filename ) {
if ( stat === 'symbolicLink' ) {
return false;
}
if ( stat === 'directory' && filename === '.git' ) {
return false;
}
if ( stat === 'directory' && filename === 'node_modules' ) {
return false;
}
if ( stat === 'file' && filename === 'wp-config.php' ) {
return false;
}
return true;
},
} );
}
/**
* Scans through a WordPress source to find the version of WordPress it contains.
*
* @param {WPSource} coreSource The WordPress source.
* @param {Object} spinner A CLI spinner which indicates progress.
* @param {boolean} debug Indicates whether or not the CLI is in debug mode.
* @return {string} The version of WordPress the source is for.
*/
async function readWordPressVersion( coreSource, spinner, debug ) {
const versionFilePath = path.join(
coreSource.path,
'wp-includes',
'version.php'
);
const versionFile = await fs.readFile( versionFilePath, {
encoding: 'utf-8',
} );
const versionMatch = versionFile.match(
/\$wp_version = '([A-Za-z\-0-9.]+)'/
);
if ( ! versionMatch ) {
throw new Error( `Failed to find version in ${ versionFilePath }` );
}
if ( debug ) {
spinner.info(
`Found WordPress ${ versionMatch[ 1 ] } in ${ versionFilePath }.`
);
}
return versionMatch[ 1 ];
}
/**
* Basically a quick check to see if we can connect to the internet.
*
* @return {boolean} True if we can connect to WordPress.org, false otherwise.
*/
let IS_OFFLINE;
async function canAccessWPORG() {
// Avoid situations where some parts of the code think we're offline and others don't.
if ( IS_OFFLINE !== undefined ) {
return IS_OFFLINE;
}
IS_OFFLINE = !! ( await dns.resolve( 'WordPress.org' ).catch( () => {} ) );
return IS_OFFLINE;
}
/**
* Returns the latest stable version of WordPress by requesting the stable-check
* endpoint on WordPress.org.
*
* @param {Object} options an object with cacheDirectoryPath set to the path to the cache directory in ~/.wp-env.
* @return {string} The latest stable version of WordPress, like "6.0.1"
*/
let CACHED_WP_VERSION;
async function getLatestWordPressVersion( options ) {
// Avoid extra network requests.
if ( CACHED_WP_VERSION ) {
return CACHED_WP_VERSION;
}
const cacheOptions = {
workDirectoryPath: options.cacheDirectoryPath,
};
// When we can't connect to the internet, we don't want to break wp-env or
// wait for the stable-check result to timeout.
if ( ! ( await canAccessWPORG() ) ) {
const latestVersion = await getCache(
'latestWordPressVersion',
cacheOptions
);
if ( ! latestVersion ) {
throw new Error(
'Could not find the current WordPress version in the cache and the network is not available.'
);
}
return latestVersion;
}
const versions = await got(
'https://api.wordpress.org/core/stable-check/1.0/'
).json();
for ( const [ version, status ] of Object.entries( versions ) ) {
if ( status === 'latest' ) {
CACHED_WP_VERSION = version;
await setCache( 'latestWordPressVersion', version, cacheOptions );
return version;
}
}
}
module.exports = {
hasSameCoreSource,
checkDatabaseConnection,
configureWordPress,
resetDatabase,
setupWordPressDirectories,
readWordPressVersion,
canAccessWPORG,
getLatestWordPressVersion,
};