MMCT TEAM
Server IP : 162.214.80.37  /  Your IP : 216.73.216.68
Web Server : Apache
System : Linux sh013.webhostingservices.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
User : imyrqtmy ( 2189)
PHP Version : 8.2.18
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON
Directory (0755) :  /opt/wp/plugins/bluehost-wordpress-plugin/inc/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : //opt/wp/plugins/bluehost-wordpress-plugin/inc/base.php
<?php

/**
 * Check if plugin install date exists.
 *
 * @return bool
 */
function bh_has_plugin_install_date() {
	return ! empty( get_option( 'bh_plugin_install_date', '' ) );
}

/**
 * Get the plugin install date.
 *
 * @return string
 */
function bh_get_plugin_install_date() {
	return (string) get_option( 'bh_plugin_install_date', gmdate( 'U' ) );
}

/**
 * Set the plugin install date.
 *
 * @param string $value Date in Unix timestamp format.
 */
function bh_set_plugin_install_date( $value ) {
	update_option( 'bh_plugin_install_date', $value, true );
}

/**
 * Get the number of days since the plugin was installed.
 *
 * @return int
 */
function bh_get_days_since_plugin_install_date() {
	return absint( ( gmdate( 'U' ) - bh_get_plugin_install_date() ) / DAY_IN_SECONDS );
}

/**
 * Basic setup
 */
function bh_setup() {
	if ( ( '' === get_option( 'mm_master_aff' ) || false === get_option( 'mm_master_aff' ) ) && defined( 'MMAFF' ) ) {
		update_option( 'mm_master_aff', MMAFF );
	}
	$install_date = get_option( 'mm_install_date' );
	if ( empty( $install_date ) ) {
		update_option( 'mm_install_date', date( 'M d, Y' ) );
		$event                            = array(
			't'    => 'event',
			'ec'   => 'plugin_status',
			'ea'   => 'installed',
			'el'   => 'Install date: ' . get_option( 'mm_install_date', date( 'M d, Y' ) ),
			'keep' => false,
		);
		$events                           = get_option( 'mm_cron', array() );
		$events['hourly'][ $event['ea'] ] = $event;
		update_option( 'mm_cron', $events );
	}
	if ( ! bh_has_plugin_install_date() ) {
		$date = false;
		if ( ! empty( $install_date ) ) {
			$date = DateTime::createFromFormat( 'M d, Y', $install_date );
		}
		bh_set_plugin_install_date( $date ? $date->format( 'U' ) : gmdate( 'U' ) );
	}
}

add_action( 'admin_init', 'bh_setup' );

/**
 * Makes a call to the Mojo API.
 *
 * @param array $args
 * @param array $query
 *
 * @return array|WP_Error
 */
function mojo_api( $args = array(), $query = array() ) {
	$api_url       = 'http://api.mojomarketplace.com/api/v1/';
	$default_args  = array(
		'mojo-platform' => 'wordpress',
		'mojo-type'     => 'themes',
		'mojo-items'    => 'recent',
	);
	$default_query = array(
		'count'  => 30,
		'seller' => '',
	);
	$args          = wp_parse_args( $args, $default_args );
	$query         = wp_parse_args( $query, $default_query );
	$query         = http_build_query( array_filter( $query ) );
	$request_url   = $api_url . $args['mojo-items'] . '/' . $args['mojo-platform'] . '/' . $args['mojo-type'];

	$request_url = rtrim( $request_url, '/' );
	$request_url = $request_url . '?' . $query;

	return bh_api_cache( $request_url );
}

/**
 * Makes a GET request to an API and caches the results.
 *
 * @param string $api_url
 *
 * @return array|WP_Error
 */
function bh_api_cache( $api_url ) {
	$hash      = md5( $api_url );
	$transient = get_transient( 'bh_api_calls' );
	if ( false === $transient || ! isset( $transient[ $hash ] ) ) {
		$transient[ $hash ] = wp_remote_get( $api_url, array( 'timeout' => 15 ) );
		if ( ! is_wp_error( $transient[ $hash ] ) ) {
			set_transient( 'bh_api_calls', $transient, DAY_IN_SECONDS );
		}
	}

	return $transient[ $hash ];
}

/**
 * Build a tracked link
 *
 * @param string $url
 * @param array  $args
 *
 * @return string
 */
