236 lines
8.5 KiB
PHP
236 lines
8.5 KiB
PHP
<?php // phpcs:ignore WordPress.Files.FileName.NotHyphenatedLowercase, WordPress.Files.FileName.InvalidClassFileName
|
|
|
|
define( 'PROJECT_DIR', dirname( __FILE__ ) );
|
|
define( 'TMP_DIR', PROJECT_DIR . '/tmp' );
|
|
define( 'WP_DIR', PROJECT_DIR . '/wordpress' );
|
|
|
|
/**
|
|
* This is project's console commands configuration for Robo task runner.
|
|
*
|
|
* @see http://robo.li/
|
|
*/
|
|
class RoboFile extends \Robo\Tasks {
|
|
|
|
/**
|
|
* Set up WordPress.
|
|
*
|
|
* @param array $opts Options
|
|
* @return void
|
|
*/
|
|
public function wordpressSetup(
|
|
$opts = [
|
|
'wp-user' => 'saburly4dm1n',
|
|
'wp-pw' => 'U2r6axymsh4be2',
|
|
'wp-theme-dir' => 'saburly-headless',
|
|
'wp-theme-name' => 'Saburly Headless WP',
|
|
'wp-email' => 'info@saburly.com',
|
|
'wp-db-name' => 'wp_saburly',
|
|
'wp-description' => 'We love beautiful code',
|
|
'wp-plugins' => [],
|
|
]
|
|
) {
|
|
$confirm = $this->io()->confirm( 'This will replace your current ' .
|
|
'WordPress install. Are you sure you want to do this?', false );
|
|
|
|
if ( ! $confirm ) {
|
|
return;
|
|
}
|
|
|
|
$uname = php_uname();
|
|
$is_darwin = ( strpos( $uname, 'Darwin' ) === 0 );
|
|
$config_db_answer = $this->ask(
|
|
"Do you have an existing database you'd like to use and configure yourself? (y/n): "
|
|
);
|
|
$db_ip = '';
|
|
$db_pass = '';
|
|
if ( 'y' === $config_db_answer ) {
|
|
$db_ip = $this->ask( 'Database IP address (press Enter for default value [0.0.0.0]): ' );
|
|
$db_pass = $this->ask( 'Database root password (press Enter for default value [root]): ' );
|
|
if ( $is_darwin ) {
|
|
$this->_exec( 'mysql.server start' );
|
|
} else {
|
|
$this->_exec( 'sudo service mysql start' );
|
|
}
|
|
} else {
|
|
if ( $is_darwin ) {
|
|
$this->_exec( 'brew install mysql' );
|
|
$this->_exec( 'mysql.server start' );
|
|
$this->_exec( './mysql_config.sh' );
|
|
} else {
|
|
$this->_exec(
|
|
"echo 'mysql-server mysql-server/root_password_again password root' | sudo debconf-set-selections"
|
|
);
|
|
$this->_exec(
|
|
"echo 'mysql-server mysql-server/root_password_again password root' | sudo debconf-set-selections"
|
|
);
|
|
$this->_exec( 'sudo apt-get -y install mysql-server' );
|
|
$this->_exec( 'sudo usermod -d /var/lib/mysql/ mysql' );
|
|
$this->_exec( 'sudo service mysql start' );
|
|
}
|
|
}
|
|
|
|
if ( !$db_pass || strlen( $db_pass ) === 0 ) {
|
|
$db_pass = 'root';
|
|
}
|
|
|
|
if ( !$db_ip || strlen( $db_ip ) === 0 ) {
|
|
$db_ip = '0.0.0.0';
|
|
}
|
|
|
|
$this->_exec(
|
|
'mysql -uroot -p' . $db_pass . ' -h ' . $db_ip . " -e 'create user if not exists "
|
|
. $opts['wp-db-name'] . "'"
|
|
);
|
|
$this->_exec(
|
|
'mysql -uroot -p' . $db_pass . ' -h ' . $db_ip
|
|
. " -e 'create database if not exists " . $opts['wp-db-name'] . "'"
|
|
);
|
|
$this->_exec(
|
|
'mysql -uroot -p' . $db_pass . ' -h ' . $db_ip . ' -e "grant all privileges on ' . $opts['wp-db-name']
|
|
. '.* to ' . $opts['wp-db-name'] . "@localhost identified by '" . $opts['wp-db-name'] . "'\""
|
|
);
|
|
|
|
$this->_exec( 'mysql -uroot -p' . $db_pass . ' -h ' . $db_ip . " -e 'flush privileges'" );
|
|
|
|
$this->wp( 'core download --version=4.9.5 --locale=en_US --force' );
|
|
$this->wp(
|
|
'core config --dbname=' . $opts['wp-db-name'] . ' --dbuser=' . $opts['wp-db-name'] . ' --dbpass='
|
|
. $opts['wp-db-name'] . ' --dbhost=' . $db_ip
|
|
);
|
|
$this->wp( 'db drop --yes' );
|
|
$this->wp( 'db create' );
|
|
|
|
$install_command = implode( ' ', [
|
|
'core install',
|
|
'--url=localhost:8080',
|
|
'--title="' . $opts['wp-theme-name'] . '"',
|
|
'--admin_user="' . $opts['wp-user'] . '"',
|
|
'--admin_password="' . $opts['wp-pw'] . '"',
|
|
'--admin_email="' . $opts['wp-email'] . '"',
|
|
'--skip-email',
|
|
] );
|
|
|
|
$this->wp( $install_command );
|
|
|
|
$this->wp( 'theme activate ' . $opts['wp-theme-dir'] );
|
|
$this->wp( 'theme delete twentyfourteen' );
|
|
$this->wp( 'theme delete twentyfifteen' );
|
|
$this->wp( 'theme delete twentysixteen' );
|
|
$this->wp( 'theme delete twentyseventeen' );
|
|
|
|
$this->wp( 'plugin delete akismet' );
|
|
$this->wp( 'plugin delete hello' );
|
|
|
|
if ( is_array( $opts['wp-plugins'] ) && count( $opts['wp-plugins'] ) > 0 ) {
|
|
$installed_plugin_directories = $opts['wp-plugins'];
|
|
} else {
|
|
$installed_plugins = array_filter( glob( WP_DIR . '/wp-content/plugins/*' ), 'is_dir' );
|
|
$installed_plugin_directories = array_filter(
|
|
str_replace(
|
|
WP_DIR . '/wp-content/plugins/',
|
|
'',
|
|
$installed_plugins
|
|
)
|
|
);
|
|
}
|
|
|
|
if ( count( $installed_plugin_directories ) > 0 ) {
|
|
$plugins_command = 'plugin activate ' . ( implode( ' ', $installed_plugin_directories ) );
|
|
$this->wp( $plugins_command );
|
|
}
|
|
|
|
// Sync ACF
|
|
$this->wp( 'acf sync' );
|
|
|
|
// Pretty URL structure required for wp-json path to work correctly
|
|
$this->wp( 'rewrite structure "/%year%/%monthnum%/%day%/%postname%/"' );
|
|
|
|
// Set the site description
|
|
$this->wp( 'option update blogdescription "' . $opts['wp-description'] . '"' );
|
|
|
|
// Update the Hello World post
|
|
$this->wp(
|
|
'post update 1 wp-content/themes/saburly-headless/post-content/sample-post.txt '.
|
|
'--post_title="Sample Post" --post_name=sample-post'
|
|
);
|
|
|
|
// Create homepage content
|
|
$this->wp(
|
|
'post create wp-content/themes/saburly-headless/post-content/welcome.txt '.
|
|
'--post_type=page --post_status=publish --post_name=welcome '.
|
|
'--post_title="Congratulations!"'
|
|
);
|
|
|
|
// Update the default 'Uncategorized' category name to make it more menu-friendly
|
|
$this->wp( 'term update category 1 --name="Sample Category"' );
|
|
|
|
// Set up example menu
|
|
$this->wp( 'menu create "Header Menu"' );
|
|
$this->wp( 'menu item add-post header-menu 1' );
|
|
$this->wp( 'menu item add-post header-menu 2' );
|
|
$this->wp( 'menu item add-term header-menu category 1' );
|
|
$this->wp( 'menu location assign header-menu header-menu' );
|
|
|
|
$this->io()->success(
|
|
'Great. You can now log into WordPress at: http://localhost:8080/wp-admin ('
|
|
. $opts['wp-user'] . '/' . $opts['wp-pw'] . ')'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Start WordPress server.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function server() {
|
|
$this->wp( 'server' );
|
|
}
|
|
|
|
/**
|
|
* Import WordPress data.
|
|
*
|
|
* @param array $opts options
|
|
* @return void
|
|
*/
|
|
public function wordpressImport( $opts = [
|
|
'migratedb-license' => null,
|
|
'migratedb-from' => null,
|
|
] ) {
|
|
if ( isset( $opts['migratedb-license'] ) ) {
|
|
$this->wp( 'migratedb setting update license ' . $opts['migratedb-license'] );
|
|
} else {
|
|
$this->say( 'WP Migrate DB Pro: no license available. Please set migratedb-license in the robo.yml file.' );
|
|
return;
|
|
}
|
|
|
|
if ( isset( $opts['migratedb-from'] ) ) {
|
|
$command = 'WPMDB_EXCLUDE_RESIZED_MEDIA=1 wp migratedb pull ';
|
|
$command .= $opts['migratedb-from'];
|
|
$command .= ' --backup=prefix ';
|
|
$command .= ' --media=compare ';
|
|
$this->io()->success( 'About to run data migration from ' . $opts['migratedb-from'] );
|
|
$this->taskExec( $command )->run();
|
|
// Set siteurl and home
|
|
$this->wp( 'option update siteurl http://localhost:8080' );
|
|
$this->wp( 'option update home http://localhost:8080' );
|
|
} else {
|
|
$this->say(
|
|
'WP Migrate DB Pro: No source installation specified. Please set migratedb-from in the robo.yml file.'
|
|
);
|
|
return;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Run WordPress task.
|
|
*
|
|
* @param arr $arg Arguments
|
|
* @return void
|
|
*/
|
|
public function wp( $arg ) {
|
|
$this->taskExec( 'wp' )
|
|
->dir( WP_DIR )
|
|
->rawArg( $arg )
|
|
->run();
|
|
}
|
|
} |