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/bwcdev/wp-content/plugins/tracking-code-manager/includes/classes/utils/Options.php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

class TCMP_Options {
	public function __construct() {

	}

	//Cache
	private function getCacheName( $array ) {
		if ( ! is_array( $array ) ) {
			$array = array( $array );
		}
		$result = 'Cache';
		foreach ( $array as $v ) {
			if ( is_object( $v ) ) {
				$v = get_class( $v );
			} elseif ( is_array( $v ) ) {
				$v = $v[0];
				if ( is_object( $v ) ) {
					$v = get_class( $v );
				}
			}
			$result .= '_' . $v;
		}
		return $result;
	}
	public function getCache( $name, $callable = null ) {
		$key    = $this->getCacheName( $name );
		$result = $this->getRequest( $key, false );
		if ( false === $result && $callable && is_callable( $callable ) ) {
			$result = $callable();
			$this->setCache( $name, $result );
		}
		return $result;
	}
	public function setCache( $name, $value ) {
		$key = $this->getCacheName( $name );
		$this->setRequest( $key, $value );
	}

	//always add a prefix to avoid conflicts with other plugins
	private function get_key( $key ) {
		return 'TCM_' . $key;
	}
	//option
	private function removeOption( $key ) {
		$key = $this->get_key( $key );
		delete_option( $key );
	}
	private function getOption( $key, $default = false ) {
		$key    = $this->get_key( $key );
		$result = get_option( $key, $default );
		if ( is_string( $result ) ) {
			$result = trim( $result );
		}
		return $result;
	}
	private function setOption( $key, $value ) {
		$key = $this->get_key( $key );
		if ( is_bool( $value ) ) {
			$value = ( $value ? 1 : 0 );
		}
		update_option( $key, $value );
	}

	//$_SESSION
	private function removeSession( $key ) {
		global $wp_session;

		$key = $this->get_key( $key );
		if ( isset( $wp_session[ $key ] ) ) {
			unset( $wp_session[ $key ] );
		}
	}
	private function getSession( $key, $default = false ) {
		global $wp_session;

		$key    = $this->get_key( $key );
		$result = $default;
		if ( isset( $wp_session[ $key ] ) ) {
			$result = $wp_session[ $key ];
		}
		if ( is_string( $result ) ) {
			$result = trim( $result );
		}
		return $result;
	}
	private function setSession( $key, $value ) {
		global $wp_session;

		$key                = $this->get_key( $key );
		$wp_session[ $key ] = $value;
	}

	//$_REQUEST
	//However WP enforces its own logic - during load process wp_magic_quotes() processes variables to emulate magic quotes setting and enforces $_REQUEST to contain combination of $_GET and $_POST, no matter what PHP configuration says.
	private function removeRequest( $key ) {
		$key = $this->get_key( $key );
		if ( isset( $_POST[ $key ] ) ) {
			unset( $_POST[ $key ] );
		}
	}
	private function getRequest( $key, $default = false ) {
		$key    = $this->get_key( $key );
		$result = $default;
		if ( isset( $_POST[ $key ] ) ) {
			if ( is_object( $_POST[ $key ] ) ) {
				$result = clone $_POST[ $key ];
			} else {
				$result = $_POST[ $key ];
			}
			$result = $this->recursive_wp_kses( $result );
		}
		return $result;
	}

	public function recursive_wp_kses( $array ) {
		global $tcmp_allowed_html_tags;
		foreach ( $array as $key => &$value ) {
			if ( is_array( $value ) ) {
				$value = $this->recursive_wp_kses( $value );
			} elseif ( 'code' === $key ) {
				if ( ! $this->getSkipCodeSanitization() ) {
					$value = wp_kses( $value, $tcmp_allowed_html_tags );
				}
			} elseif ( is_string( $value ) ) {
				$value = wp_kses( $value, $tcmp_allowed_html_tags );
			} else {
				// do nothing ... could be a video or graphics object
			}
		}
		return $array;
	}

	private function setRequest( $key, $value ) {
		$key           = $this->get_key( $key );
		$_POST[ $key ] = $value;
	}

	public function isPluginFirstInstall() {
		return $this->getOption( 'PluginFirstInstall', false );
	}
	public function setPluginFirstInstall( $value ) {
		$this->setOption( 'PluginFirstInstall', $value );
	}
	public function isShowActivationNotice() {
		return $this->getOption( 'ShowActivationNotice', false );
	}
	public function setShowActivationNotice( $value ) {
		$this->setOption( 'ShowActivationNotice', $value );
	}

