View file File name : page-description.php Content :<?php /** * PageDescription API. * * @package {{package}} * @since 2.0.16 */ 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.16 */ class PageDescription extends Api_Base { use Instance; /** * Route base. * * @var string */ protected $rest_base = '/page-description/'; /** * Init Hooks. * * @since 2.0.16 * @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', ), 'page_name' => array( 'type' => 'string', 'required' => true, 'sanitize_callback' => 'sanitize_text_field', ), 'page_description' => array( 'type' => 'string', 'required' => false, 'sanitize_callback' => 'sanitize_text_field', ), 'category' => array( 'type' => 'string', 'sanitize_callback' => 'sanitize_text_field', 'required' => false, ), ), ), ) ); } /** * 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.', 'astra-sites' ), 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 = $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.', 'astra-sites' ), 'status' => false, ) ); } $api_endpoint = AST_BLOCK_TEMPLATES_LIBRARY_URL . 'wp-json/ai/v1/page-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'] ) : '', 'page_name' => isset( $request['page_name'] ) ? sanitize_text_field( $request['page_name'] ) : '', 'page_description' => isset( $request['page_description'] ) ? sanitize_text_field( $request['page_description'] ) : '', 'category' => isset( $request['category'] ) ? sanitize_text_field( $request['category'] ) : '', 'token' => isset( $token ) ? $token : '', ); $request_args = array( 'body' => wp_json_encode( $post_data ), '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, ) ); } } } }