Sindbad~EG File Manager

Current Path : /home/sarayaglobal/.trash/plugins/ithemes-sync/
Upload File :
Current File : /home/sarayaglobal/.trash/plugins/ithemes-sync/load.php

<?php

/*
Load the Sync plugin components.
Written by Chris Jean for iThemes.com
Version 1.1.1

Version History
	1.0.0 - 2014-03-26 - Chris Jean
		Created from version 1.3.5 of init.php.
	1.0.1 - 2014-10-13 - Chris Jean
		Added more robust checking of the $_GET['ithemes-sync-request'] data.
	1.1.0 - 2014-11-07 - Chris Jean
		Added a admin-ajax.php handler for sending Sync requests.
	1.1.1 - 2014-11-21 - Chris Jean
		Removed call to stripslashes_deep() in AJAX handler.
*/

function ithemes_sync_handle_ajax_request() {
	require_once( $GLOBALS['ithemes_sync_path'] . '/request-handler.php' );
}
add_action( 'wp_ajax_nopriv_ithemes_sync_request', 'ithemes_sync_handle_ajax_request' );

if ( ! empty( $_GET['ithemes-sync-request'] ) ) {
	require_once( $GLOBALS['ithemes_sync_path'] . '/request-handler.php' );
}

if ( is_admin() ) {
	require( $GLOBALS['ithemes_sync_path'] . '/admin.php' );
}

require_once( $GLOBALS['ithemes_sync_path'] . '/client-dashboard.php' );
require_once( $GLOBALS['ithemes_sync_path'] . '/social.php' );
require_once( $GLOBALS['ithemes_sync_path'] . '/notices.php' );

/**
 * Add a notice to be sent to the server when it makes a status or notice request.
 *
 * This function only sends notices to the server during the ithemes_sync_add_notices action. If a notice must be sent
 * to the server outside of this time, use the ithemes_sync_urgent_notice() function.
 *
 * @since 1.4.0
 *
 * @param string $source Uniquely identifies the project that is sending the notice.
 * @param string $id Identifies the type of notice. This is to allow the server to differentiate different kinds of
 *   notices without having to parse the message.
 * @param string $subject A brief subject description of the notice that is fit for presentation to Sync users.
 * @param string $message A message that is fit for presentation to Sync users.
 * @param array $data Optional. Data that is relevant to the notice. For notices that may be best presented in a
 *   graphical manner, this field could be used to send data used to construct the graphic.
 * @return bool Currently, it always returns true.
 */
function ithemes_sync_add_notice( $source, $id, $subject, $message, $data = array() ) {
	require_once( $GLOBALS['ithemes_sync_path'] . '/notice-handler.php' );

	return $GLOBALS['ithemes_sync_notice_handler']->add_notice( $source, $id, $subject, $message, $data );
}

/**
 * Send an urgent notice to the Sync server.
 *
 * This function sends notices to the server immediately.
 *
 * @since 1.4.0
 *
 * @param string $source Uniquely identifies the project that is sending the notice.
 * @param string $id Identifies the type of notice. This is to allow the server to differentiate different kinds of
 *   notices without having to parse the message.
 * @param string $subject A brief subject description of the notice that is fit for presentation to Sync users.
 * @param string $message A message that is fit for presentation to Sync users.
 * @param array $data Optional. Data that is relevant to the notice. For notices that may be best presented in a
 *   graphical manner, this field could be used to send data used to construct the graphic.
 * @return bool Currently, it always returns true.
 */
function ithemes_sync_send_urgent_notice( $source, $id, $subject, $message, $data = array() ) {
	require_once( $GLOBALS['ithemes_sync_path'] . '/notice-handler.php' );

	return $GLOBALS['ithemes_sync_notice_handler']->send_urgent_notice( $source, $id, $subject, $message, $data );
}

function ithemes_sync_handle_activation_hook() {
	set_site_transient( 'ithemes-sync-activated', true, 120 );
	delete_site_option( 'ithemes_sync_hide_authenticate_notice' );
}
register_activation_hook( __FILE__, 'ithemes_sync_handle_activation_hook' );

function ithemes_sync_handle_deactivation_hook() {
	delete_site_option( 'ithemes_sync_hide_authenticate_notice' );
	delete_site_transient( 'ithemes-sync-activated' );
}
register_deactivation_hook( __FILE__, 'ithemes_sync_handle_deactivation_hook' );


function ithemes_sync_updater_register( $updater ) {
	$updater->register( 'ithemes-sync', __FILE__ );
}
add_action( 'ithemes_updater_register', 'ithemes_sync_updater_register' );

require( $GLOBALS['ithemes_sync_path'] . '/lib/updater/load.php' );

/*
 * Whitelist the Sync Server IP addresses in iThemes Security to prevent
 * Sync from being blacklisted by a customer on their own site
 */
function ithemes_sync_itsec_white_ips( $white_ips ) {
	$white_ips[] = '54.163.229.119';
	$white_ips[] = '54.159.83.156';
	return $white_ips;
}
add_filter( 'itsec_white_ips', 'ithemes_sync_itsec_white_ips' );
	
function ithemes_sync_login() {
	if ( !empty( $_GET['sync-login'] ) ) {
		$option = get_option( 'sync_login_' . $_GET['sync-login'] );
		delete_option( 'sync_login_' . $_GET['sync-login'] );
		$current_time = current_time( 'timestamp', true );
		
		if ( $option['expires'] > $current_time ) {
			wp_set_current_user( $option['user_id'] );
			wp_set_auth_cookie( $option['user_id'], false, is_ssl() );
		}
		
		if ( !empty( $option['path'] ) ) {
			switch( $option['path'] ) {
				case 'addpost':
					$path = 'post-new.php';
					break;
				case 'addpage':
					$path = 'post-new.php?post_type=page';
					break;
				default:
					$path = '';
			}
		} else {
			$path = '';
		}
		
		wp_redirect( admin_url( $path ) );
	}
	return false;
}
add_action( 'init', 'ithemes_sync_login' );

function ithemes_sync_daily_schedule() {
	global $wpdb;
	
    $results = $wpdb->get_results(
        $wpdb->prepare( "
            SELECT option_name, option_value
            FROM $wpdb->options
            WHERE option_name LIKE %s
            ",
            'sync_login_%' )
    );
    
	$current_time = current_time( 'timestamp', true );
    foreach ( $results as $result ) {
	    $data = maybe_unserialize( $result->option_value );
		if ( $data['expires'] < $current_time ) {
			delete_option( $result->option_name );
		}
    }
}
add_action( 'ithemes_sync_daily_schedule', 'ithemes_sync_daily_schedule' );

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists