# shopbuilder/3.1.3/app/Modules/Compare/CompareRouteV1.php

ShopBuilder – WooCommerce Builder For Elementor, version 3.1.3. 128 lines.

- Page: https://pluginprobe.com/plugins/shopbuilder/3.1.3/code/app/Modules/Compare/CompareRouteV1.php
- Raw: https://pluginprobe.com/plugins/shopbuilder/3.1.3/raw/app/Modules/Compare/CompareRouteV1.php
- Modified: 2025-10-08T05:03:42+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/shopbuilder/3.1.3/code/app/Modules/Compare/CompareRouteV1.php#L10-L20`.

```php
<?php

namespace RadiusTheme\SB\Modules\Compare;

use RadiusTheme\SB\Abstracts\Api;
use WP_Error;
use WP_HTTP_Response;
use WP_REST_Request;
use WP_REST_Response;
use WP_REST_Server;

// Do not allow directly accessing this file.
if ( ! defined( 'ABSPATH' ) ) {
	exit( 'This script cannot be accessed directly.' );
}


class CompareRouteV1 extends Api {


	public function config() {
	}


	public function init() {
		add_action(
			'rest_api_init',
			function () {
				register_rest_route(
					$this->getNamespace(),
					'/compare/add_to_list',
					[
						'methods'             => WP_REST_Server::CREATABLE,
						'callback'            => [ $this, 'add_to_list_callback' ],
						'permission_callback' => [ $this, 'check_permission' ],
					]
				);
				register_rest_route(
					$this->getNamespace(),
					'/compare/remove_from_list',
					[
						'methods'             => WP_REST_Server::CREATABLE,
						'callback'            => [ $this, 'remove_from_list_callback' ],
						'permission_callback' => [ $this, 'check_permission' ],
					]
				);
			}
		);
	}

	/**
	 * Check permission for the given WP_REST_Request.
	 *
	 * @param WP_REST_Request $request The REST request object.
	 *
	 * @return boolean
	 */
	public function check_permission( WP_REST_Request $request ) {
		$product_id = $request->get_param( 'product_id' );
		$nonce      = $request->get_header( 'X-WP-Nonce' );

		if ( ! $product_id || 'publish' !== get_post_status( $product_id ) ) {
			return false;
		}

		if ( ! wp_verify_nonce( $nonce, 'wp_rest' ) ) {
			return false;
		}

		return true;
	}


	public function add_to_list_callback( $request ) {
		$product_id = $request->get_param( 'product_id' );

		if ( ! $product_id || 'publish' !== get_post_status( $product_id ) ) {
			return $this->sendError( esc_html__( 'Product id not found.', 'shopbuilder' ) );
		}

		$inserted = CompareFns::instance()->add_product( $product_id );
		if ( is_wp_error( $inserted ) ) {
			return $this->sendError( $inserted->get_error_message() );
		}

		return $this->sendResponse(
			[
				'item_count' => count( CompareFns::instance()->get_compared_product_ids() ),
				'product_id' => $product_id,
				'list_html'  => CompareFrontEnd::instance()->list_shortcode( [] ),
			]
		);
	}


	/**
	 * Callback function for removing a product to the comparison list.
	 *
	 * @param WP_REST_Request $request The REST request object.
	 *
	 * @return WP_Error|WP_HTTP_Response|WP_REST_Response
	 */
	public function remove_from_list_callback( $request ) {
		$product_id = $request->get_param( 'product_id' );

		if ( ! $product_id ) {
			return $this->sendError( esc_html__( 'Product id not found.', 'shopbuilder' ) );
		}

		$deleted = CompareFns::instance()->remove_product( $product_id );
		if ( is_wp_error( $deleted ) ) {
			return $this->sendError( $deleted->get_error_message() );
		}

		if ( ! $deleted ) {
			return $this->sendError( esc_html__( 'The product does not delete!', 'shopbuilder' ) );
		}

		return $this->sendResponse(
			[
				'product_id' => $product_id,
				'item_count' => count( CompareFns::instance()->get_compared_product_ids() ),
				'list_html'  => CompareFrontEnd::instance()->list_shortcode( [] ),
			]
		);
	}
}

```
