419 lines
19 KiB
PHP
419 lines
19 KiB
PHP
<?php
|
|
/**
|
|
* MainWP Plugins Widget
|
|
*
|
|
* Grab current Child Site plugin data & build Widget
|
|
*
|
|
* @package MainWP/Plugins
|
|
*/
|
|
|
|
namespace MainWP\Dashboard;
|
|
|
|
/**
|
|
* Class MainWP_Widget_Plugins
|
|
*/
|
|
class MainWP_Widget_Plugins { // phpcs:ignore Generic.Classes.OpeningBraceSameLine.ContentAfterBrace -- NOSONAR.
|
|
/**
|
|
* Method get_class_name()
|
|
*
|
|
* Get Class Name
|
|
*
|
|
* @return string __CLASS__ Class Name.
|
|
*/
|
|
public static function get_class_name() {
|
|
return __CLASS__;
|
|
}
|
|
|
|
/**
|
|
* Method render()
|
|
*
|
|
* Fire off render_widget().
|
|
*/
|
|
public static function render() {
|
|
static::render_widget();
|
|
}
|
|
|
|
/**
|
|
* Method prepair_icons()
|
|
*
|
|
* Utilizes WP API to grab plugin icons, last_updated, active_installs
|
|
*/
|
|
public function prepare_icons() {
|
|
include_once ABSPATH . 'wp-admin/includes/plugin-install.php'; // NOSONAR - WP compatible.
|
|
|
|
$args = array(
|
|
'fields' => array(
|
|
'last_updated' => true,
|
|
'icons' => true,
|
|
'active_installs' => true,
|
|
),
|
|
);
|
|
|
|
$api = plugins_api( 'query_plugins', $args );
|
|
|
|
if ( is_wp_error( $api ) ) {
|
|
$this->error = $api;
|
|
return;
|
|
}
|
|
|
|
$this->items = $api->plugins;
|
|
}
|
|
|
|
|
|
/**
|
|
* Method render_widget()
|
|
*
|
|
* Build Plugins Widget
|
|
*
|
|
* @uses \MainWP\Dashboard\MainWP_DB::query()
|
|
* @uses \MainWP\Dashboard\MainWP_DB::get_sql_website_by_id()
|
|
* @uses \MainWP\Dashboard\MainWP_DB::fetch_object()
|
|
* @uses \MainWP\Dashboard\MainWP_DB::free_result()
|
|
* @uses \MainWP\Dashboard\MainWP_System_Utility::get_current_wpid()
|
|
*/
|
|
public static function render_widget() { // phpcs:ignore -- NOSONAR - complex.
|
|
$current_wpid = MainWP_System_Utility::get_current_wpid();
|
|
if ( empty( $current_wpid ) ) {
|
|
return;
|
|
}
|
|
|
|
$sql = MainWP_DB::instance()->get_sql_website_by_id( $current_wpid );
|
|
$websites = MainWP_DB::instance()->query( $sql );
|
|
$allPlugins = array();
|
|
if ( $websites ) {
|
|
$website = MainWP_DB::fetch_object( $websites );
|
|
if ( $website && '' !== $website->plugins ) {
|
|
$plugins = json_decode( $website->plugins, 1 );
|
|
if ( is_array( $plugins ) && ! empty( $plugins ) ) {
|
|
foreach ( $plugins as $plugin ) {
|
|
if ( isset( $plugin['mainwp'] ) && ( 'T' === $plugin['mainwp'] ) ) {
|
|
continue;
|
|
}
|
|
$allPlugins[] = $plugin;
|
|
}
|
|
}
|
|
}
|
|
MainWP_DB::free_result( $websites );
|
|
}
|
|
|
|
static::render_html_widget( $website, $allPlugins );
|
|
}
|
|
|
|
/**
|
|
* Method render_html_widget().
|
|
*
|
|
* Render HTML plugins widget for current site
|
|
*
|
|
* @param object $website Object containing the child site info.
|
|
* @param array $allPlugins Array containing all detected plugins data.
|
|
*
|
|
* @uses \MainWP\Dashboard\MainWP_Utility::get_sub_array_having()
|
|
* @uses \MainWP\Dashboard\MainWP_Utility::sortmulti()
|
|
*/
|
|
public static function render_html_widget( $website, $allPlugins ) { // phpcs:ignore -- NOSONAR - complex.
|
|
|
|
$is_demo = MainWP_Demo_Handle::is_demo_mode();
|
|
|
|
$actived_plugins = MainWP_Utility::get_sub_array_having( $allPlugins, 'active', 1 );
|
|
$actived_plugins = MainWP_Utility::sortmulti( $actived_plugins, 'name', 'asc' );
|
|
|
|
$inactive_plugins = MainWP_Utility::get_sub_array_having( $allPlugins, 'active', 0 );
|
|
$inactive_plugins = MainWP_Utility::sortmulti( $inactive_plugins, 'name', 'asc' );
|
|
|
|
?>
|
|
<div class="ui grid mainwp-widget-header">
|
|
<div class="twelve wide column">
|
|
<h2 class="ui header handle-drag">
|
|
<?php
|
|
/**
|
|
* Filter: mainwp_plugins_widget_title
|
|
*
|
|
* Filters the Plugins widget title text.
|
|
*
|
|
* @param object $website Object containing the child site info.
|
|
*
|
|
* @since 4.1
|
|
*/
|
|
echo esc_html( apply_filters( 'mainwp_plugins_widget_title', esc_html__( 'Plugins', 'mainwp' ), $website ) );
|
|
?>
|
|
<div class="sub header"><?php esc_html_e( 'Installed plugins on the child site', 'mainwp' ); ?></div>
|
|
</h2>
|
|
</div>
|
|
<div class="four wide column right aligned">
|
|
<div class="ui dropdown right pointing mainwp-dropdown-tab">
|
|
<i class="vertical ellipsis icon"></i>
|
|
<div class="menu">
|
|
<a class="item" data-tab="active_plugins" data-value="active_plugins" title="<?php esc_attr_e( 'Active', 'mainwp' ); ?>" href="#"><?php esc_html_e( 'Active', 'mainwp' ); ?></a>
|
|
<a class="item" data-tab="inactive_plugins" data-value="inactive_plugins" title="<?php esc_attr_e( 'Inactive', 'mainwp' ); ?>" href="#"><?php esc_html_e( 'Inactive', 'mainwp' ); ?></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="mainwp-scrolly-overflow">
|
|
<?php
|
|
/**
|
|
* Action: mainwp_plugins_widget_top
|
|
*
|
|
* Fires at the top of the Plugins widget on the Individual site overview page.
|
|
*
|
|
* @param object $website Object containing the child site info.
|
|
* @param array $allPlugins Array containing all detected plugins data.
|
|
*
|
|
* @since 4.1
|
|
*/
|
|
do_action( 'mainwp_plugins_widget_top', $website, $allPlugins );
|
|
?>
|
|
<div id="mainwp-widget-active-plugins" class="ui tab active" data-tab="active_plugins">
|
|
<?php
|
|
/**
|
|
* Action: mainwp_before_active_plugins_list
|
|
*
|
|
* Fires before the active plugins list in the Plugins widget on the Individual site overview page.
|
|
*
|
|
* @param object $website Object containing the child site info.
|
|
* @param array $actived_plugins Array containing all active plugins data.
|
|
*
|
|
* @since 4.1
|
|
*/
|
|
do_action( 'mainwp_before_active_plugins_list', $website, $actived_plugins );
|
|
?>
|
|
<div class="ui divided selection middle aligned list">
|
|
<?php
|
|
$_count = count( $actived_plugins );
|
|
for ( $i = 0; $i < $_count; $i++ ) {
|
|
$slug = wp_strip_all_tags( $actived_plugins[ $i ]['slug'] );
|
|
$plugin_directory = dirname( $slug );
|
|
?>
|
|
<div class="item <?php echo esc_html( dirname( $slug ) ); ?> row-manage-item">
|
|
<input class="pluginSlug" type="hidden" name="slug" value="<?php echo esc_attr( wp_strip_all_tags( $actived_plugins[ $i ]['slug'] ) ); ?>"/>
|
|
<input class="websiteId" type="hidden" name="id" value="<?php echo esc_attr( $website->id ); ?>"/>
|
|
<div class="right floated pluginsAction">
|
|
<?php if ( \mainwp_current_user_can( 'dashboard', 'activate_deactivate_plugins' ) ) { ?>
|
|
<div class="ui right pointing dropdown">
|
|
<i class="ellipsis vertical icon"></i>
|
|
<div class="menu">
|
|
<div class="mainwp-plugin-deactivate item <?php echo $is_demo ? 'disabled' : ''; ?>"><?php esc_html_e( 'Deactivate', 'mainwp' ); ?></div>
|
|
</div>
|
|
</div>
|
|
<?php } ?>
|
|
</div>
|
|
<div class="middle aligned content">
|
|
<?php echo MainWP_System_Utility::get_plugin_icon( $plugin_directory ); // phpcs:ignore WordPress.Security.EscapeOutput ?>
|
|
<a href="<?php echo esc_url( admin_url() . 'plugin-install.php?tab=plugin-information&wpplugin=' . intval( $website->id ) . '&plugin=' . esc_html( dirname( wp_strip_all_tags( $actived_plugins[ $i ]['slug'] ) ) ) ); ?>" target="_blank" class="open-plugin-details-modal" title="More information about <?php echo wp_strip_all_tags( $actived_plugins[ $i ]['name'] ); // phpcs:ignore WordPress.Security.EscapeOutput ?>">
|
|
<?php echo esc_html( $actived_plugins[ $i ]['name'] . ' ' . $actived_plugins[ $i ]['version'] ); ?>
|
|
</a>
|
|
</div>
|
|
<div class="mainwp-row-actions-working">
|
|
<i class="notched circle loading icon"></i> <?php esc_html_e( 'Please wait...', 'mainwp' ); ?>
|
|
</div>
|
|
</div>
|
|
<?php } ?>
|
|
</div>
|
|
<?php
|
|
/**
|
|
* Action: mainwp_after_active_plugins_list
|
|
*
|
|
* Fires after the active plugins list in the Plugins widget on the Individual site overview page.
|
|
*
|
|
* @param object $website Object containing the child site info.
|
|
* @param array $actived_plugins Array containing all active plugins data.
|
|
*
|
|
* @since 4.1
|
|
*/
|
|
do_action( 'mainwp_after_active_plugins_list', $website, $actived_plugins );
|
|
?>
|
|
</div>
|
|
<div id="mainwp-widget-inactive-plugins" class="ui tab" data-tab="inactive_plugins">
|
|
<?php
|
|
/**
|
|
* Action: mainwp_before_inactive_plugins_list
|
|
*
|
|
* Fires before the inactive plugins list in the Plugins widget on the Individual site overview page.
|
|
*
|
|
* @param object $website Object containing the child site info.
|
|
* @param array $inactive_plugins Array containing all active plugins data.
|
|
*
|
|
* @since 4.1
|
|
*/
|
|
do_action( 'mainwp_before_inactive_plugins_list', $website, $inactive_plugins );
|
|
?>
|
|
<div class="ui middle aligned divided list">
|
|
<?php
|
|
$_count = count( $inactive_plugins );
|
|
for ( $i = 0; $i < $_count; $i++ ) {
|
|
$slug = $inactive_plugins[ $i ]['slug'];
|
|
$plugin_directory = dirname( $slug );
|
|
?>
|
|
<div class="item <?php echo esc_html( sanitize_text_field( dirname( $slug ) ) ); ?> row-manage-item">
|
|
<input class="pluginSlug" type="hidden" name="slug" value="<?php echo esc_attr( wp_strip_all_tags( $inactive_plugins[ $i ]['slug'] ) ); ?>"/>
|
|
<input class="websiteId" type="hidden" name="id" value="<?php echo esc_attr( $website->id ); ?>"/>
|
|
<div class="right floated content pluginsAction">
|
|
<div class="ui right pointing dropdown">
|
|
<i class="ellipsis vertical icon"></i>
|
|
<div class="menu">
|
|
<?php if ( \mainwp_current_user_can( 'dashboard', 'activate_deactivate_plugins' ) ) { ?>
|
|
<a href="#" class="mainwp-plugin-activate item <?php echo $is_demo ? 'disabled' : ''; ?>"><?php esc_html_e( 'Activate', 'mainwp' );// phpcs:ignore WordPress.Security.EscapeOutput ?></a>
|
|
<?php } ?>
|
|
<?php if ( \mainwp_current_user_can( 'dashboard', 'delete_plugins' ) ) { ?>
|
|
<a href="#" class="mainwp-plugin-delete item <?php echo $is_demo ? 'disabled' : ''; ?>"><?php esc_html_e( 'Delete', 'mainwp' ); // phpcs:ignore WordPress.Security.EscapeOutput ?></a>
|
|
<?php } ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="middle aligned content">
|
|
<?php echo MainWP_System_Utility::get_plugin_icon( $plugin_directory ); // phpcs:ignore WordPress.Security.EscapeOutput ?>
|
|
<a href="<?php echo esc_url( admin_url() . 'plugin-install.php?tab=plugin-information&wpplugin=' . intval( $website->id ) . '&plugin=' . esc_html( dirname( $inactive_plugins[ $i ]['slug'] ) ) ); ?>" target="_blank" class="open-plugin-details-modal" title="More information about <?php echo wp_strip_all_tags( $inactive_plugins[ $i ]['name'] ); // phpcs:ignore WordPress.Security.EscapeOutput ?>">
|
|
<?php echo esc_html( $inactive_plugins[ $i ]['name'] . ' ' . $inactive_plugins[ $i ]['version'] ); ?>
|
|
</a>
|
|
</div>
|
|
<div class="mainwp-row-actions-working">
|
|
<i class="ui active inline loader tiny"></i> <?php esc_html_e( 'Please wait...', 'mainwp' ); ?>
|
|
</div>
|
|
</div>
|
|
<?php } ?>
|
|
</div>
|
|
<?php
|
|
/**
|
|
* Action: mainwp_after_inactive_plugins_list
|
|
*
|
|
* Fires after the inactive plugins list in the Plugins widget on the Individual site overview page.
|
|
*
|
|
* @param object $website Object containing the child site info.
|
|
* @param array $inactive_plugins Array containing all active plugins data.
|
|
*
|
|
* @since 4.1
|
|
*/
|
|
do_action( 'mainwp_after_inactive_plugins_list', $website, $inactive_plugins );
|
|
?>
|
|
</div>
|
|
</div>
|
|
<div class="ui two column grid mainwp-widget-footer">
|
|
<div class="left aligned middle aligned column"></div>
|
|
<div class="right aligned middle aligned column">
|
|
<a href="admin.php?page=PluginsManage"><?php esc_html_e( 'Manage Plugins', 'mainwp' ); ?></a>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
/**
|
|
* Action: mainwp_plugins_widget_bottom
|
|
*
|
|
* Fires at the bottom of the Plugins widget on the Individual site overview page.
|
|
*
|
|
* @param object $website Object containing the child site info.
|
|
* @param array $allPlugins Array containing all detected plugins data.
|
|
*
|
|
* @since 4.1
|
|
*/
|
|
do_action( 'mainwp_plugins_widget_bottom', $website, $allPlugins );
|
|
MainWP_Updates::render_plugin_details_modal();
|
|
}
|
|
|
|
/**
|
|
* Method activate_plugin()
|
|
*
|
|
* Fire off Action activate & display result
|
|
*/
|
|
public static function activate_plugin() {
|
|
static::action( 'activate' );
|
|
die( wp_json_encode( array( 'result' => esc_html__( 'Plugin has been activated!', 'mainwp' ) ) ) );
|
|
}
|
|
|
|
/**
|
|
* Method deactivate_plugin()
|
|
*
|
|
* Fire off action deactivate & display result
|
|
*/
|
|
public static function deactivate_plugin() {
|
|
static::action( 'deactivate' );
|
|
die( wp_json_encode( array( 'result' => esc_html__( 'Plugin has been deactivated!', 'mainwp' ) ) ) );
|
|
}
|
|
|
|
/**
|
|
* Method delete_plugin()
|
|
*
|
|
* Fire off action delete & display result
|
|
*/
|
|
public static function delete_plugin() {
|
|
static::action( 'delete' );
|
|
die( wp_json_encode( array( 'result' => esc_html__( 'Plugin has been permanently deleted!', 'mainwp' ) ) ) );
|
|
}
|
|
|
|
/**
|
|
* Method action()
|
|
*
|
|
* Initiate try catch for chosen Action
|
|
*
|
|
* @param mixed $action Plugin Action.
|
|
*
|
|
* @throws \MainWP_Exception Error message.
|
|
*
|
|
* @uses \MainWP\Dashboard\MainWP_DB::get_website_by_id()
|
|
* @uses \MainWP\Dashboard\MainWP_Error_Helper::get_error_message()
|
|
* @uses \MainWP\Dashboard\MainWP_Exception
|
|
* @uses \MainWP\Dashboard\MainWP_Connect::fetch_url_authed()
|
|
* @uses \MainWP\Dashboard\MainWP_System_Utility::can_edit_website()
|
|
*/
|
|
public static function action( $action ) {
|
|
$plugin = isset( $_POST['plugin'] ) ? wp_unslash( $_POST['plugin'] ) : ''; // phpcs:ignore WordPress.Security.NonceVerification,WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
|
|
$plugin = urldecode( $plugin );
|
|
$websiteId = isset( $_POST['websiteId'] ) ? intval( $_POST['websiteId'] ) : false; // phpcs:ignore WordPress.Security.NonceVerification,WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
|
|
|
|
if ( empty( $plugin ) || empty( $websiteId ) ) {
|
|
die( wp_json_encode( array( 'error' => esc_html__( 'Plugin or site ID not found. Please, reload the page and try again.', 'mainwp' ) ) ) );
|
|
}
|
|
|
|
$website = MainWP_DB::instance()->get_website_by_id( $websiteId );
|
|
if ( ! MainWP_System_Utility::can_edit_website( $website ) ) {
|
|
die( wp_json_encode( array( 'error' => esc_html__( 'You cannot edit this website.', 'mainwp' ) ) ) );
|
|
}
|
|
|
|
if ( MainWP_System_Utility::is_suspended_site( $website ) ) {
|
|
die(
|
|
wp_json_encode(
|
|
array(
|
|
'error' => esc_html__( 'Suspended site.', 'mainwp' ),
|
|
'errorCode' => 'SUSPENDED_SITE',
|
|
)
|
|
)
|
|
);
|
|
}
|
|
|
|
try {
|
|
|
|
/**
|
|
* Action: mainwp_before_plugin_action
|
|
*
|
|
* Fires before plugin activate/deactivate/delete actions.
|
|
*
|
|
* @since 4.1
|
|
*/
|
|
do_action( 'mainwp_before_plugin_action', $action, $plugin, $website );
|
|
|
|
$information = MainWP_Connect::fetch_url_authed(
|
|
$website,
|
|
'plugin_action',
|
|
array(
|
|
'action' => $action,
|
|
'plugin' => $plugin,
|
|
)
|
|
);
|
|
|
|
/**
|
|
* Action: mainwp_after_plugin_action
|
|
*
|
|
* Fires after plugin activate/deactivate/delete actions.
|
|
*
|
|
* @since 4.1
|
|
*/
|
|
do_action( 'mainwp_after_plugin_action', $information, $action, $plugin, $website );
|
|
|
|
} catch ( MainWP_Exception $e ) {
|
|
die( wp_json_encode( array( 'error' => MainWP_Error_Helper::get_error_message( $e, true ) ) ) ); // escaped.
|
|
}
|
|
|
|
if ( ! isset( $information['status'] ) || ( 'SUCCESS' !== $information['status'] ) ) {
|
|
die( wp_json_encode( array( 'error' => esc_html__( 'Unexpected error occurred. Please try again.', 'mainwp' ) ) ) );
|
|
}
|
|
}
|
|
}
|