	public function getShowWhatsNewSeenVersion() {
		return intval( $this->getOption( 'ShowWhatsNewSeenVersion', 0 ) );
	}
	public function setShowWhatsNewSeenVersion( $value ) {
		$this->setOption( 'ShowWhatsNewSeenVersion', $value );
	}

	//ShowWhatsNew
	public function isShowWhatsNew() {
		$result = intval( $this->getOption( 'ShowWhatsNew', true ) );
		if ( $result ) {
			$v = $this->getShowWhatsNewSeenVersion();
			if ( TCMP_WHATSNEW_VERSION == $v ) {
				$result = false;
				$this->getOption( 'ShowWhatsNew', false );
			}
		}
		return $result;
	}
	public function setShowWhatsNew( $value ) {
		$this->setOption( 'ShowWhatsNew', $value );
	}

	//TrackingEnable
	public function isTrackingEnable() {
		return $this->getOption( 'TrackingEnable', 0 );
	}
	public function setTrackingEnable( $value ) {
		$this->setOption( 'TrackingEnable', $value );
	}
	//TrackingNotice
	public function isTrackingNotice() {
		return $this->getOption( 'TrackingNotice', 1 );
	}
	public function setTrackingNotice( $value ) {
		$this->setOption( 'TrackingNotice', $value );
	}

	public function getTrackingLastSend() {
		return $this->getOption( 'TrackingLastSend[' . TCMP_PLUGIN_SLUG . ']', 0 );
	}
	public function setTrackingLastSend( $value ) {
		$this->setOption( 'TrackingLastSend[' . TCMP_PLUGIN_SLUG . ']', $value );
	}
	public function getPluginInstallDate() {
		return $this->getOption( 'PluginInstallDate[' . TCMP_PLUGIN_SLUG . ']', 0 );
	}
	public function setPluginInstallDate( $value ) {
		$this->setOption( 'PluginInstallDate[' . TCMP_PLUGIN_SLUG . ']', $value );
	}
	public function getPluginUpdateDate() {
		return $this->getOption( 'PluginUpdateDate[' . TCMP_PLUGIN_SLUG . ']', 0 );
	}
	public function setPluginUpdateDate( $value ) {
		$this->setOption( 'PluginUpdateDate[' . TCMP_PLUGIN_SLUG . ']', $value );
	}

	//LicenseKey
	public function getLicenseKey() {
		return $this->getOption( 'LiceseKey', '' );
	}
	public function setLicenseKey( $value ) {
		$this->setOption( 'LiceseKey', $value );
	}
	//LicenseStatus
	public function isLicenseSuccess() {
		return $this->getOption( 'LicenseSuccess', 0 );
	}
	public function setLicenseSuccess( $value ) {
		$this->setOption( 'LicenseSuccess', $value );
	}
	//License
	public function getLicense() {
		return $this->getOption( 'License', false );
	}
	public function setLicense( $value ) {
		$this->setOption( 'License', $value );
	}
	//LicenseSiteCount
	public function getLicenseSiteCount() {
		return $this->getOption( 'LicenseSiteCount', false );
	}
	public function setLicenseSiteCount( $value ) {
		$this->setOption( 'LicenseSiteCount', $value );
	}
	//LicenseLastCheck
	public function getLicenseLastCheck() {
		return intval( $this->getOption( 'LicenseLastCheck', 0 ) );
	}
	public function setLicenseLastCheck( $value ) {
		$this->setOption( 'LicenseLastCheck', intval( $value ) );
	}

	//LoggerEnable
	public function isLoggerEnable() {
		return ( $this->getOption( 'LoggerEnable', false ) || ( defined( 'TCMP_LOGGER' ) && TCMP_LOGGER ) );
	}
	public function setLoggerEnable( $value ) {
		$this->setOption( 'LoggerEnable', $value );
	}

	//Snippet
	public function getSnippet( $id ) {
		return $this->getOption( 'Snippet_' . $id, null );
	}
	public function setSnippet( $id, $value ) {
		$this->setOption( 'Snippet_' . $id, $value );
	}
	public function remove_snippet( $id ) {
		$this->removeOption( 'Snippet_' . $id );
	}
	//SnippetList
	public function getSnippetList() {
		return $this->getOption( 'SnippetList', array() );
	}
	public function setSnippetList( $value ) {
		$this->setOption( 'SnippetList', $value );
	}
	public function removeSnippetList() {
		$this->removeOption( 'SnippetList' );
	}

