mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-02-24 00:31:07 +00:00
166 lines
6.1 KiB
PHP
166 lines
6.1 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Copyright (C) 2014-2017 ServMask Inc.
|
||
|
*
|
||
|
* This program is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation, either version 3 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*
|
||
|
* ███████╗███████╗██████╗ ██╗ ██╗███╗ ███╗ █████╗ ███████╗██╗ ██╗
|
||
|
* ██╔════╝██╔════╝██╔══██╗██║ ██║████╗ ████║██╔══██╗██╔════╝██║ ██╔╝
|
||
|
* ███████╗█████╗ ██████╔╝██║ ██║██╔████╔██║███████║███████╗█████╔╝
|
||
|
* ╚════██║██╔══╝ ██╔══██╗╚██╗ ██╔╝██║╚██╔╝██║██╔══██║╚════██║██╔═██╗
|
||
|
* ███████║███████╗██║ ██║ ╚████╔╝ ██║ ╚═╝ ██║██║ ██║███████║██║ ██╗
|
||
|
* ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
|
||
|
*/
|
||
|
|
||
|
class Ai1wm_Import_Done {
|
||
|
|
||
|
public static function execute( $params ) {
|
||
|
|
||
|
// Check multisite.json file
|
||
|
if ( true === is_file( ai1wm_multisite_path( $params ) ) ) {
|
||
|
// Read multisite.json file
|
||
|
$handle = ai1wm_open( ai1wm_multisite_path( $params ), 'r' );
|
||
|
|
||
|
// Parse multisite.json file
|
||
|
$multisite = ai1wm_read( $handle, filesize( ai1wm_multisite_path( $params ) ) );
|
||
|
$multisite = json_decode( $multisite, true );
|
||
|
|
||
|
// Close handle
|
||
|
ai1wm_close( $handle );
|
||
|
|
||
|
// Activate sitewide plugins
|
||
|
if ( isset( $multisite['Plugins'] ) && ( $plugins = $multisite['Plugins'] ) ) {
|
||
|
ai1wm_activate_plugins( $plugins );
|
||
|
}
|
||
|
|
||
|
// Deactivate sitewide Really Simple SSL, WordPress HTTPS (SSL) and WP Force SSL plugins
|
||
|
if ( ! is_ssl() ) {
|
||
|
ai1wm_deactivate_plugins( array(
|
||
|
'really-simple-ssl/rlrsssl-really-simple-ssl.php',
|
||
|
'wordpress-https/wordpress-https.php',
|
||
|
'wp-force-ssl/wp-force-ssl.php',
|
||
|
) );
|
||
|
}
|
||
|
|
||
|
// Deactivate Jetpack Photon module
|
||
|
ai1wm_deactivate_jetpack_photon_module();
|
||
|
|
||
|
} else {
|
||
|
// Check package.json file
|
||
|
if ( true === is_file( ai1wm_package_path( $params ) ) ) {
|
||
|
|
||
|
// Read package.json file
|
||
|
$handle = ai1wm_open( ai1wm_package_path( $params ), 'r' );
|
||
|
|
||
|
// Parse package.json file
|
||
|
$package = ai1wm_read( $handle, filesize( ai1wm_package_path( $params ) ) );
|
||
|
$package = json_decode( $package, true );
|
||
|
|
||
|
// Close handle
|
||
|
ai1wm_close( $handle );
|
||
|
|
||
|
// Activate plugins
|
||
|
if ( isset( $package['Plugins'] ) && ( $plugins = $package['Plugins'] ) ) {
|
||
|
ai1wm_activate_plugins( $plugins );
|
||
|
}
|
||
|
|
||
|
// Activate template
|
||
|
if ( isset( $package['Template'] ) && ( $template = $package['Template'] ) ) {
|
||
|
ai1wm_activate_template( $template );
|
||
|
}
|
||
|
|
||
|
// Activate stylesheet
|
||
|
if ( isset( $package['Stylesheet'] ) && ( $stylesheet = $package['Stylesheet'] ) ) {
|
||
|
ai1wm_activate_stylesheet( $stylesheet );
|
||
|
}
|
||
|
|
||
|
// Deactivate Really Simple SSL, WordPress HTTPS (SSL) and WP Force SSL plugins
|
||
|
if ( ! is_ssl() ) {
|
||
|
ai1wm_deactivate_plugins( array(
|
||
|
'really-simple-ssl/rlrsssl-really-simple-ssl.php',
|
||
|
'wordpress-https/wordpress-https.php',
|
||
|
'wp-force-ssl/wp-force-ssl.php',
|
||
|
) );
|
||
|
}
|
||
|
|
||
|
// Deactivate Jetpack Photon module
|
||
|
ai1wm_deactivate_jetpack_photon_module();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Check blogs.json file
|
||
|
if ( true === is_file( ai1wm_blogs_path( $params ) ) ) {
|
||
|
// Read blogs.json file
|
||
|
$handle = ai1wm_open( ai1wm_blogs_path( $params ), 'r' );
|
||
|
|
||
|
// Parse blogs.json file
|
||
|
$blogs = ai1wm_read( $handle, filesize( ai1wm_blogs_path( $params ) ) );
|
||
|
$blogs = json_decode( $blogs, true );
|
||
|
|
||
|
// Close handle
|
||
|
ai1wm_close( $handle );
|
||
|
|
||
|
// Loop over blogs
|
||
|
foreach ( $blogs as $blog ) {
|
||
|
|
||
|
// Activate plugins
|
||
|
if ( isset( $blog['New']['Plugins'] ) && ( $plugins = $blog['New']['Plugins'] ) ) {
|
||
|
ai1wm_activate_plugins( $plugins );
|
||
|
}
|
||
|
|
||
|
// Activate template
|
||
|
if ( isset( $blog['New']['Template'] ) && ( $template = $blog['New']['Template'] ) ) {
|
||
|
ai1wm_activate_template( $template );
|
||
|
}
|
||
|
|
||
|
// Activate stylesheet
|
||
|
if ( isset( $blog['New']['Stylesheet'] ) && ( $stylesheet = $blog['New']['Stylesheet'] ) ) {
|
||
|
ai1wm_activate_stylesheet( $stylesheet );
|
||
|
}
|
||
|
|
||
|
// Deactivate Really Simple SSL, WordPress HTTPS (SSL) and WP Force SSL plugins
|
||
|
if ( ! is_ssl() ) {
|
||
|
ai1wm_deactivate_plugins( array(
|
||
|
'really-simple-ssl/rlrsssl-really-simple-ssl.php',
|
||
|
'wordpress-https/wordpress-https.php',
|
||
|
'wp-force-ssl/wp-force-ssl.php',
|
||
|
) );
|
||
|
}
|
||
|
|
||
|
// Deactivate Jetpack Photon module
|
||
|
ai1wm_deactivate_jetpack_photon_module();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Set progress
|
||
|
Ai1wm_Status::done(
|
||
|
sprintf(
|
||
|
__(
|
||
|
'You need to perform two more steps:<br />' .
|
||
|
'<strong>1. You must save your permalinks structure twice. <a class="ai1wm-no-underline" href="%s" target="_blank">Permalinks Settings</a></strong> <small>(opens a new window)</small><br />' .
|
||
|
'<strong>2. <a class="ai1wm-no-underline" href="https://wordpress.org/support/view/plugin-reviews/all-in-one-wp-migration?rate=5#postform" target="_blank">Optionally, review the plugin</a>.</strong> <small>(opens a new window)</small>',
|
||
|
AI1WM_PLUGIN_NAME
|
||
|
),
|
||
|
admin_url( 'options-permalink.php#submit' )
|
||
|
),
|
||
|
__(
|
||
|
'Your data has been imported successfully!',
|
||
|
AI1WM_PLUGIN_NAME
|
||
|
)
|
||
|
);
|
||
|
|
||
|
return $params;
|
||
|
}
|
||
|
}
|