HEX
Server: Apache
System: Linux web15f74.uni5.net 5.4.282-1.el8.elrepo.x86_64 #1 SMP Mon Aug 19 18:33:22 EDT 2024 x86_64
User: lucendi (859622)
PHP: 7.4.33
Disabled: apache_child_terminate,c99_buff_prepare,c99_sess_put,dl,exec,leak,link,myshellexec,openlog,passthru,pclose,pcntl_exec,php_check_syntax,php_strip_whitespace,popen,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,shell_exec,show_source,symlink,system,socket_listen,socket_create_listen,putenv
Upload Files
File: /home/lucendi/www/wp-content/plugins/mesmerize-companion/src/Notify/NotificationsManager.php
<?php


namespace Mesmerize\Notify;


class NotificationsManager {


	const DISMISSED_NOTIFICATIONS_OPTION      = 'cp_dismissed_notifications';
	const INITIALIZATION_NOTIFICATIONS_OPTION = 'cp_initialize_notifications';


	private static $remote_data_url_base = 'http://extendthemes.com/wp-json/extendthemes/v1/notifications';

	public static function initializationTS() {
		 $time = get_option( static::INITIALIZATION_NOTIFICATIONS_OPTION, false );
		if ( ! $time ) {
			$time = time();
			update_option( static::INITIALIZATION_NOTIFICATIONS_OPTION, $time );
		}

		return ( floor( $time / 86400 ) * 86400 );
	}

	public static function isDevMode() {
		return ( defined( 'EXTENDTHEMES_NOTIFICATIONS_DEV_MODE' ) && EXTENDTHEMES_NOTIFICATIONS_DEV_MODE );
	}


	public static function getRemoteNotificationsURL() {
		$dev_mode                       = NotificationsManager::isDevMode();
		$base                           = NotificationsManager::$remote_data_url_base;
        $start_source                   = get_option("msm_companion_start_source");
        $companion_activation_time      = get_option('msm_companion_activation_time', "0");
        $companion_pro_activation_time  = get_option('msm_companion_pro_activation_time', "0");

		$query = array(
			'theme'                 => apply_filters( 'mesmerize_notifications_template_slug', get_template() ),
			'stylesheet'            => apply_filters( 'mesmerize_notifications_stylesheet_slug', get_stylesheet() ),
			'license'               => urlencode( '' ),
			'dev_mode'              => $dev_mode ? '1' : '0',
            'utm_install_source'    => $start_source,
            'utm_activation_on'     => $companion_activation_time,
            'utm_pro_activation_on' => $companion_pro_activation_time,
		);

		$query_string = build_query( $query );

		if ( $query_string ) {
			$query_string = '?' . $query_string;
		}

        //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped, 	WordPress.Security.EscapeOutput.UnsafePrintingFunction
		return apply_filters( 'extendthemes_notifications_url', $base . $query_string, $base, $query );
	}

	public static function requestTimeout( $value ) {
		return 30;
	}

	public static function getRemoteNotifications() {
		$transientKey  = apply_filters( 'extendthemes_demo_import_transient_key', get_template() . '_notifications' );
		$notifications = null;
		if ( ! NotificationsManager::isDevMode() ) {
			$notifications = get_transient( $transientKey );
		}
        if ( ! wp_next_scheduled( NotificationsManager::class . '::getRemoteNotifications' ) ) {
            wp_schedule_event( time(), 'twicedaily', NotificationsManager::class . '::getRemoteNotifications' );
        }

		if ( ! $notifications ) {
			add_filter( 'http_request_timeout', array( __CLASS__, 'requestTimeout' ) );
			$data = wp_remote_get(
				NotificationsManager::getRemoteNotificationsURL(),
				array(
					'body' => array(),
				)
			);
			remove_filter( 'http_request_timeout', array( __CLASS__, 'requestTimeout' ) );

			if ( $data instanceof \WP_Error ) {
				if ( NotificationsManager::isDevMode() ) {
                    //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped, 	WordPress.Security.EscapeOutput.UnsafePrintingFunction
					die( $data->get_error_message() );
				}
			} else {
				$data = json_decode( $data['body'], true );

				if ( isset( $data['code'] ) && $data['code'] === 'extendthemes_notifications_data_ok' ) {
					$notifications = $data['data'];
					set_transient( $transientKey, $data['data'], 1800 );
				}
			}
		}

		wp_json_encode( $notifications );
	}