function mojo_build_link( $url, $args = array() ) {
	$defaults = array(
		'utm_source'   => 'mojo_wp_plugin', // this should always be mojo_wp_plugin
		'utm_campaign' => 'mojo_wp_plugin',
		'utm_medium'   => 'plugin_admin', // plugin_admin, plugin_widget, or plugin_shortcode
		'utm_content'  => '', // specific location
		'r'            => get_option( 'mm_master_aff' ),
	);
	$args     = wp_parse_args( array_filter( $args ), array_filter( $defaults ) );

	$test = get_transient( 'mm_test', '' );

	if ( isset( $test['key'] ) && isset( $test['name'] ) ) {
		$args['utm_medium'] = $args['utm_medium'] . '_' . $test['name'] . '_' . $test['key'];
	}

	if ( false !== strpos( $url, 'mojomarketplace.com' ) ) {
		$args['theme'] = 'bluehost';
	}

	$args = wp_parse_args( array_filter( $args ), array_filter( $defaults ) );

	$url = add_query_arg( $args, $url );

	return esc_url( $url );
}

/**
 * Clear cached API responses.
 */
function bh_clear_api_calls() {
	if ( is_admin() ) {
		delete_transient( 'bh_api_calls' );
	}
}

add_action( 'wp_login', 'bh_clear_api_calls' );
add_action( 'pre_current_active_plugins', 'bh_clear_api_calls' );

function mojo_cron() {
	if ( ! wp_next_scheduled( 'mojo_cron_monthly' ) ) {
		wp_schedule_event( time(), 'monthly', 'mojo_cron_monthly' );
	}
	if ( ! wp_next_scheduled( 'mojo_cron_weekly' ) ) {
		wp_schedule_event( time(), 'weekly', 'mojo_cron_weekly' );
	}
	if ( ! wp_next_scheduled( 'mojo_cron_daily' ) ) {
		wp_schedule_event( time(), 'daily', 'mojo_cron_daily' );
	}
	if ( ! wp_next_scheduled( 'mojo_cron_twicedaily' ) ) {
		wp_schedule_event( time(), 'twicedaily', 'mojo_cron_twicedaily' );
	}
	if ( ! wp_next_scheduled( 'mojo_cron_hourly' ) ) {
		wp_schedule_event( time(), 'hourly', 'mojo_cron_hourly' );
	}
}

add_action( 'admin_init', 'mojo_cron' );

function mojo_cron_schedules( $schedules ) {
	$schedules['weekly']  = array(
		'interval' => WEEK_IN_SECONDS,
		'display'  => __( 'Once Weekly', 'bluehost-wordpress-plugin' ),
	);
	$schedules['monthly'] = array(
		'interval' => 4 * WEEK_IN_SECONDS,
		'display'  => __( 'Once a month', 'bluehost-wordpress-plugin' ),
	);

	return $schedules;
}

add_filter( 'cron_schedules', 'mojo_cron_schedules' );

function mojo_require( $original ) {
	$file = apply_filters( 'mm_require_file', $original );
	if ( file_exists( $file ) ) {
		require $file;

		return $file;
	} elseif ( file_exists( $original ) ) {
		require $original;

		return $original;
	} else {
		return false;
	}
}

function mojo_minify( $content ) {
	$content = str_replace( "\r", '', $content );
	$content = str_replace( "\n", '', $content );
	$content = str_replace( "\t", '', $content );
	$content = str_replace( '  ', ' ', $content );
	$content = trim( $content );

	return $content;
}

function mojo_safe_hosts( $hosts ) {
	$hosts[] = 'mojomarketplace.com';

	return $hosts;
}

add_filter( 'allowed_redirect_hosts', 'mojo_safe_hosts' );

function mojo_better_news_feed( $feed ) {
	return 'http://feeds.feedburner.com/wp-pipes';
}

add_filter( 'dashboard_secondary_feed', 'mojo_better_news_feed' );
add_filter( 'dashboard_secondary_link', 'mojo_better_news_feed' );

function mojo_adjust_feed_transient_lifetime( $lifetime ) {
	return 3 * HOUR_IN_SECONDS;
}

add_filter( 'wp_feed_cache_transient_lifetime', 'mojo_adjust_feed_transient_lifetime' );