	public function pushConversionSnippets( $options, TCMP_EcommercePurchase $purchase ) {
		global $tcmp;
		$this->setRequest( 'EcommercePurchase', $purchase );
		$snippets = $tcmp->manager->get_conversion_snippets( $options );
		foreach ( $snippets as $v ) {
			$id = $v['id'];
			$tcmp->options->pushConversionSnippetId( $id );
		}
	}
	public function pushConversionSnippetId( $id ) {
		$array   = $this->getRequest( 'ConversionSnippetIds', array() );
		$array[] = $id;
		$array   = array_unique( $array );
		$this->setRequest( 'ConversionSnippetIds', $array );
	}
	public function get_conversion_snippet_ids() {
		return $this->getRequest( 'ConversionSnippetIds', false );
	}
	public function getEcommercePurchase() {
		/* @var $result TCMP_EcommercePurchase */
		$result = $this->getRequest( 'EcommercePurchase', false );
		return $result;
	}

	public function hasSnippetWritten( $snippet ) {
		//check also the md5 of code so if the user create 2 different snippets with
		//the same tracking code we will not insert into 2 times inside the html
		$id  = $snippet['id'];
		$md5 = md5( $snippet['code'] );

		$listIds = $this->getRequest( 'SnippetsWrittenIds', array() );
		$listMd5 = $this->getRequest( 'SnippetsWrittenMd5', array() );

		$result = ( in_array( $id, $listIds ) || in_array( $md5, $listMd5 ) );
		return $result;
	}
	public function pushSnippetWritten( $snippet ) {
		$md5     = md5( $snippet['code'] );
		$id      = $snippet['id'];
		$listIds = $this->getRequest( 'SnippetsWrittenIds', array() );
		$listMd5 = $this->getRequest( 'SnippetsWrittenMd5', array() );

		$listIds[ $id ]  = $snippet;
		$listMd5[ $md5 ] = $id;
		$this->setRequest( 'SnippetsWrittenIds', $listIds );
		$this->setRequest( 'SnippetsWrittenMd5', $listMd5 );
	}
	public function getSnippetsWritten() {
		return $this->getRequest( 'SnippetsWrittenIds', array() );
	}
	public function clearSnippetsWritten() {
		$this->setRequest( 'SnippetsWrittenIds', array() );
		$this->setRequest( 'SnippetsWrittenMd5', array() );
	}

	//PostShown
	public function getPostShown() {
		return $this->getRequest( 'PostShown' );
	}
	public function setPostShown( $post ) {
		$this->setRequest( 'PostShown', $post );
	}

	private function hasGenericMessages( $type ) {
		$result = $this->getRequest( $type . 'Messages', null );
		return ( is_array( $result ) && count( $result ) > 0 );
	}
	private function pushGenericMessage( $type, $message, $v1 = null, $v2 = null, $v3 = null, $v4 = null, $v5 = null ) {
		global $tcmp;
		$array   = $this->getRequest( $type . 'Messages', array() );
		$array[] = $tcmp->lang->L( $message, $v1, $v2, $v3, $v4, $v5 );
		$this->setRequest( $type . 'Messages', $array );
	}
	private function writeGenericMessages( $type, $clean = true ) {
		$type   = sanitize_text_field( $type );
		$result = false;
		$array  = $this->getRequest( $type . 'Messages', array() );
		// These messages are built by the plugin and have been already sanitized.
		// Trying to sanitize them again will break plugin functionality since some of the messages contain html.
		if ( is_array( $array ) && count( $array ) > 0 ) {
			$result = true;
			?>
			<div class="tcmp-box-<?php echo strtolower( $type ); ?>"><?php echo wpautop( implode( "\n", $array ) ); ?></div>
			<?php
		}
		if ( $clean ) {
			$this->removeRequest( $type . 'Messages' );
		}
		return $result;
	}

