File "description.php"
Full path: C:/Inetpub/vhosts/drshti.com/httpdocs/wp-content/plugins/ultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/api/description.php
File
size: 4.33 B (4.33 KB bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
<?php
/**
* Description API.
*
* @package {{package}}
* @since 2.0.0
*/
namespace Gutenberg_Templates\Inc\Api;
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
use Gutenberg_Templates\Inc\Traits\Instance;
use Gutenberg_Templates\Inc\Api\Api_Base;
use Gutenberg_Templates\Inc\Importer\Importer_Helper;
/**
* Progress
*
* @since 2.0.0
*/
class Description extends Api_Base {
use Instance;
/**
* Route base.
*
* @var string
*/
protected $rest_base = '/description/';
/**
* Init Hooks.
*
* @since 2.0.0
* @return void
*/
public function register_routes() {
$namespace = $this->get_api_namespace();
register_rest_route(
$namespace,
$this->rest_base,
array(
array(
'methods' => \WP_REST_Server::CREATABLE,
'callback' => array( $this, 'get' ),
'permission_callback' => array( $this, 'get_item_permissions_check' ),
'args' => array(
'business_name' => array(
'type' => 'string',
'required' => true,
'sanitize_callback' => 'sanitize_text_field',
),
'business_description' => array(
'type' => 'string',
'required' => false,
'sanitize_callback' => 'sanitize_text_field',
),
'category' => array(
'type' => 'string',
'required' => false,
'sanitize_callback' => 'sanitize_text_field',
),
'language_name' => array(
'type' => 'string',
'required' => false,
'sanitize_callback' => 'sanitize_text_field',
),
),
),
)
);
}
/**
* Check whether a given request has permission to read notes.
*
* @param object $request WP_REST_Request Full details about the request.
* @return object|boolean
*/
public function get_item_permissions_check( $request ) {
if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
return new \WP_Error(
'gt_rest_cannot_access',
__( 'Sorry, you are not allowed to do that.', 'ultimate-addons-for-gutenberg' ),
array( 'status' => rest_authorization_required_code() )
);
}
return true;
}
/**
* Save Prompts.
*
* @param \WP_REST_Request $request Full details about the request.
* @return mixed
*/
public function get( $request ) {
$nonce = (string) $request->get_header( 'X-WP-Nonce' );
// Verify the nonce.
if ( ! wp_verify_nonce( sanitize_text_field( $nonce ), 'wp_rest' ) ) {
wp_send_json_error(
array(
'data' => __( 'Nonce verification failed.', 'ultimate-addons-for-gutenberg' ),
'status' => false,
)
);
}
$api_endpoint = AST_BLOCK_TEMPLATES_LIBRARY_URL . 'wp-json/ai/v1/description';
$token = Importer_Helper::get_business_details( 'token' );
$post_data = array(
'business_name' =>
isset( $request['business_name'] ) ?
sanitize_text_field( $request['business_name'] ) :
'',
'business_description' =>
isset( $request['business_description'] ) ? sanitize_text_field( $request['business_description'] ) : '',
'category' =>
isset( $request['category'] ) ? sanitize_text_field( $request['category'] ) : '',
'language_name' =>
isset( $request['language_name'] ) ? sanitize_text_field( $request['language_name'] ) : '',
'token' =>
$token,
);
$body = wp_json_encode( $post_data );
$request_args = array(
'body' => is_string( $body ) ? $body : '',
'headers' => array(
'Content-Type' => 'application/json',
),
'timeout' => 100,
);
$response = wp_safe_remote_post( $api_endpoint, $request_args );
if ( is_wp_error( $response ) ) {
// There was an error in the request.
wp_send_json_error(
array(
'data' => 'Failed ' . $response->get_error_message(),
'status' => false,
)
);
} else {
$response_code = wp_remote_retrieve_response_code( $response );
$response_body = wp_remote_retrieve_body( $response );
if ( 200 === $response_code ) {
$response_data = json_decode( $response_body, true );
if ( $response_data['status'] ) {
wp_send_json_success(
array(
'data' => $response_data['data'],
'status' => true,
)
);
} else {
wp_send_json_error(
array(
'data' => 'Failed ' . $response_data['data'],
'status' => false,
)
);
}
} else {
wp_send_json_error(
array(
'data' => 'Failed',
'status' => false,
)
);
}
}
}
}