HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: /var/www/html/shootinschool/wp-content/plugins/sg-cachepress/core/Rest/Rest_Helper_Dashboard.php
<?php
namespace SiteGround_Optimizer\Rest;

use SiteGround_Optimizer;
use SiteGround_Helper\Helper_Service;

/**
 * Rest Helper class that manages the plugin dashboard.
 */
class Rest_Helper_Dashboard extends Rest_Helper {
	/**
	 * Sends notifications info.
	 *
	 * @since  6.0.0
	 */
	public function notifications() {
		// Prepare the response array.
		$response = array();

		// Add notification if we have updates available.
		if ( Helper_Service::has_updates() ) {
			$response = array(
				array(
					'title'       => __( 'YOUR WORDPRESS NEEDS ATTENTION', 'sg-cachepress' ),
					'text'        => __( 'There are new updates for your website. Keeping your WordPress updated is crucial for your website security', 'sg-cachepress' ),
					'button_text' => __( 'Update', 'sg-cachepress' ),
					'button_link' => admin_url( 'update-core.php' ),
				),
			);
		}

		// Send the response.
		self::send_json_success(
			'',
			$response
		);
	}

	/**
	 * Prepare the necesary text, classes and data for the info boxes on the dashboard.
	 *
	 * @since  6.0.0
	 */
	public function hardening() {
		// The dahboard boxes properties.
		$boxes = array(
			'environment' => array(
				'icon'        => 'product-https',
				'icon_color'  => 'royal',
				'status'      => 'warning',
				'text'        => __( 'Server-side optimizations can have a great impact on loading speed and TTFB.', 'sg-cachepress' ),
				'button_text' => __( ' Go to Environment', 'sg-cachepress' ),
				'button_link' => 'admin.php?page=sgo_environment',
				'title'       => __( 'Environment', 'sg-cachepress' ),
			),
			'frontend'    => array(
				'icon'        => 'product-frontend-optimizations',
				'icon_color'  => 'grassy',
				'status'      => 'warning',
				'text'        => __( 'Decrease your loading speed by optimizing your frontend code.', 'sg-cachepress' ),
				'button_text' => __( ' Go to Frontend', 'sg-cachepress' ),
				'button_link' => 'admin.php?page=sgo_frontend',
				'title'       => __( 'Frontend', 'sg-cachepress' ),
			),
			'media'       => array(
				'icon'        => 'product-stopwatch',
				'icon_color'  => 'grassy',
				'status'      => 'warning',
				'text'        => __( 'Optimizing your media and images can significantly decrease usage and loading time.', 'sg-cachepress' ),
				'button_text' => __( ' Go to Media', 'sg-cachepress' ),
				'button_link' => 'admin.php?page=sgo_media',
				'title'       => __( 'Media', 'sg-cachepress' ),
			),
			'caching'     => array(
				'icon'        => 'product-caching',
				'icon_color'  => 'salmon',
				'status'      => 'warning',
				'text'        => __( 'Caching is essential for speeding up your website and is the single most effective optimization that every website must have.', 'sg-cachepress' ),
				'button_text' => __( ' Go to Caching', 'sg-cachepress' ),
				'button_link' => 'admin.php?page=sgo_caching',
				'title'       => __( 'Caching', 'sg-cachepress' ),
				'is_enabled'  => intval( get_option( 'siteground_optimizer_enable_cache', 0 ) ),
			),
		);

		if ( 0 === $boxes['caching']['is_enabled'] ) {
			$boxes['caching']['text'] = __( 'Review your caching settings and enable the recommended options to get the best of your website caching.', 'sg-cachepress' );
		}

		$data = array();

		// Loop the optimization necesary boxes.
		foreach ( $this->recommended_optimizations as $type => $key ) {

			$box = array_merge(
				$boxes[ $type ],
				array(
					'total_optimizations'  => count( $this->recommended_optimizations[ $type ] ),
					'active_optimizations' => 0,
				)
			);

			// Count the enabled optimizatons.
			foreach ( $key as $option ) {
				// Add to the count if the optimization is enabled.
				if ( 0 !== intval( get_option( 'siteground_optimizer_' . $option, 0 ) ) ) {
					$box['active_optimizations']++;
				}

				// Check for heartbeat control optimization since we have 3 different options.
				// The optimization itself is not holding 1/0 values so we must make addition actions.
				if ( 'heartbeat_control' === $option ) {

					// If they match the default one, we can say that the optimization is not used as recommended.
					if (
						(
							120 === intval( get_option( 'siteground_optimizer_heartbeat_post_interval', 120 ) ) ||
							0 === intval( get_option( 'siteground_optimizer_heartbeat_post_interval', 120 ) )
						) &&
						0 === intval( get_option( 'siteground_optimizer_heartbeat_dashboard_interval', false ) ) &&
						0 === intval( get_option( 'siteground_optimizer_heartbeat_frontend_interval', false ) )
					) {
						$box['active_optimizations']++;
					}
				}
			}

			// Calculate the percentage.
			// x% = ( 100 * active) / total.
			$percentage = intval(
				round(
					( 100 * $box['active_optimizations'] ) /
					$box['total_optimizations']
				)
			);

			// Assign the proper class.
			if ( 20 > $percentage ) {
				$box['status'] = 'error';
			}

			if ( 80 < $percentage ) {
				$box['status'] = 'success';
			}

			// Add the box to the specific type.
			'caching' === $type ? $data[ $type ] = $box : $data['other'][] = $box;
		}

		// Send the response.
		self::send_json_success(
			'',
			$data
		);
	}

