377 lines
11 KiB
PHP
377 lines
11 KiB
PHP
<?php
|
|
/**
|
|
* Astra Admin Ajax Base.
|
|
*
|
|
* @package Astra
|
|
* @since 4.0.0
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly.
|
|
}
|
|
|
|
/**
|
|
* Class Astra_Admin_Ajax.
|
|
*
|
|
* @since 4.0.0
|
|
*/
|
|
class Astra_Admin_Ajax {
|
|
|
|
/**
|
|
* Ajax action prefix.
|
|
*
|
|
* @var string
|
|
* @since 4.0.0
|
|
*/
|
|
private $prefix = 'astra';
|
|
|
|
/**
|
|
* Instance
|
|
*
|
|
* @access private
|
|
* @var null $instance
|
|
* @since 4.0.0
|
|
*/
|
|
private static $instance;
|
|
|
|
/**
|
|
* Initiator
|
|
*
|
|
* @since 4.0.0
|
|
* @return object initialized object of class.
|
|
*/
|
|
public static function get_instance() {
|
|
if ( ! isset( self::$instance ) ) {
|
|
/** @psalm-suppress InvalidPropertyAssignmentValue */ // phpcs:ignore Generic.Commenting.DocComment.MissingShort
|
|
self::$instance = new self();
|
|
/** @psalm-suppress InvalidPropertyAssignmentValue */ // phpcs:ignore Generic.Commenting.DocComment.MissingShort
|
|
}
|
|
return self::$instance;
|
|
}
|
|
|
|
/**
|
|
* Errors class instance.
|
|
*
|
|
* @var array
|
|
* @since 4.0.0
|
|
*/
|
|
private $errors = array();
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @since 4.0.0
|
|
*/
|
|
public function __construct() {
|
|
$this->errors = array(
|
|
'permission' => __( 'Sorry, you are not allowed to do this operation.', 'astra' ),
|
|
'nonce' => __( 'Nonce validation failed', 'astra' ),
|
|
'default' => __( 'Sorry, something went wrong.', 'astra' ),
|
|
'invalid' => __( 'No post data found!', 'astra' ),
|
|
);
|
|
|
|
add_action( 'wp_ajax_ast_disable_pro_notices', array( $this, 'disable_astra_pro_notices' ) );
|
|
add_action( 'wp_ajax_astra_recommended_plugin_install', 'wp_ajax_install_plugin' );
|
|
add_action( 'wp_ajax_ast_migrate_to_builder', array( $this, 'migrate_to_builder' ) );
|
|
add_action( 'wp_ajax_astra_update_admin_setting', array( $this, 'astra_update_admin_setting' ) );
|
|
add_action( 'wp_ajax_astra_recommended_plugin_activate', array( $this, 'required_plugin_activate' ) );
|
|
add_action( 'wp_ajax_astra_recommended_plugin_deactivate', array( $this, 'required_plugin_deactivate' ) );
|
|
}
|
|
|
|
/**
|
|
* Return boolean settings for admin dashboard app.
|
|
*
|
|
* @return array
|
|
* @since 4.0.0
|
|
*/
|
|
public function astra_admin_settings_typewise() {
|
|
return apply_filters(
|
|
'astra_admin_settings_datatypes',
|
|
array(
|
|
'self_hosted_gfonts' => 'bool',
|
|
'preload_local_fonts' => 'bool',
|
|
'use_old_header_footer' => 'bool',
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Disable pro upgrade notice from all over in Astra.
|
|
*
|
|
* @since 4.0.0
|
|
*/
|
|
public function disable_astra_pro_notices() {
|
|
|
|
$response_data = array( 'message' => $this->get_error_msg( 'permission' ) );
|
|
|
|
if ( ! current_user_can( 'manage_options' ) ) {
|
|
wp_send_json_error( $response_data );
|
|
}
|
|
|
|
if ( empty( $_POST ) ) {
|
|
$response_data = array( 'message' => $this->get_error_msg( 'invalid' ) );
|
|
wp_send_json_error( $response_data );
|
|
}
|
|
|
|
/**
|
|
* Nonce verification.
|
|
*/
|
|
if ( ! check_ajax_referer( 'astra_update_admin_setting', 'security', false ) ) {
|
|
$response_data = array( 'message' => $this->get_error_msg( 'nonce' ) );
|
|
wp_send_json_error( $response_data );
|
|
}
|
|
|
|
if ( ! current_user_can( 'manage_options' ) ) {
|
|
wp_send_json_error( __( 'You don\'t have the access', 'astra' ) );
|
|
}
|
|
|
|
/** @psalm-suppress PossiblyInvalidArgument */ // phpcs:ignore Generic.Commenting.DocComment.MissingShort
|
|
$migrate = isset( $_POST['status'] ) ? sanitize_key( $_POST['status'] ) : '';
|
|
/** @psalm-suppress PossiblyInvalidArgument */ // phpcs:ignore Generic.Commenting.DocComment.MissingShort
|
|
|
|
$migrate = ( 'true' === $migrate ) ? true : false;
|
|
astra_update_option( 'ast-disable-upgrade-notices', $migrate );
|
|
|
|
wp_send_json_success();
|
|
}
|
|
|
|
/**
|
|
* Migrate to New Header Builder
|
|
*
|
|
* @since 4.0.0
|
|
*/
|
|
public function migrate_to_builder() {
|
|
|
|
$response_data = array( 'message' => $this->get_error_msg( 'permission' ) );
|
|
|
|
if ( ! current_user_can( 'manage_options' ) ) {
|
|
wp_send_json_error( $response_data );
|
|
}
|
|
|
|
if ( empty( $_POST ) ) {
|
|
$response_data = array( 'message' => $this->get_error_msg( 'invalid' ) );
|
|
wp_send_json_error( $response_data );
|
|
}
|
|
|
|
/**
|
|
* Nonce verification.
|
|
*/
|
|
if ( ! check_ajax_referer( 'astra_update_admin_setting', 'security', false ) ) {
|
|
$response_data = array( 'message' => $this->get_error_msg( 'nonce' ) );
|
|
wp_send_json_error( $response_data );
|
|
}
|
|
|
|
/** @psalm-suppress PossiblyInvalidArgument */ // phpcs:ignore Generic.Commenting.DocComment.MissingShort
|
|
$migrate = isset( $_POST['status'] ) ? sanitize_key( $_POST['status'] ) : '';
|
|
/** @psalm-suppress PossiblyInvalidArgument */ // phpcs:ignore Generic.Commenting.DocComment.MissingShort
|
|
$migrate = ( 'true' === $migrate ) ? true : false;
|
|
/** @psalm-suppress InvalidArgument */ // phpcs:ignore Generic.Commenting.DocComment.MissingShort
|
|
$migration_flag = astra_get_option( 'v3-option-migration', false );
|
|
astra_update_option( 'is-header-footer-builder', $migrate );
|
|
|
|
if ( $migrate && false === $migration_flag ) {
|
|
require_once ASTRA_THEME_DIR . 'inc/theme-update/astra-builder-migration-updater.php'; // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude.FileIncludeFound
|
|
astra_header_builder_migration();
|
|
}
|
|
|
|
wp_send_json_success();
|
|
}
|
|
|
|
/**
|
|
* Save settings.
|
|
*
|
|
* @return void
|
|
* @since 4.0.0
|
|
*/
|
|
public function astra_update_admin_setting() {
|
|
|
|
$response_data = array( 'message' => $this->get_error_msg( 'permission' ) );
|
|
|
|
if ( ! current_user_can( 'manage_options' ) ) {
|
|
wp_send_json_error( $response_data );
|
|
}
|
|
|
|
if ( empty( $_POST ) ) {
|
|
$response_data = array( 'message' => $this->get_error_msg( 'invalid' ) );
|
|
wp_send_json_error( $response_data );
|
|
}
|
|
|
|
/**
|
|
* Nonce verification.
|
|
*/
|
|
if ( ! check_ajax_referer( 'astra_update_admin_setting', 'security', false ) ) {
|
|
$response_data = array( 'message' => $this->get_error_msg( 'nonce' ) );
|
|
wp_send_json_error( $response_data );
|
|
}
|
|
|
|
$get_bool_settings = $this->astra_admin_settings_typewise();
|
|
/** @psalm-suppress PossiblyInvalidArgument */ // phpcs:ignore Generic.Commenting.DocComment.MissingShort
|
|
$sub_option_key = isset( $_POST['key'] ) ? sanitize_text_field( wp_unslash( $_POST['key'] ) ) : '';
|
|
/** @psalm-suppress PossiblyInvalidArgument */ // phpcs:ignore Generic.Commenting.DocComment.MissingShort
|
|
$sub_option_value = '';
|
|
|
|
// @codingStandardsIgnoreStart
|
|
if ( isset( $get_bool_settings[ $sub_option_key ] ) ) {
|
|
if ( 'bool' === $get_bool_settings[ $sub_option_key ] ) {
|
|
/** @psalm-suppress PossiblyInvalidArgument */ // phpcs:ignore Generic.Commenting.DocComment.MissingShort
|
|
$val = isset( $_POST['value'] ) && 'true' === sanitize_text_field( $_POST['value'] ) ? true : false;
|
|
/** @psalm-suppress PossiblyInvalidArgument */ // phpcs:ignore Generic.Commenting.DocComment.MissingShort
|
|
$sub_option_value = $val;
|
|
} else {
|
|
/** @psalm-suppress PossiblyInvalidArgument */ // phpcs:ignore Generic.Commenting.DocComment.MissingShort
|
|
$val = isset( $_POST['value'] ) ? sanitize_text_field( wp_unslash( $_POST['value'] ) ) : '';
|
|
/** @psalm-suppress PossiblyInvalidArgument */ // phpcs:ignore Generic.Commenting.DocComment.MissingShort
|
|
$sub_option_value = $val;
|
|
}
|
|
}
|
|
// @codingStandardsIgnoreEnd
|
|
|
|
Astra_API_Init::update_admin_settings_option( $sub_option_key, $sub_option_value );
|
|
|
|
$response_data = array(
|
|
'message' => __( 'Successfully saved data!', 'astra' ),
|
|
);
|
|
|
|
wp_send_json_success( $response_data );
|
|
}
|
|
|
|
/**
|
|
* Get ajax error message.
|
|
*
|
|
* @param string $type Message type.
|
|
* @return string
|
|
* @since 4.0.0
|
|
*/
|
|
public function get_error_msg( $type ) {
|
|
|
|
if ( ! isset( $this->errors[ $type ] ) ) {
|
|
$type = 'default';
|
|
}
|
|
|
|
return $this->errors[ $type ];
|
|
}
|
|
|
|
/**
|
|
* Required Plugin Activate
|
|
*
|
|
* @since 1.2.4
|
|
*/
|
|
public function required_plugin_activate() {
|
|
|
|
$response_data = array( 'message' => $this->get_error_msg( 'permission' ) );
|
|
|
|
if ( ! current_user_can( 'manage_options' ) ) {
|
|
wp_send_json_error( $response_data );
|
|
}
|
|
|
|
if ( empty( $_POST ) ) {
|
|
$response_data = array( 'message' => $this->get_error_msg( 'invalid' ) );
|
|
wp_send_json_error( $response_data );
|
|
}
|
|
|
|
/**
|
|
* Nonce verification.
|
|
*/
|
|
if ( ! check_ajax_referer( 'astra_plugin_manager_nonce', 'security', false ) ) {
|
|
$response_data = array( 'message' => $this->get_error_msg( 'nonce' ) );
|
|
wp_send_json_error( $response_data );
|
|
}
|
|
|
|
/** @psalm-suppress PossiblyInvalidArgument */ // phpcs:ignore Generic.Commenting.DocComment.MissingShort
|
|
if ( ! current_user_can( 'install_plugins' ) || ! isset( $_POST['init'] ) || ! sanitize_text_field( wp_unslash( $_POST['init'] ) ) ) {
|
|
/** @psalm-suppress PossiblyInvalidArgument */ // phpcs:ignore Generic.Commenting.DocComment.MissingShort
|
|
wp_send_json_error(
|
|
array(
|
|
'success' => false,
|
|
'message' => __( 'No plugin specified', 'astra' ),
|
|
)
|
|
);
|
|
}
|
|
|
|
/** @psalm-suppress PossiblyInvalidArgument */ // phpcs:ignore Generic.Commenting.DocComment.MissingShort
|
|
$plugin_init = ( isset( $_POST['init'] ) ) ? sanitize_text_field( wp_unslash( $_POST['init'] ) ) : '';
|
|
/** @psalm-suppress PossiblyInvalidArgument */ // phpcs:ignore Generic.Commenting.DocComment.MissingShort
|
|
|
|
$activate = activate_plugin( $plugin_init, '', false, true );
|
|
|
|
if ( is_wp_error( $activate ) ) {
|
|
/** @psalm-suppress PossiblyNullReference */ // phpcs:ignore Generic.Commenting.DocComment.MissingShort
|
|
wp_send_json_error(
|
|
array(
|
|
'success' => false,
|
|
'message' => $activate->get_error_message(),
|
|
)
|
|
);
|
|
/** @psalm-suppress PossiblyNullReference */ // phpcs:ignore Generic.Commenting.DocComment.MissingShort
|
|
}
|
|
|
|
wp_send_json_success(
|
|
array(
|
|
'success' => true,
|
|
'message' => __( 'Plugin Successfully Activated', 'astra' ),
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Required Plugin Activate
|
|
*
|
|
* @since 1.2.4
|
|
*/
|
|
public function required_plugin_deactivate() {
|
|
|
|
$response_data = array( 'message' => $this->get_error_msg( 'permission' ) );
|
|
|
|
if ( ! current_user_can( 'manage_options' ) ) {
|
|
wp_send_json_error( $response_data );
|
|
}
|
|
|
|
if ( empty( $_POST ) ) {
|
|
$response_data = array( 'message' => $this->get_error_msg( 'invalid' ) );
|
|
wp_send_json_error( $response_data );
|
|
}
|
|
|
|
/**
|
|
* Nonce verification.
|
|
*/
|
|
if ( ! check_ajax_referer( 'astra_plugin_manager_nonce', 'security', false ) ) {
|
|
$response_data = array( 'message' => $this->get_error_msg( 'nonce' ) );
|
|
wp_send_json_error( $response_data );
|
|
}
|
|
|
|
/** @psalm-suppress PossiblyInvalidArgument */ // phpcs:ignore Generic.Commenting.DocComment.MissingShort
|
|
if ( ! current_user_can( 'install_plugins' ) || ! isset( $_POST['init'] ) || ! sanitize_text_field( wp_unslash( $_POST['init'] ) ) ) {
|
|
/** @psalm-suppress PossiblyInvalidArgument */ // phpcs:ignore Generic.Commenting.DocComment.MissingShort
|
|
wp_send_json_error(
|
|
array(
|
|
'success' => false,
|
|
'message' => __( 'No plugin specified', 'astra' ),
|
|
)
|
|
);
|
|
}
|
|
|
|
/** @psalm-suppress PossiblyInvalidArgument */ // phpcs:ignore Generic.Commenting.DocComment.MissingShort
|
|
$plugin_init = ( isset( $_POST['init'] ) ) ? sanitize_text_field( wp_unslash( $_POST['init'] ) ) : '';
|
|
/** @psalm-suppress PossiblyInvalidArgument */ // phpcs:ignore Generic.Commenting.DocComment.MissingShort
|
|
|
|
$deactivate = deactivate_plugins( $plugin_init, true, false );
|
|
|
|
if ( is_wp_error( $deactivate ) ) {
|
|
wp_send_json_error(
|
|
array(
|
|
'success' => false,
|
|
'message' => $deactivate->get_error_message(),
|
|
)
|
|
);
|
|
}
|
|
|
|
wp_send_json_success(
|
|
array(
|
|
'success' => true,
|
|
'message' => __( 'Plugin Successfully Deactivated', 'astra' ),
|
|
)
|
|
);
|
|
}
|
|
}
|
|
|
|
Astra_Admin_Ajax::get_instance();
|