280 lines
7.8 KiB
PHP
280 lines
7.8 KiB
PHP
<?php
|
|
|
|
namespace CTXFeed\V5\API\V1;
|
|
|
|
use CTXFeed\V5\API\RestController;
|
|
use CTXFeed\V5\API\RestConstants;
|
|
use CTXFeed\V5\Output\DynamicAttributes as DynamicAttributesBase;
|
|
use CTXFeed\V5\Product\AttributeValueByType;
|
|
use Woo_Feed_Notices;
|
|
use \WP_REST_Server;
|
|
|
|
/**
|
|
* Class DynamicAttributes
|
|
*
|
|
* @package CTXFeed
|
|
* @subpackage CTXFeed\V5\API\V1
|
|
* @author Azizul Hasan <azizulhasan.cr@gmail.com>
|
|
* @link https://azizulhasan.com
|
|
* @license https://opensource.org/licenses/gpl-license.php GNU Public License
|
|
*/
|
|
class DynamicAttributes extends RestController {
|
|
/**
|
|
* @var array
|
|
*/
|
|
private static $attr_lists = [];
|
|
|
|
/**
|
|
* @var DynamicAttributesBase|null
|
|
*/
|
|
private static $dynamic_attributes = null;
|
|
/**
|
|
* The single instance of the class
|
|
*
|
|
* @var DynamicAttributes
|
|
*
|
|
*/
|
|
protected static $_instance = null;
|
|
|
|
private function __construct() {
|
|
parent::__construct();
|
|
$this->rest_base = RestConstants::DYNAMIC_ATTRIBUTE_REST_BASE;
|
|
self::$dynamic_attributes = new DynamicAttributesBase();
|
|
}
|
|
|
|
/**
|
|
* Main DynamicAttributes Instance.
|
|
*
|
|
* Ensures only one instance of DynamicAttributes is loaded or can be loaded.
|
|
*
|
|
* @return DynamicAttributes Main instance
|
|
*/
|
|
public static function instance() {
|
|
if ( is_null( self::$_instance ) ) {
|
|
self::$_instance = new self();
|
|
}
|
|
|
|
return self::$_instance;
|
|
}
|
|
|
|
/**
|
|
* Register routes.
|
|
* @return void
|
|
*/
|
|
public function register_routes() {
|
|
register_rest_route(
|
|
$this->namespace,
|
|
'/' . $this->rest_base,
|
|
[
|
|
/**
|
|
* @endpoint: wp-json/ctxfeed/v1/dynamic_attributes
|
|
* @description Will get all feed lists
|
|
*
|
|
*
|
|
* @endpoint wp-json/ctxfeed/v1/dynamic_attributes/?page=1&per_page=2
|
|
* @descripton Get paginated value with previous page and next page link
|
|
*
|
|
* @endpoint wp-json/ctxfeed/v1/dynamic_attributes/?name=google_shopping
|
|
* @method GET
|
|
* @descripton Get single attribute
|
|
*
|
|
* @param $name String
|
|
*
|
|
* @param $page Number
|
|
* @param $per_page Number
|
|
*/
|
|
[
|
|
'methods' => WP_REST_Server::READABLE,
|
|
'callback' => [ $this, 'get_items' ],
|
|
'permission_callback' => [ $this, 'get_item_permissions_check' ],
|
|
'args' => [
|
|
'name' => [
|
|
'description' => __( 'feed name', 'woo-feed' ),
|
|
'type' => 'string',
|
|
'required' => false,
|
|
'sanitize_callback' => 'sanitize_text_field',
|
|
'validate_callback' => 'rest_validate_request_arg',
|
|
],
|
|
'page' => [
|
|
'description' => __( 'Page number', 'woo-feed' ),
|
|
'type' => 'number',
|
|
'required' => false,
|
|
'sanitize_callback' => 'absint',
|
|
'validate_callback' => 'rest_validate_request_arg',
|
|
],
|
|
'per_page' => [
|
|
'description' => __( 'Per page', 'woo-feed' ),
|
|
'type' => 'number',
|
|
'required' => false,
|
|
'sanitize_callback' => 'absint',
|
|
'validate_callback' => 'rest_validate_request_arg',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'methods' => WP_REST_Server::CREATABLE,
|
|
'callback' => [ $this, 'create_item' ],
|
|
'permission_callback' => [ $this, 'get_item_permissions_check' ],
|
|
'args' => [],
|
|
],
|
|
[
|
|
'methods' => WP_REST_Server::EDITABLE,
|
|
'callback' => [ $this, 'update_item' ],
|
|
'permission_callback' => [ $this, 'get_item_permissions_check' ],
|
|
'args' => [],
|
|
],
|
|
/**
|
|
* @endpoint wp-json/ctxfeed/v1/dynamic_attributes/?name=google_shopping
|
|
* @method DELETE
|
|
* @descripton Delete single attribute
|
|
*
|
|
* @param $name String
|
|
*/
|
|
[
|
|
'methods' => WP_REST_Server::DELETABLE,
|
|
'callback' => [ $this, 'delete_item' ],
|
|
'permission_callback' => [ $this, 'get_item_permissions_check' ],
|
|
'args' => [
|
|
'name' => [
|
|
'description' => __( 'feed name', 'woo-feed' ),
|
|
'type' => 'string',
|
|
'required' => true,
|
|
'sanitize_callback' => 'sanitize_text_field',
|
|
'validate_callback' => 'rest_validate_request_arg',
|
|
],
|
|
],
|
|
],
|
|
|
|
]
|
|
);
|
|
register_rest_route(
|
|
$this->namespace,
|
|
'/' . $this->rest_base . '/unique_option_name',
|
|
[
|
|
[
|
|
'methods' => WP_REST_Server::CREATABLE,
|
|
'callback' => [ $this, 'get_unique_option_name' ],
|
|
'permission_callback' => [ $this, 'get_item_permissions_check' ],
|
|
'args' => [],
|
|
],
|
|
]
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param $request
|
|
*
|
|
* @return \WP_REST_Response|null
|
|
*/
|
|
public function get_unique_option_name( $request ) {
|
|
$body = $request->get_body();
|
|
$body = (array) json_decode( $body );
|
|
$option_name = $body['option_name'];
|
|
|
|
$response = $this->unique_option_name( $option_name, AttributeValueByType::PRODUCT_DYNAMIC_ATTRIBUTE_PREFIX );
|
|
|
|
return $this->success( $response );
|
|
}
|
|
|
|
/**
|
|
* @param $request
|
|
*
|
|
* @return \WP_Error|\WP_REST_Response|\WP_HTTP_Response
|
|
*/
|
|
public function update_item( $request ) {
|
|
$body = $request->get_body();
|
|
$body = (array) json_decode( $body );
|
|
|
|
// Save option name.
|
|
self::$dynamic_attributes->updateDynamicAttribute( $body );
|
|
// Get option name.
|
|
self::$attr_lists = self::$dynamic_attributes->getDynamicAttributes();
|
|
|
|
self::$attr_lists = $this->get_lists( $request, self::$attr_lists );
|
|
|
|
return $this->success( self::$attr_lists );
|
|
}
|
|
|
|
|
|
/**
|
|
* @param $request
|
|
*
|
|
* @return \WP_Error|\WP_REST_Response|\WP_HTTP_Response
|
|
*/
|
|
public function delete_item( $request ) {
|
|
|
|
// $name = $request->get_param( 'name' );
|
|
$name = $this->get_feed_option_name($request);
|
|
|
|
if ( self::$dynamic_attributes->deleteDynamicAttribute( $name ) ) {
|
|
// Get option name.
|
|
self::$attr_lists = self::$dynamic_attributes->getDynamicAttributes();
|
|
|
|
self::$attr_lists = $this->get_lists( $request, self::$attr_lists );
|
|
|
|
return $this->success( self::$attr_lists );
|
|
}
|
|
/* translators: %s: message */
|
|
return $this->error( sprintf( __( 'No attribute found with name: %s', 'woo-feed' ), $name ) );
|
|
}
|
|
|
|
/**
|
|
* @param $request
|
|
*
|
|
* @return \WP_Error|\WP_HTTP_Response|\WP_REST_Response
|
|
*/
|
|
public function create_item( $request ) {
|
|
$body = $request->get_body();
|
|
$body = (array) json_decode( $body );
|
|
// Save option name.
|
|
self::$dynamic_attributes->saveDynamicAttribute( $body );
|
|
// Get option name.
|
|
self::$attr_lists = self::$dynamic_attributes->getDynamicAttributes();
|
|
|
|
self::$attr_lists = $this->get_lists( $request, self::$attr_lists );
|
|
|
|
Woo_Feed_Notices :: woo_feed_saved_dynamic_attributes_notice_data();
|
|
|
|
return $this->success( self::$attr_lists );
|
|
}
|
|
|
|
/**
|
|
* @param $request
|
|
*
|
|
* @return \WP_Error|\WP_REST_Response|null
|
|
*/
|
|
public function get_item( $request ) {
|
|
|
|
$feed_name = $this->get_feed_option_name($request);
|
|
|
|
self::$attr_lists = self::$dynamic_attributes->getDynamicAttribute( $feed_name );
|
|
if ( self::$attr_lists ) {
|
|
$item = $this->prepare_item_for_response( self::$attr_lists, $request );
|
|
|
|
return $this->success( $item );
|
|
}
|
|
|
|
return $this->error( sprintf( __( 'Not found with: %s or prefix: "' . AttributeValueByType::PRODUCT_DYNAMIC_ATTRIBUTE_PREFIX . '" does\'nt match.', 'woo-feed' ), $feed_name ) );
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param \WP_REST_Request $request Full details about the request.
|
|
*
|
|
* @return \WP_Error|\WP_HTTP_Response|\WP_REST_Response
|
|
*/
|
|
public function get_items( $request ) {
|
|
$args = $request->get_params();
|
|
if ( isset( $args['name'] ) ) {
|
|
return $this->get_item( $request );
|
|
}
|
|
self::$attr_lists = self::$dynamic_attributes->getDynamicAttributes();
|
|
|
|
$data = $this->get_lists( $request, self::$attr_lists );
|
|
$response = rest_ensure_response( $this->response );
|
|
$response = $this->maybe_add_pagination( $args, $data, $response );
|
|
|
|
return $response;
|
|
}
|
|
|
|
}
|