| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371 |
- <?php
- /**
- * License Actions class.
- *
- * @since 6.0.0
- *
- * @package MonsterInsights
- * @author Chris Christoff
- */
- // Exit if accessed directly
- if ( ! defined( 'ABSPATH' ) ) {
- exit;
- }
- final class MonsterInsights_License_Actions {
- /**
- * Holds the license key.
- *
- * @since 6.0.0
- *
- * @var string
- */
- public $key;
- /**
- * Holds any license error messages.
- *
- * @since 6.0.0
- *
- * @var array
- */
- public $errors = array();
- /**
- * Holds any license success messages.
- *
- * @since 6.0.0
- *
- * @var array
- */
- public $success = array();
- /**
- * Primary class constructor.
- *
- * @since 6.0.0
- */
- public function __construct() {
- add_action( 'admin_init', array( $this, 'admin_init' ) );
- }
-
- public function admin_init() {
- // Possibly verify the key.
- $this->maybe_verify_key();
- // Add potential admin notices for actions around the admin.
- add_action( 'admin_notices', array( $this, 'monsterinsights_notices' ), 11 );
- add_action( 'network_admin_notices', array( $this, 'monsterinsights_notices' ), 11 );
- // Grab the license key. If it is not set (even after verification), return early.
- $this->key = is_network_admin() ? MonsterInsights()->license->get_network_license_key() : MonsterInsights()->license->get_site_license_key();
- if ( ! $this->key ) {
- return;
- }
- // Possibly handle validating, deactivating and refreshing license keys.
- $this->maybe_validate_key();
- $this->maybe_deactivate_key();
- $this->maybe_refresh_key();
- }
- /**
- * Maybe verifies a license key entered by the user.
- *
- * @since 6.0.0
- *
- * @return null Return early if the key fails to be verified.
- */
- public function maybe_verify_key() {
- if ( empty( $_POST['monsterinsights-license-key'] ) || strlen( $_POST['monsterinsights-license-key'] ) < 10 || empty( $_POST['monsterinsights-verify-submit'] ) ) {
- return;
- }
- if ( ! wp_verify_nonce( $_POST['monsterinsights-key-nonce'], 'monsterinsights-key-nonce' ) ) {
- return;
- }
- if ( ! current_user_can( 'monsterinsights_save_settings' ) ) {
- return;
- }
- $this->verify_key();
- }
- /**
- * Verifies a license key entered by the user.
- *
- * @since 6.0.0
- */
- public function verify_key() {
- // Perform a request to verify the key.
- $verify = $this->perform_remote_request( 'verify-key', array( 'tgm-updater-key' => trim( $_POST['monsterinsights-license-key'] ) ) );
- // If it returns false, send back a generic error message and return.
- if ( ! $verify ) {
- $this->errors[] = esc_html__( 'There was an error connecting to the remote key API. Please try again later.', 'google-analytics-for-wordpress' );
- return;
- }
- // If an error is returned, set the error and return.
- if ( ! empty( $verify->error ) ) {
- $this->errors[] = $verify->error;
- return;
- }
- // Otherwise, our request has been done successfully. Update the option and set the success message.
- $option = is_network_admin() ? MonsterInsights()->license->get_network_license() : MonsterInsights()->license->get_site_license();
- $option['key'] = trim( $_POST['monsterinsights-license-key'] );
- $option['type'] = isset( $verify->type ) ? $verify->type : $option['type'];
- $option['is_expired'] = false;
- $option['is_disabled'] = false;
- $option['is_invalid'] = false;
- $this->success[] = isset( $verify->success ) ? $verify->success : esc_html__( 'Congratulations! This site is now receiving automatic updates.', 'google-analytics-for-wordpress' );
- is_network_admin() ? MonsterInsights()->license->set_network_license( $option ) : MonsterInsights()->license->set_site_license( $option );
- delete_transient( '_monsterinsights_addons' );
- monsterinsights_get_addons_data( $option['key'] );
- }
- /**
- * Maybe validates a license key entered by the user.
- *
- * @since 6.0.0
- *
- * @return null Return early if the transient has not expired yet.
- */
- public function maybe_validate_key() {
- $check = is_network_admin() ? MonsterInsights()->license->time_to_check_network_license() : MonsterInsights()->license->time_to_check_site_license();
- if ( $check ) {
- $this->validate_key();
- }
- }
- /**
- * Validates a license key entered by the user.
- *
- * @since 6.0.0
- *
- * @param bool $forced Force to set contextual messages (false by default).
- */
- public function validate_key( $forced = false ) {
- $validate = $this->perform_remote_request( 'validate-key', array( 'tgm-updater-key' => $this->key ) );
- // If there was a basic API error in validation, only set the transient for 10 minutes before retrying.
- if ( ! $validate ) {
- // If forced, set contextual success message.
- if ( $forced ) {
- $this->errors[] = esc_html__( 'There was an error connecting to the remote key API. Please try again later.', 'google-analytics-for-wordpress' );
- }
- return;
- }
- $option = is_network_admin() ? MonsterInsights()->license->get_network_license() : MonsterInsights()->license->get_site_license();
- $option['is_expired'] = false;
- $option['is_disabled'] = false;
- $option['is_invalid'] = false;
- // If a key or author error is returned, the license no longer exists or the user has been deleted, so reset license.
- if ( isset( $validate->key ) || isset( $validate->author ) ) {
- $option['is_invalid'] = true;
- is_network_admin() ? MonsterInsights()->license->set_network_license( $option ) : MonsterInsights()->license->set_site_license( $option );
- return;
- }
- // If the license has expired, set the transient and expired flag and return.
- if ( isset( $validate->expired ) ) {
- $option['is_expired'] = true;
- is_network_admin() ? MonsterInsights()->license->set_network_license( $option ) : MonsterInsights()->license->set_site_license( $option );
- return;
- }
- // If the license is disabled, set the transient and disabled flag and return.
- if ( isset( $validate->disabled ) ) {
- $option['is_disabled'] = true;
- is_network_admin() ? MonsterInsights()->license->set_network_license( $option ) : MonsterInsights()->license->set_site_license( $option );
- return;
- }
- // If forced, set contextual success message.
- if ( ( ! empty( $validate->key ) || ! empty( $this->key ) ) && $forced ) {
- $key = ! empty( $validate->key ) ? $validate->key : $this->key;
- delete_transient( '_monsterinsights_addons' );
- monsterinsights_get_addons_data( $key );
- $this->success[] = esc_html__( 'Congratulations! Your key has been refreshed successfully.', 'google-analytics-for-wordpress' );
- }
- $option = array();
- $option = is_network_admin() ? MonsterInsights()->license->get_network_license() : MonsterInsights()->license->get_site_license();
- $option['type'] = isset( $validate->type ) ? $validate->type : $option['type'];
- $option['is_expired'] = false;
- $option['is_disabled'] = false;
- $option['is_invalid'] = false;
- is_network_admin() ? MonsterInsights()->license->set_network_license( $option ) : MonsterInsights()->license->set_site_license( $option );
- }
- /**
- * Maybe deactivates a license key entered by the user.
- *
- * @since 6.0.0
- *
- * @return null Return early if the key fails to be deactivated.
- */
- public function maybe_deactivate_key() {
- if ( empty( $_POST['monsterinsights-license-key'] ) || empty( $_POST['monsterinsights-deactivate-submit'] ) ) {
- return;
- }
- if ( ! wp_verify_nonce( $_POST['monsterinsights-key-nonce'], 'monsterinsights-key-nonce' ) ) {
- return;
- }
- if ( ! current_user_can( 'monsterinsights_save_settings' ) ) {
- return;
- }
- $this->deactivate_key();
- }
- /**
- * Deactivates a license key entered by the user.
- *
- * @since 6.0.0
- */
- public function deactivate_key() {
- // Perform a request to deactivate the key.
- $deactivate = $this->perform_remote_request( 'deactivate-key', array( 'tgm-updater-key' => $_POST['monsterinsights-license-key'] ) );
- // If it returns false, send back a generic error message and return.
- if ( ! $deactivate ) {
- $this->errors[] = esc_html__( 'There was an error connecting to the remote key API. Please try again later.', 'google-analytics-for-wordpress' );
- return;
- }
- // If an error is returned, set the error and return.
- if ( ! empty( $deactivate->error ) && ! monsterinsights_is_debug_mode() ) {
- $this->errors[] = $deactivate->error;
- return;
- }
- // Otherwise, our request has been done successfully. Reset the option and set the success message.
- $this->success[] = isset( $deactivate->success ) ? $deactivate->success : esc_html__( 'Congratulations! You have deactivated the key from this site successfully.', 'google-analytics-for-wordpress' );
- is_network_admin() ? MonsterInsights()->license->delete_network_license() : MonsterInsights()->license->delete_site_license();
- }
- /**
- * Maybe refreshes a license key.
- *
- * @since 6.0.0
- *
- * @return null Return early if the key fails to be refreshed.
- */
- public function maybe_refresh_key() {
- if ( empty( $_POST['monsterinsights-license-key'] ) || empty( $_POST['monsterinsights-refresh-submit'] ) ) {
- return;
- }
- if ( ! wp_verify_nonce( $_POST['monsterinsights-key-nonce'], 'monsterinsights-key-nonce' ) ) {
- return;
- }
- if ( ! current_user_can( 'monsterinsights_save_settings' ) ) {
- return;
- }
- // Refreshing is simply a word alias for validating a key. Force true to set contextual messages.
- $this->validate_key( true );
- }
- /**
- * Outputs any notices generated by the class.
- *
- * @since 7.0.0
- */
- public function monsterinsights_notices() {
- if ( ! monsterinsights_is_pro_version() ) {
- return;
- }
- $screen = get_current_screen();
- if ( empty( $screen->id ) || strpos( $screen->id, 'monsterinsights' ) === false ) {
- return;
- }
- if ( ! empty( $this->errors ) ) { ?>
- <div class="error">
- <p><?php echo implode( '<br>', $this->errors ); ?></p>
- </div>
- <?php } else if ( ! empty( $this->success ) ) { ?>
- <div class="updated">
- <p><?php echo implode( '<br>', $this->success ); ?></p>
- </div>
- <?php }
- }
- /**
- * Queries the remote URL via wp_remote_post and returns a json decoded response.
- *
- * @since 6.0.0
- *
- * @param string $action The name of the $_POST action var.
- * @param array $body The content to retrieve from the remote URL.
- * @param array $headers The headers to send to the remote URL.
- * @param string $return_format The format for returning content from the remote URL.
- * @return string|bool Json decoded response on success, false on failure.
- */
- public function perform_remote_request( $action, $body = array(), $headers = array(), $return_format = 'json' ) {
- // Build the body of the request.
- $body = wp_parse_args(
- $body,
- array(
- 'tgm-updater-action' => $action,
- 'tgm-updater-key' => $this->key,
- 'tgm-updater-wp-version' => get_bloginfo( 'version' ),
- 'tgm-updater-referer' => site_url(),
- 'tgm-updater-mi-version' => MONSTERINSIGHTS_VERSION,
- 'tgm-updater-is-pro' => monsterinsights_is_pro_version(),
- )
- );
- $body = http_build_query( $body, '', '&' );
- // Build the headers of the request.
- $headers = wp_parse_args(
- $headers,
- array(
- 'Content-Type' => 'application/x-www-form-urlencoded',
- 'Content-Length' => strlen( $body )
- )
- );
- // Setup variable for wp_remote_post.
- $post = array(
- 'headers' => $headers,
- 'body' => $body
- );
- // Perform the query and retrieve the response.
- $response = wp_remote_post( monsterinsights_get_licensing_url(), $post );
- $response_code = wp_remote_retrieve_response_code( $response );
- $response_body = wp_remote_retrieve_body( $response );
- // Bail out early if there are any errors.
- if ( 200 != $response_code || is_wp_error( $response_body ) ) {
- return false;
- }
- // Return the json decoded content.
- return json_decode( $response_body );
- }
- }
|