	//WarningMessages
	public function hasWarningMessages() {
		return $this->hasGenericMessages( 'Warning' );
	}
	public function pushWarningMessage( $message, $v1 = null, $v2 = null, $v3 = null, $v4 = null, $v5 = null ) {
		return $this->pushGenericMessage( 'Warning', $message, $v1, $v2, $v3, $v4, $v5 );
	}
	public function writeWarningMessages( $clean = true ) {
		return $this->writeGenericMessages( 'Warning', $clean );
	}
	//SuccessMessages
	public function hasSuccessMessages() {
		return $this->hasGenericMessages( 'Success' );
	}
	public function pushSuccessMessage( $message, $v1 = null, $v2 = null, $v3 = null, $v4 = null, $v5 = null ) {
		return $this->pushGenericMessage( 'Success', $message, $v1, $v2, $v3, $v4, $v5 );
	}
	public function writeSuccessMessages( $clean = true ) {
		return $this->writeGenericMessages( 'Success', $clean );
	}
	//InfoMessages
	public function hasInfoMessages() {
		return $this->hasGenericMessages( 'Info' );
	}
	public function pushInfoMessage( $message, $v1 = null, $v2 = null, $v3 = null, $v4 = null, $v5 = null ) {
		return $this->pushGenericMessage( 'Info', $message, $v1, $v2, $v3, $v4, $v5 );
	}
	public function writeInfoMessages( $clean = true ) {
		return $this->writeGenericMessages( 'Info', $clean );
	}
	//ErrorMessages
	public function hasErrorMessages() {
		return $this->hasGenericMessages( 'Error' );
	}
	public function pushErrorMessage( $message, $v1 = null, $v2 = null, $v3 = null, $v4 = null, $v5 = null ) {
		return $this->pushGenericMessage( 'Error', $message, $v1, $v2, $v3, $v4, $v5 );
	}
	public function writeErrorMessages( $clean = true ) {
		return $this->writeGenericMessages( 'Error', $clean );
	}

	public function writeMessages( $clean = true ) {
		$result = false;
		if ( $this->writeInfoMessages( $clean ) ) {
			$result = true;
		}
		if ( $this->writeSuccessMessages( $clean ) ) {
			$result = true;
		}
		if ( $this->writeWarningMessages( $clean ) ) {
			$result = true;
		}
		if ( $this->writeErrorMessages( $clean ) ) {
			$result = true;
		}

		return $result;
	}
	public function pushMessage( $success, $message, $v1 = null, $v2 = null, $v3 = null, $v4 = null, $v5 = null ) {
		if ( $success ) {
			$this->pushSuccessMessage( $message . 'Success', $v1, $v2, $v3, $v4, $v5 );
		} else {
			$this->pushErrorMessage( $message . 'Error', $v1, $v2, $v3, $v4, $v5 );
		}
	}

	public function getFeedbackEmail() {
		return $this->getOption( 'FeedbackEmail', get_bloginfo( 'admin_email' ) );
	}
	public function setFeedbackEmail( $value ) {
		$this->setOption( 'FeedbackEmail', $value );
	}

	//MetaboxPostTypes
	public function getMetaboxPostTypes( $create = true ) {
		global $tcmp;
		$result = $this->getOption( 'MetaboxPostTypes', array() );
		if ( $create ) {
			$types = $tcmp->utils->query( TCMP_QUERY_POST_TYPES );
			foreach ( $types as $v ) {
				$v = $v['id'];
				if ( ! isset( $result[ $v ] ) ) {
					$result[ $v ] = ( in_array( $v, array( 'post', 'page' ) ) ? 1 : 0 );
				}
			}
		}
		return $result;
	}
	public function setMetaboxPostTypes( $values ) {
		$this->setOption( 'MetaboxPostTypes', $values );
	}

	// Add additional recognized tags and attributes
	public function getAdditionalRecognizedTags() {
		return $this->getOption( 'additionalRecognizedTags', '' );
	}
	public function getAdditionalRecognizedAttributes() {
		return $this->getOption( 'additionalRecognizedAttributes', '' );
	}
	public function setAdditionalRecognizedTags( $text ) {
		if (is_string($text)) {
			$this->setOption( 'additionalRecognizedTags', $text );
		}
	}
	public function setAdditionalRecognizedAttributes( $text ) {
		if (is_string($text)) {
			$this->setOption( 'additionalRecognizedAttributes', $text );
		}
	}

	// Modify Superglobal Variable
	public function getModifySuperglobalVariable() {
		return $this->getOption( 'ModifySuperglobalVariable', false );
	}

	public function setModifySuperglobalVariable( $value ) {
		global $tcmp;
		if ( $tcmp->utils->isTrue( $value ) ) {
			$this->setOption( 'ModifySuperglobalVariable', true );
		} else {
			$this->setOption( 'ModifySuperglobalVariable', false );
		}
	}

	//hook priority
	public function getHookPriority() {
		 return $this->getOption( 'HookPriority', TCMP_HOOK_PRIORITY_DEFAULT );
	}

	public function setHookPriority( $value ) {
		 $this->setOption( 'HookPriority', $value );
	}

	// Skip Code Sanitization
	public function getSkipCodeSanitization() {
		return $this->getOption( 'SkipCodeSanitization', false );
	}

	public function setSkipCodeSanitization( $value ) {
		global $tcmp;
		if ( $tcmp->utils->isTrue( $value ) ) {
			$this->setOption( 'SkipCodeSanitization', true );
		} else {
			$this->setOption( 'SkipCodeSanitization', false );
		}
	}
}