	/**
	 * Sends information about the free ebook.
	 *
	 * @since  6.0.0
	 */
	public function ebook() {
		self::send_json_success(
			'',
			$this->get_banners()
		);
	}

	/**
	 * Sends information whether we should display the rating box
	 *
	 * @since  6.0.0
	 *
	 * @param  object $request Request data.
	 */
	public function rate( $request ) {
		$show = $this->validate_and_get_option_value( $request, 'show', false );

		update_option( 'siteground_optimizer_hide_rating', intval( ! $show ) );

		self::send_json_success(
			'',
			array(
				'show' => intval( $show ),
			)
		);
	}

	/**
	 * Get information whether we should display the rating box
	 *
	 * @since  6.0.1
	 */
	public function rate_get() {
		self::send_json_success(
			'',
			array(
				'show' => ! intval( get_option( 'siteground_optimizer_hide_rating', 0 ) ),
			)
		);
	}

	/**
	 * Get Dashboard banner.
	 *
	 * @since 7.4.6
	 *
	 * @return array $banner The banner array containing image, link and title.
	 */
	public function get_banners() {
		// Get the locale.
		$locale = get_locale();
		// Determine the type of asset we are going to show.
		$type = Helper_Service::is_siteground() ? 'ebook' : 'banners';

		// Default banners.
		$banners = array(
			'ebook' => array(
				'it_IT' => array(
					'image' => SiteGround_Optimizer\URL . '/assets/images/banners/ebook_it.png',
					'link'  => 'https://it.siteground.com/ebook-wordpress?utm_medium=banner&utm_source=sgoptimizerplugin&utm_campaign=ebook_banner_sg_optimizer',
					'title' => 'eBook gratuito',
				),
				'es_ES' => array(
					'image' => SiteGround_Optimizer\URL . '/assets/images/banners/ebook_es.png',
					'link'  => 'https://www.siteground.es/ebook-wordpress?utm_medium=banner&utm_source=sgoptimizerplugin&utm_campaign=ebook_banner_sg_optimizer',
					'title' => 'Ebook gratuit',
				),
				'de_DE' => array(
					'image' => SiteGround_Optimizer\URL . '/assets/images/banners/ebook_de.png',
					'link'  => 'https://de.siteground.com/wordpress-speed-optimization-ebook?utm_source=sitegroundoptimizer',
					'title' => 'Kostenloses E-Book',
				),
				'default' => array(
					'image' => SiteGround_Optimizer\URL . '/assets/images/banners/ebook.png',
					'link'  => 'https://www.siteground.com/wordpress-speed-optimization-ebook?utm_source=sitegroundoptimizer',
					'title' => 'Free Ebook',
				),
			),
			'banners' => array(
				'it_IT' => array(
					'image' => SiteGround_Optimizer\URL . '/assets/images/banners/banner_it.png',
					'link'  => 'https://it.siteground.com/unlock-speed-options?utm_source=sgoptimizerbanner',
					'title' => 'Hosting WordPress ultraveloce',
				),
				'es_ES' => array(
					'image' => SiteGround_Optimizer\URL . '/assets/images/banners/banner_es.png',
					'link'  => 'https://www.siteground.es/unlock-speed-options?utm_source=sgoptimizerbanner',
					'title' => 'Hosting WordPress ultrarrápido',
				),
				'de_DE' => array(
					'image' => SiteGround_Optimizer\URL . '/assets/images/banners/banner_de.png',
					'link'  => 'https://de.siteground.com/unlock-speed-options?utm_source=sgoptimizerbanner',
					'title' => 'Ultraschnelles WordPress-Hosting',
				),
				'default' => array(
					'image' => SiteGround_Optimizer\URL . '/assets/images/banners/banner.png',
					'link'  => 'https://www.siteground.com/unlock-speed-options?utm_source=sgoptimizerbanner',
					'title' => 'Ultrafast WordPress Hosting',
				),
			),
		);

		return array_key_exists( $locale, $banners[ $type ] ) ? $banners[ $type ][ $locale ] : $banners[ $type ]['default'];
	}
}