<?php
/**
 * Wishlist settings page on admin panel.
 *
 * @package Woodmart
 */

namespace XTS\WC_Wishlist;

use WP_User_Query;
use XTS\Singleton;
use XTS\WC_Wishlist\Backend\List_Table\Wishlists;
use XTS\WC_Wishlist\Backend\List_Table\Popular_Products;
use XTS\WC_Wishlist\Backend\List_Table\Users_Popular_Products;
use Automattic\WooCommerce\Admin\Features\Navigation\Menu;
use Automattic\WooCommerce\Admin\Features\Features;

if ( ! defined( 'ABSPATH' ) ) {
	exit( 'No direct script access allowed' );
}

/**
 * Create Wishlist settings page on admin panel.
 */
class Backend extends Singleton {
	/**
	 * Base initialization class required for Module class.
	 *
	 * @since 1.0.0
	 */
	public function init() {
		if ( isset( $_GET['page'] ) && 'xts-wishlist-settings-page' === $_GET['page'] ) {
			add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
		}

		$this->include_files();

		add_action( 'init', array( $this, 'delete_wishlists' ) );
		add_action( 'init', array( $this, 'create_promotion' ) );

		add_action( 'admin_notices', array( $this, 'show_notice' ) );
		add_action( 'admin_menu', array( $this, 'register_wishlist_settings_page' ) );

		add_action( 'wp_ajax_woodmart_json_search_users', array( $this, 'woodmart_json_search_users' ) );

		add_filter( 'set-screen-option', array( $this, 'set_screen_option' ), 10, 3);
	}

	public function show_notice() {
		if ( ! isset( $_GET['page'] ) || 'xts-wishlist-settings-page' !== $_GET['page'] || ! isset( $_GET['tab'] ) || ! in_array( $_GET['tab'], array( 'xts-popular-products-in-wishlist', 'xts-users-popular-products' ), true ) || woodmart_check_this_email_notification_is_enabled( 'woocommerce_woodmart_promotional_email_settings', 'yes' ) ) {
			return;
		}

		?>
		<div class="notice notice-error is-dismissible">
			<p>
				<?php
					printf(
						'%s <a href="%s">%s</a>.',
						esc_html__( 'Wishlist promotional email is currently disabled. You need to enable it if you want to send promotional emails to your customers. Find it in', 'woodmart' ),
						esc_url( admin_url( 'admin.php?page=wc-settings&tab=email' ) ),
						esc_html__( 'WooCommerce -> Settings -> Emails', 'woodmart' )
					);
				?>
			</p>
		</div>
		<?php
	}

	public function create_promotion() {
		if ( ! isset( $_REQUEST['_wpnonce'] ) || ! isset( $_REQUEST['product_id'] ) || ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'woodmart_send_promotion_email' ) || ! woodmart_check_this_email_notification_is_enabled( 'woocommerce_woodmart_promotional_email_settings', 'yes' ) ) {
			return;
		}

		$product_id     = $_REQUEST['product_id'];
		$user_ids       = isset( $_REQUEST['user_id'] ) ? $_REQUEST['user_id'] : array_unique( Popular_Products::get_user_ids_by_product_id( $product_id ) );
		$users_products = ! is_array( $user_ids ) ? array( $user_ids => $product_id ) : array_combine( $user_ids, array_fill( 0, count( $user_ids ), $product_id ) );