	public static function addRemoteNotifications( $current_notifications ) {
		$transientKey  = apply_filters( 'extendthemes_demo_import_transient_key', get_template() . '_notifications' );
		$notifications = get_transient( $transientKey );
		$notifications = is_array( $notifications ) ? $notifications : array();

		return array_merge( $notifications, $current_notifications );
	}

	public static function load( $notifications ) {

		add_action( 'wp_ajax_extendthemes_get_remote_data_notifications', array( __CLASS__, 'getRemoteNotifications' ) );
		if ( ! is_admin() ) {
			return;
		}
		static::initializationTS();

		if ( ! get_option( 'cp_initialize_notifications', false ) ) {
			update_option( 'cp_initialize_notifications', time() );
		}

		$notifications = NotificationsManager::addRemoteNotifications( $notifications );
		$notifications = apply_filters( 'cp_load_notifications', $notifications );

		foreach ( $notifications as $notification ) {
			new Notification( $notification );
		}

		if ( count( $notifications ) ) {
			add_action(
				'admin_head',
				function () {
					?>
				<style type="text/css">
					.cp-notification {
						padding-top: 0rem;
						padding-bottom: 0rem;
					}

					.cp-notification-card {
						padding: 30px 20px;
						margin: 0px 10px 20px 10px;
						display: inline-block;
						background: #fff;
						box-shadow: 0 1px 20px 5px rgba(0, 0, 0, 0.1);
					}

					.cp-notification-card:first-of-type {
						margin-left: 0px;
					}

					.cp-notification-card:last-of-type {
						margin-right: 0px;
					}
				</style>
					<?php
				}
			);

			add_action( 'wp_ajax_cp_dismiss_notification', array( __CLASS__, 'dismissNotification' ) );
		}

		add_action(
			'admin_footer',
			function () {
				$transientKey  = apply_filters( 'extendthemes_demo_import_transient_key', get_template() . '_notifications' );
				$notifications = get_transient( $transientKey );

				if ( is_array( $notifications ) && ! NotificationsManager::isDevMode() ) {
					return;
				}

				?>
			<script>
				jQuery.post(
					"<?php echo admin_url( '/admin-ajax.php' ); //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped, 	WordPress.Security.EscapeOutput.UnsafePrintingFunction ?>", {
						action: "extendthemes_get_remote_data_notifications"
					}
				)
			</script>
				<?php
			}
		);
	}

	public static function getCurrentNotificationsNames() {
		 $notifications = NotificationsManager::addRemoteNotifications( array() );
		$names          = array();
		foreach ( $notifications as $notification ) {
			$names[] = $notification['name'];
		}
		return $names;
	}


	public static function dismissNotification() {
		if ( ! is_user_logged_in() || ! current_user_can( 'edit_theme_options' ) ) {
			die();
		}

		// there is no need to sanitize the name field because it is checked against an array of possible values
        //phpcs:ignore WordPress.Security.NonceVerification.Recommended, WordPress.Security.ValidatedSanitizedInput.InputNotSanitized, 	WordPress.Security.ValidatedSanitizedInput.InputNotValidated, 	WordPress.Security.ValidatedSanitizedInput.MissingUnslash, WordPress.Security.NonceVerification.Missing
		$name                = isset( $_REQUEST['notification'] ) ? $_REQUEST['notification'] : false;
		$notifications_names = NotificationsManager::getCurrentNotificationsNames();

		if ( $name ) {

			// if the name is not a valid notification name skip adding it to the dismissed array
			if ( ! in_array( $name, $notifications_names ) ) {
				return;
			}

			$dismissedNotifications = get_option( static::DISMISSED_NOTIFICATIONS_OPTION, array() );
			if ( ! in_array( $name, $dismissedNotifications ) ) {
				$dismissedNotifications[] = $name;
			}

			update_option( static::DISMISSED_NOTIFICATIONS_OPTION, $dismissedNotifications );
		}
	}
}