function mojo_stars( $rating = 4.5, $sales = 0 ) {
	if ( ! is_numeric( $rating ) || 0 == $rating ) {
		return;
	}
	?>
	<div class="star-rating">
		<ul class="list-unstyled list-inline">
			<?php
			$rating_half = round( $rating * 2 ) / 2;
			$stars       = ( 0 == $rating_half ) ? 5 : 0;
			for ( $i = 0; $i < floor( $rating_half ); $i ++ ) {
				$stars ++;
				?>
				<li><a href="#"><span class="dashicons dashicons-star-filled"></span></a></li>
				<?php
			}
			if ( false !== strpos( $rating_half, '.' ) ) {
				$stars ++;
				?>
				<li><a href="#"><span class="dashicons dashicons-star-half"></span></a></li>
				<?php
			}
			if ( $stars < 5 ) {
				$empty_stars = 5 - $stars;
				for ( $i = 0; $i < $empty_stars; $i ++ ) {
					?>
					<li><a href="#"><span class="dashicons dashicons-star-empty"></span></a></li>
					<?php
				}
			}
			?>
		</ul>
		<span class="rating-label"><span class="count"><?php echo $rating_half; ?></span> Stars
			<?php
			if ( 0 !== $sales ) {
				?>
				<span class="sales-count">(<?php echo number_format( $sales ); ?> Sales)</span>
				<?php
			}
			?>
		</span>
	</div>
	<?php
}

function mojo_loader() {
	if ( isset( $_GET['page'] ) && false !== strpos( $_GET['page'], 'mojo-' ) ) {
		?>
		<script type="text/javascript">
			jQuery(document).ready(function ($) {
				setTimeout(function () {
					$('.bluehost-loader').fadeOut('slow');
				}, 2000);
			});
		</script>
		<?php
	}
}

add_action( 'admin_footer', 'mojo_loader' );

function mojo_site_bin2hex() {
	$path = ABSPATH;
	$path = explode( 'public_html/', $path );
	if ( 2 === count( $path ) ) {
		$path = '/public_html/' . $path[1];
	} else {
		return false;
	}

	$path_hash = bin2hex( $path );

	return $path_hash;
}

function _mojo_login() {
	if ( ! current_user_can( 'administrator' ) ) {
		return;
	}
	if ( isset( $_GET['page'] ) && false !== strpos( $_GET['page'], 'mojo-' ) && false == get_transient( '_mm_session_token' ) ) {
		$args    = array(
			'headers' => array(
				'AuthType'            => 'Token',
				'x-api-refresh-token' => get_option( '_mm_refresh_token' ),
			),
		);
		$session = wp_remote_get( 'https://api.mojomarketplace.com/api/v2/user_token', $args );
		if ( ! is_wp_error( $session ) && isset( $session['response']['code'] ) && 200 == $session['response']['code'] ) {
			$session_data = json_decode( $session['body'] );
			if ( property_exists( $session_data, 'status' ) && 'success' == $session_data->status && property_exists( $session_data, 'token' ) ) {
				set_transient( '_mm_session_token', $session_data->token, HOUR_IN_SECONDS );
			}
		}
	}
}

add_action( 'admin_init', '_mojo_login', 5 );

/**
 * Get the client IP address.
 *
 * @return string
 */
function bh_get_client_ip() {

	// Default to REMOTE_ADDR
	$ip = ( isset( $_SERVER['REMOTE_ADDR'] ) ) ? $_SERVER['REMOTE_ADDR'] : null;

	$proxy_headers = array(
		'HTTP_CF_CONNECTING_IP', // CloudFlare
		'HTTP_FASTLY_CLIENT_IP', // Fastly
		'HTTP_INCAP_CLIENT_IP', // Incapsula
		'HTTP_TRUE_CLIENT_IP', // CloudFlare Enterprise
		'HTTP_X_FORWARDED_FOR', // Any proxy
		'HTTP_X_SUCURI_CLIENTIP', // Sucuri
	);

	// Check for alternate headers indicating a forwarded IP address
	foreach ( $proxy_headers as $proxy_header ) {
		if ( ! empty( $_SERVER[ $proxy_header ] ) ) {
			$forwarded_ips = explode( ',', $_SERVER[ $proxy_header ] );
			$forwarded_ip  = array_shift( $forwarded_ips );
			if ( $forwarded_ip ) {
				$ip = $forwarded_ip;
				break;
			}
		}
	}

	return $ip;
}

MMCT - 2023