		Sends_Promotional::update_promotion_data( $users_products );
	}

	/**
	 * Enqueue styles and scripts on wp admin panel.
	 */
	public function enqueue_scripts() {
		wp_enqueue_style(
			'xts-page-wishlists',
			WOODMART_ASSETS . '/css/parts/page-wishlists.min.css',
			array(),
			woodmart_get_theme_info( 'Version' )
		);

		wp_enqueue_script(
			'xts-admin-wishlist',
			WOODMART_ASSETS . '/js/wishlist.js',
			array(
				'jquery',
				'jquery-ui-datepicker',
				'select2',
			),
			WOODMART_VERSION,
			true
		);

		wp_localize_script(
			'xts-admin-wishlist',
			'xtsAdminWishlistSettings',
			array(
				'send_promotional_confirm_text' => esc_html__( 'Ready to send this promotional email?', 'woodmart' ),
			)
		);
	}

	public function woodmart_json_search_users( $term = '' ) {
		check_ajax_referer( 'search-users', 'security' );

		if ( empty( $term ) && isset( $_GET['term'] ) ) {
			$term = (string) wc_clean( wp_unslash( $_GET['term'] ) ); // phpcs:ignore.
		}

		if ( empty( $term ) ) {
			wp_die();
		}

		$users_found = array();

		$users = new WP_User_Query(
			array(
				'search'         => '*' . esc_attr( $term ) . '*',
				'search_columns' => array(
					'user_login',
					'user_nicename',
					'user_email',
					'user_url',
				),
			)
		);

		$users_objects = $users->get_results();

		foreach ( $users_objects as $user ) {
			$users_found[ $user->get( 'ID' ) ] = $user->get( 'user_login' );
		}

		wp_send_json( apply_filters( 'woodmart_json_search_found_users', $users_found ) );
	}

	/**
	 * Include main files.
	 */
	private function include_files() {
		if ( ! class_exists( 'WP_List_Table' ) ) {
			require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php';
		}

		$files = array(
			'class-popular-products',
			'class-users-popular-products',
			'class-wishlists',
		);

		foreach ( $files as $file ) {
			$file_path = XTS_WISHLIST_DIR . 'backend/list-tables/' . $file . '.php';

			if ( file_exists( $file_path ) ) {
				require_once $file_path;
			}
		}
	}

	/**
	 * This method deletes wishlists when you click the Delete button.
	 *
	 * @return void
	 */
	public function delete_wishlists() {
		if ( ! isset( $_GET['delete_wishlist'] ) || ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_GET['delete_wishlist'] ) ), 'delete_wishlist' ) || empty( $_GET['wishlist_id'] ) ) {
			return;
		}

		$wishlist_id = intval( $_GET['wishlist_id'] );

		$wishlist = new Wishlist( $wishlist_id );

		$wishlist->remove_group( $wishlist_id );
		$wishlist->update_count_cookie();

		wp_safe_redirect( admin_url( '/edit.php?post_type=product&page=xts-wishlist-settings-page&tab=xts-all-wishlists' ) );
		die();
	}

	public function wishlist_screen_options() {
		global $wishlist_settings_page;

		$screen = get_current_screen();

		if ( ! is_object( $screen ) || $screen->id !== $wishlist_settings_page ) {
			return;
		}

		add_screen_option(
			'per_page',
			array(
				'label'   => esc_html__( 'Number of items per page', 'woodmart' ),
				'default' => 20,
				'option'  => 'wishlists_per_page',
			)
		);
	}

	public function set_screen_option( $status, $option, $value ) {
		if ( 'wishlists_per_page' === $option ) {
			return $value;
		}

		return $status;
	}

	/**
	 * Register wishlist settings page.
	 *
	 * @return void
	 */
	public function register_wishlist_settings_page() {
		global $wishlist_settings_page;

		$wishlist_settings_page = add_submenu_page(
			'edit.php?post_type=product',
			esc_html__( 'Wishlists', 'woodmart' ),
			esc_html__( 'Wishlists', 'woodmart' ),
			apply_filters( 'woodmart_capability_menu_page', 'edit_products', 'xts-wishlist-settings-page' ),
			'xts-wishlist-settings-page',
			array( $this, 'render_wishlist_settings_page' )
		);

		add_action( 'load-' . $wishlist_settings_page, array( $this, 'wishlist_screen_options' ) );

		if ( ! method_exists( Menu::class, 'add_plugin_item' ) || ! method_exists( Menu::class, 'add_plugin_category' ) || ! Features::is_enabled( 'navigation' ) ) {
			return;
		}

		Menu::add_plugin_category(
			array(
				'id'         => 'xts-wishlist-settings',
				'parent'     => 'woocommerce-products',
				'title'      => esc_html__( 'Wishlists', 'woodmart' ),
				'capability' => apply_filters( 'woodmart_capability_menu_page', 'edit_products', 'xts-wishlist-settings' ),
				'url'        => 'xts-wishlist-settings-page',
			)
		);

		Menu::add_plugin_item(
			array(
				'id'         => 'xts-all-wishlists',
				'parent'     => 'xts-wishlist-settings',
				'title'      => esc_html__( 'All wishlists', 'woodmart' ),
				'capability' => apply_filters( 'woodmart_capability_menu_page', 'edit_products', 'xts-all-wishlists' ),
				'url'        => 'xts-wishlist-settings-page&tab=xts-all-wishlists',
			)
		);

		Menu::add_plugin_item(
			array(
				'id'         => 'xts-popular-products-in-wishlist',
				'parent'     => 'xts-wishlist-settings',
				'title'      => esc_html__( 'Popular products', 'woodmart' ),
				'capability' => apply_filters( 'woodmart_capability_menu_page', 'edit_products', 'xts-popular-products-in-wishlist' ),
				'url'        => 'xts-wishlist-settings-page&tab=xts-popular-products-in-wishlist',
			)
		);
	}

	/**
	 * Render wishlist settings page.
	 *
	 * @return void
	 */
	public function render_wishlist_settings_page() {
		$list_table  = new Wishlists();
		$tabs        = array(
			'xts-all-wishlists'                => esc_html__( 'All wishlists', 'woodmart' ),
			'xts-popular-products-in-wishlist' => esc_html__( 'Popular products', 'woodmart' ),
		);
		$current_tab = $this->get_current_tab();
		$base_url    = add_query_arg(
			array(
				'post_type' => 'product',
				'page'      => 'xts-wishlist-settings-page',
			),
			admin_url( 'edit.php' )
		);
		$title       = '';

		$is_users_popular_products = isset( $_GET['tab'] ) && 'xts-users-popular-products' === $_GET['tab'];

		if ( $is_users_popular_products ) {
			$title = esc_html__( 'Customers that added product to wishlist', 'woodmart' );

			if ( ! empty( $_GET['product_id'] ) ) { // phpcs:ignore;
				$product = wc_get_product( $_GET['product_id'] ); // phpcs:ignore;
			}

			if ( ! empty( $product ) ) {
				// translators: Product name.
				$title = sprintf( esc_html__( 'Customers that added "%s" to wishlist', 'woodmart' ), $product->get_name() );
			}
		}

		if ( ! empty( $_GET['tab'] ) && 'xts-popular-products-in-wishlist' === $_GET['tab'] ) { // phpcs:ignore;
			$list_table = new Popular_Products();
		} elseif ( ! empty( $_GET['tab'] ) && 'xts-users-popular-products' === $_GET['tab'] ) { // phpcs:ignore;
			$list_table = new Users_Popular_Products();
		}

		$list_table->prepare_items();

		ob_start();
		?>
			<div class="wrap wishlist-settings-page-wrap">
				<h2 class="wp-heading-inline"><?php echo esc_html__( 'Wishlists', 'woodmart' ); ?></h2>

				<?php if ( ! $is_users_popular_products ) : ?>
					<div class="nav-tab-wrapper">
						<?php foreach ( $tabs as $key => $label ) : ?>
							<?php
							$classes = '';
	
							if ( $current_tab === $key ) {
								$classes .= ' nav-tab-active';
							}
							?>
	
							<a class="nav-tab<?php echo esc_attr( $classes ); ?>" href="<?php echo esc_attr( add_query_arg( 'tab', $key, $base_url ) ); ?>">
								<?php echo esc_html( $label ); ?>
							</a>
						<?php endforeach; ?>
					</div>
				<?php endif; ?>

				<?php if ( ! empty( $title ) ) : ?>
					<h3><?php echo esc_html( $title ); ?></h3>
				<?php endif; ?>

				<form id="xts-wishlist-settings-page-form" method="get" action="">
					<input type="hidden" name="page" value="xts-wishlist-settings-page" />
					<input type="hidden" name="tab" value="<?php echo esc_attr( $current_tab ); ?>" />
					<input type="hidden" name="post_type" value="product" />
					<?php
					if ( $list_table instanceof Wishlists ) {
						$list_table->search_box( esc_html__( 'Search', 'woodmart' ), 'xts-search' );
					}

					$list_table->display();
					?>
				</form>
			</div>
		<?php
		echo ob_get_clean(); // phpcs:ignore;
	}

	/**
	 * Get current tab.
	 *
	 * @return string
	 */
	public function get_current_tab() {
		if ( ! empty( $_GET['tab'] ) ) { // phpcs:ignore
			return $_GET['tab']; // phpcs:ignore
		}

		return 'xts-all-wishlists';
	}
}

Backend::get_instance();
