267 lines
6.3 KiB
PHP
267 lines
6.3 KiB
PHP
<?php
|
|
/**
|
|
* Class description
|
|
*
|
|
* @package package_name
|
|
* @author Cherry Team
|
|
* @license GPL-2.0+
|
|
*/
|
|
|
|
// If this file is called directly, abort.
|
|
if ( ! defined( 'WPINC' ) ) {
|
|
die;
|
|
}
|
|
|
|
if ( ! class_exists( 'Jet_Blocks_Handlers' ) ) {
|
|
|
|
/**
|
|
* Define Jet_Blocks_Handlers class
|
|
*/
|
|
class Jet_Blocks_Handlers {
|
|
|
|
/**
|
|
* A reference to an instance of this class.
|
|
*
|
|
* @since 1.0.0
|
|
* @var object
|
|
*/
|
|
private static $instance = null;
|
|
|
|
/**
|
|
* Constructor for the class
|
|
*/
|
|
public function init() {
|
|
|
|
add_action( 'init', array( $this, 'register_handler' ) );
|
|
add_action( 'init', array( $this, 'login_handler' ) );
|
|
|
|
if ( defined( 'WC_VERSION' ) && version_compare( WC_VERSION, '3.0.0', '>=' ) ) {
|
|
add_filter( 'woocommerce_add_to_cart_fragments', array( $this, 'cart_link_fragments' ) );
|
|
} else {
|
|
add_filter( 'add_to_cart_fragments', array( $this, 'cart_link_fragments' ) );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Cart link fragments
|
|
*
|
|
* @return array
|
|
*/
|
|
public function cart_link_fragments( $fragments ) {
|
|
|
|
global $woocommerce;
|
|
|
|
$jet_fragments = apply_filters( 'jet-blocks/handlers/cart-fragments', array(
|
|
'.jet-blocks-cart__total-val' => 'jet-blocks-cart/global/cart-totals.php',
|
|
'.jet-blocks-cart__count-val' => 'jet-blocks-cart/global/cart-count.php',
|
|
) );
|
|
|
|
foreach ( $jet_fragments as $selector => $template ) {
|
|
ob_start();
|
|
include jet_blocks()->get_template( $template );
|
|
$fragments[ $selector ] = ob_get_clean();
|
|
}
|
|
|
|
return $fragments;
|
|
|
|
}
|
|
|
|
/**
|
|
* Login form handler.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function login_handler() {
|
|
|
|
if ( ! isset( $_POST['jet_login'] ) ) {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
|
|
if ( empty( $_POST['log'] ) ) {
|
|
|
|
$error = sprintf(
|
|
'<strong>%1$s</strong>: %2$s',
|
|
__( 'ERROR', 'jet-blocks' ),
|
|
__( 'The username field is empty.', 'jet-blocks' )
|
|
);
|
|
|
|
throw new Exception( $error );
|
|
|
|
}
|
|
|
|
$signon = wp_signon();
|
|
|
|
if ( is_wp_error( $signon ) ) {
|
|
throw new Exception( $signon->get_error_message() );
|
|
}
|
|
|
|
$redirect = isset( $_POST['redirect_to'] )
|
|
? esc_url( $_POST['redirect_to'] )
|
|
: esc_url( home_url( '/' ) );
|
|
|
|
wp_redirect( $redirect );
|
|
exit;
|
|
|
|
} catch ( Exception $e ) {
|
|
wp_cache_set( 'jet-login-messages', $e->getMessage() );
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* Registration handler
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register_handler() {
|
|
|
|
if ( ! isset( $_POST['jet-register-nonce'] ) ) {
|
|
return;
|
|
}
|
|
|
|
if ( ! wp_verify_nonce( $_POST['jet-register-nonce'], 'jet-register' ) ) {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
|
|
$username = isset( $_POST['username'] ) ? $_POST['username'] : '';
|
|
$password = isset( $_POST['password'] ) ? $_POST['password'] : '';
|
|
$email = isset( $_POST['email'] ) ? $_POST['email'] : '';
|
|
$confirm_password = isset( $_POST['jet_confirm_password'] ) ? $_POST['jet_confirm_password'] : '';
|
|
$confirmed_password = isset( $_POST['password-confirm'] ) ? $_POST['password-confirm'] : '';
|
|
$confirm_password = filter_var( $confirm_password, FILTER_VALIDATE_BOOLEAN );
|
|
|
|
if ( $confirm_password && $password !== $confirmed_password ) {
|
|
throw new Exception( esc_html__( 'Entered passwords don\'t match', 'jet-blocks' ) );
|
|
}
|
|
|
|
$validation_error = new WP_Error();
|
|
|
|
$user = $this->create_user( $username, sanitize_email( $email ), $password );
|
|
|
|
if ( is_wp_error( $user ) ) {
|
|
throw new Exception( $user->get_error_message() );
|
|
}
|
|
|
|
global $current_user;
|
|
$current_user = get_user_by( 'id', $user );
|
|
wp_set_auth_cookie( $user, true );
|
|
|
|
if ( ! empty( $_POST['jet_redirect'] ) ) {
|
|
$redirect = wp_sanitize_redirect( $_POST['jet_redirect'] );
|
|
} else {
|
|
$redirect = $_POST['_wp_http_referer'];
|
|
}
|
|
|
|
wp_redirect( $redirect );
|
|
exit;
|
|
|
|
} catch ( Exception $e ) {
|
|
wp_cache_set( 'jet-register-messages', $e->getMessage() );
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* Create new user function
|
|
*
|
|
* @param [type] $username [description]
|
|
* @param [type] $email [description]
|
|
* @param [type] $password [description]
|
|
* @return [type] [description]
|
|
*/
|
|
public function create_user( $username, $email, $password ) {
|
|
|
|
// Check username
|
|
if ( empty( $username ) || ! validate_username( $username ) ) {
|
|
return new WP_Error(
|
|
'registration-error-invalid-username',
|
|
__( 'Please enter a valid account username.', 'jet-blocks' )
|
|
);
|
|
}
|
|
|
|
if ( username_exists( $username ) ) {
|
|
return new WP_Error(
|
|
'registration-error-username-exists',
|
|
__( 'An account is already registered with that username. Please choose another.', 'jet-blocks' )
|
|
);
|
|
}
|
|
|
|
// Check the email address.
|
|
if ( empty( $email ) || ! is_email( $email ) ) {
|
|
return new WP_Error(
|
|
'registration-error-invalid-email',
|
|
__( 'Please provide a valid email address.', 'jet-blocks' )
|
|
);
|
|
}
|
|
|
|
if ( email_exists( $email ) ) {
|
|
return new WP_Error(
|
|
'registration-error-email-exists',
|
|
__( 'An account is already registered with your email address. Please log in.', 'jet-blocks' )
|
|
);
|
|
}
|
|
|
|
// Check password
|
|
if ( empty( $password ) ) {
|
|
return new WP_Error(
|
|
'registration-error-missing-password',
|
|
__( 'Please enter an account password.', 'jet-blocks' )
|
|
);
|
|
}
|
|
|
|
$custom_error = apply_filters( 'jet_register_form_custom_error', null );
|
|
|
|
if ( is_wp_error( $custom_error ) ){
|
|
return $custom_error;
|
|
}
|
|
|
|
$new_user_data = array(
|
|
'user_login' => $username,
|
|
'user_pass' => $password,
|
|
'user_email' => $email,
|
|
);
|
|
|
|
$user_id = wp_insert_user( $new_user_data );
|
|
|
|
if ( is_wp_error( $user_id ) ) {
|
|
return new WP_Error(
|
|
'registration-error',
|
|
'<strong>' . __( 'Error:', 'jet-blocks' ) . '</strong> ' . __( 'Couldn’t register you… please contact us if you continue to have problems.', 'jet-blocks' )
|
|
);
|
|
}
|
|
|
|
return $user_id;
|
|
|
|
}
|
|
|
|
/**
|
|
* Returns the instance.
|
|
*
|
|
* @since 1.0.0
|
|
* @return object
|
|
*/
|
|
public static function get_instance() {
|
|
|
|
// If the single instance hasn't been set, set it now.
|
|
if ( null == self::$instance ) {
|
|
self::$instance = new self;
|
|
}
|
|
return self::$instance;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* Returns instance of Jet_Blocks_Handlers
|
|
*
|
|
* @return object
|
|
*/
|
|
function jet_blocks_handlers() {
|
|
return Jet_Blocks_Handlers::get_instance();
|
|
}
|