| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466 |
- <?php
- /**
- * REST API WC Payment gateways controller
- *
- * Handles requests to the /payment_gateways endpoint.
- *
- * @package WooCommerce/API
- * @since 3.0.0
- */
- defined( 'ABSPATH' ) || exit;
- /**
- * Paymenga gateways controller class.
- *
- * @package WooCommerce/API
- * @extends WC_REST_Controller
- */
- class WC_REST_Payment_Gateways_Controller extends WC_REST_Controller {
- /**
- * Endpoint namespace.
- *
- * @var string
- */
- protected $namespace = 'wc/v2';
- /**
- * Route base.
- *
- * @var string
- */
- protected $rest_base = 'payment_gateways';
- /**
- * Register the route for /payment_gateways and /payment_gateways/<id>
- */
- public function register_routes() {
- register_rest_route(
- $this->namespace, '/' . $this->rest_base, array(
- array(
- 'methods' => WP_REST_Server::READABLE,
- 'callback' => array( $this, 'get_items' ),
- 'permission_callback' => array( $this, 'get_items_permissions_check' ),
- 'args' => $this->get_collection_params(),
- ),
- 'schema' => array( $this, 'get_public_item_schema' ),
- )
- );
- register_rest_route(
- $this->namespace, '/' . $this->rest_base . '/(?P<id>[\w-]+)', array(
- 'args' => array(
- 'id' => array(
- 'description' => __( 'Unique identifier for the resource.', 'woocommerce' ),
- 'type' => 'string',
- ),
- ),
- array(
- 'methods' => WP_REST_Server::READABLE,
- 'callback' => array( $this, 'get_item' ),
- 'permission_callback' => array( $this, 'get_item_permissions_check' ),
- 'args' => array(
- 'context' => $this->get_context_param( array( 'default' => 'view' ) ),
- ),
- ),
- array(
- 'methods' => WP_REST_Server::EDITABLE,
- 'callback' => array( $this, 'update_item' ),
- 'permission_callback' => array( $this, 'update_items_permissions_check' ),
- 'args' => $this->get_endpoint_args_for_item_schema( WP_REST_Server::EDITABLE ),
- ),
- 'schema' => array( $this, 'get_public_item_schema' ),
- )
- );
- }
- /**
- * Check whether a given request has permission to view payment gateways.
- *
- * @param WP_REST_Request $request Full details about the request.
- * @return WP_Error|boolean
- */
- public function get_items_permissions_check( $request ) {
- if ( ! wc_rest_check_manager_permissions( 'payment_gateways', 'read' ) ) {
- return new WP_Error( 'woocommerce_rest_cannot_view', __( 'Sorry, you cannot list resources.', 'woocommerce' ), array( 'status' => rest_authorization_required_code() ) );
- }
- return true;
- }
- /**
- * Check if a given request has access to read a payment gateway.
- *
- * @param WP_REST_Request $request Full details about the request.
- * @return WP_Error|boolean
- */
- public function get_item_permissions_check( $request ) {
- if ( ! wc_rest_check_manager_permissions( 'payment_gateways', 'read' ) ) {
- return new WP_Error( 'woocommerce_rest_cannot_view', __( 'Sorry, you cannot view this resource.', 'woocommerce' ), array( 'status' => rest_authorization_required_code() ) );
- }
- return true;
- }
- /**
- * Check whether a given request has permission to edit payment gateways.
- *
- * @param WP_REST_Request $request Full details about the request.
- * @return WP_Error|boolean
- */
- public function update_items_permissions_check( $request ) {
- if ( ! wc_rest_check_manager_permissions( 'payment_gateways', 'edit' ) ) {
- return new WP_Error( 'woocommerce_rest_cannot_edit', __( 'Sorry, you are not allowed to edit this resource.', 'woocommerce' ), array( 'status' => rest_authorization_required_code() ) );
- }
- return true;
- }
- /**
- * Get payment gateways.
- *
- * @param WP_REST_Request $request Full details about the request.
- * @return WP_Error|WP_REST_Response
- */
- public function get_items( $request ) {
- $payment_gateways = WC()->payment_gateways->payment_gateways();
- $response = array();
- foreach ( $payment_gateways as $payment_gateway_id => $payment_gateway ) {
- $payment_gateway->id = $payment_gateway_id;
- $gateway = $this->prepare_item_for_response( $payment_gateway, $request );
- $gateway = $this->prepare_response_for_collection( $gateway );
- $response[] = $gateway;
- }
- return rest_ensure_response( $response );
- }
- /**
- * Get a single payment gateway.
- *
- * @param WP_REST_Request $request Request data.
- * @return WP_REST_Response|WP_Error
- */
- public function get_item( $request ) {
- $gateway = $this->get_gateway( $request );
- if ( is_null( $gateway ) ) {
- return new WP_Error( 'woocommerce_rest_payment_gateway_invalid', __( 'Resource does not exist.', 'woocommerce' ), array( 'status' => 404 ) );
- }
- $gateway = $this->prepare_item_for_response( $gateway, $request );
- return rest_ensure_response( $gateway );
- }
- /**
- * Update A Single Payment Method.
- *
- * @param WP_REST_Request $request Request data.
- * @return WP_REST_Response|WP_Error
- */
- public function update_item( $request ) {
- $gateway = $this->get_gateway( $request );
- if ( is_null( $gateway ) ) {
- return new WP_Error( 'woocommerce_rest_payment_gateway_invalid', __( 'Resource does not exist.', 'woocommerce' ), array( 'status' => 404 ) );
- }
- // Get settings.
- $gateway->init_form_fields();
- $settings = $gateway->settings;
- // Update settings.
- if ( isset( $request['settings'] ) ) {
- $errors_found = false;
- foreach ( $gateway->form_fields as $key => $field ) {
- if ( isset( $request['settings'][ $key ] ) ) {
- if ( is_callable( array( $this, 'validate_setting_' . $field['type'] . '_field' ) ) ) {
- $value = $this->{'validate_setting_' . $field['type'] . '_field'}( $request['settings'][ $key ], $field );
- } else {
- $value = $this->validate_setting_text_field( $request['settings'][ $key ], $field );
- }
- if ( is_wp_error( $value ) ) {
- $errors_found = true;
- break;
- }
- $settings[ $key ] = $value;
- }
- }
- if ( $errors_found ) {
- return new WP_Error( 'rest_setting_value_invalid', __( 'An invalid setting value was passed.', 'woocommerce' ), array( 'status' => 400 ) );
- }
- }
- // Update if this method is enabled or not.
- if ( isset( $request['enabled'] ) ) {
- $settings['enabled'] = wc_bool_to_string( $request['enabled'] );
- $gateway->enabled = $settings['enabled'];
- }
- // Update title.
- if ( isset( $request['title'] ) ) {
- $settings['title'] = $request['title'];
- $gateway->title = $settings['title'];
- }
- // Update description.
- if ( isset( $request['description'] ) ) {
- $settings['description'] = $request['description'];
- $gateway->description = $settings['description'];
- }
- // Update options.
- $gateway->settings = $settings;
- update_option( $gateway->get_option_key(), apply_filters( 'woocommerce_gateway_' . $gateway->id . '_settings_values', $settings, $gateway ) );
- // Update order.
- if ( isset( $request['order'] ) ) {
- $order = (array) get_option( 'woocommerce_gateway_order' );
- $order[ $gateway->id ] = $request['order'];
- update_option( 'woocommerce_gateway_order', $order );
- $gateway->order = absint( $request['order'] );
- }
- $gateway = $this->prepare_item_for_response( $gateway, $request );
- return rest_ensure_response( $gateway );
- }
- /**
- * Get a gateway based on the current request object.
- *
- * @param WP_REST_Request $request Request data.
- * @return WP_REST_Response|null
- */
- public function get_gateway( $request ) {
- $gateway = null;
- $payment_gateways = WC()->payment_gateways->payment_gateways();
- foreach ( $payment_gateways as $payment_gateway_id => $payment_gateway ) {
- if ( $request['id'] !== $payment_gateway_id ) {
- continue;
- }
- $payment_gateway->id = $payment_gateway_id;
- $gateway = $payment_gateway;
- }
- return $gateway;
- }
- /**
- * Prepare a payment gateway for response.
- *
- * @param WC_Payment_Gateway $gateway Payment gateway object.
- * @param WP_REST_Request $request Request object.
- * @return WP_REST_Response $response Response data.
- */
- public function prepare_item_for_response( $gateway, $request ) {
- $order = (array) get_option( 'woocommerce_gateway_order' );
- $item = array(
- 'id' => $gateway->id,
- 'title' => $gateway->title,
- 'description' => $gateway->description,
- 'order' => isset( $order[ $gateway->id ] ) ? $order[ $gateway->id ] : '',
- 'enabled' => ( 'yes' === $gateway->enabled ),
- 'method_title' => $gateway->get_method_title(),
- 'method_description' => $gateway->get_method_description(),
- 'settings' => $this->get_settings( $gateway ),
- );
- $context = ! empty( $request['context'] ) ? $request['context'] : 'view';
- $data = $this->add_additional_fields_to_object( $item, $request );
- $data = $this->filter_response_by_context( $data, $context );
- $response = rest_ensure_response( $data );
- $response->add_links( $this->prepare_links( $gateway, $request ) );
- /**
- * Filter payment gateway objects returned from the REST API.
- *
- * @param WP_REST_Response $response The response object.
- * @param WC_Payment_Gateway $gateway Payment gateway object.
- * @param WP_REST_Request $request Request object.
- */
- return apply_filters( 'woocommerce_rest_prepare_payment_gateway', $response, $gateway, $request );
- }
- /**
- * Return settings associated with this payment gateway.
- *
- * @param WC_Payment_Gateway $gateway Gateway data.
- *
- * @return array
- */
- public function get_settings( $gateway ) {
- $settings = array();
- $gateway->init_form_fields();
- foreach ( $gateway->form_fields as $id => $field ) {
- // Make sure we at least have a title and type.
- if ( empty( $field['title'] ) || empty( $field['type'] ) ) {
- continue;
- }
- // Ignore 'title' settings/fields -- they are UI only.
- if ( 'title' === $field['type'] ) {
- continue;
- }
- // Ignore 'enabled' and 'description' which get included elsewhere.
- if ( in_array( $id, array( 'enabled', 'description' ), true ) ) {
- continue;
- }
- $data = array(
- 'id' => $id,
- 'label' => empty( $field['label'] ) ? $field['title'] : $field['label'],
- 'description' => empty( $field['description'] ) ? '' : $field['description'],
- 'type' => $field['type'],
- 'value' => empty( $gateway->settings[ $id ] ) ? '' : $gateway->settings[ $id ],
- 'default' => empty( $field['default'] ) ? '' : $field['default'],
- 'tip' => empty( $field['description'] ) ? '' : $field['description'],
- 'placeholder' => empty( $field['placeholder'] ) ? '' : $field['placeholder'],
- );
- if ( ! empty( $field['options'] ) ) {
- $data['options'] = $field['options'];
- }
- $settings[ $id ] = $data;
- }
- return $settings;
- }
- /**
- * Prepare links for the request.
- *
- * @param WC_Payment_Gateway $gateway Payment gateway object.
- * @param WP_REST_Request $request Request object.
- * @return array
- */
- protected function prepare_links( $gateway, $request ) {
- $links = array(
- 'self' => array(
- 'href' => rest_url( sprintf( '/%s/%s/%s', $this->namespace, $this->rest_base, $gateway->id ) ),
- ),
- 'collection' => array(
- 'href' => rest_url( sprintf( '/%s/%s', $this->namespace, $this->rest_base ) ),
- ),
- );
- return $links;
- }
- /**
- * Get the payment gateway schema, conforming to JSON Schema.
- *
- * @return array
- */
- public function get_item_schema() {
- $schema = array(
- '$schema' => 'http://json-schema.org/draft-04/schema#',
- 'title' => 'payment_gateway',
- 'type' => 'object',
- 'properties' => array(
- 'id' => array(
- 'description' => __( 'Payment gateway ID.', 'woocommerce' ),
- 'type' => 'string',
- 'context' => array( 'view', 'edit' ),
- 'readonly' => true,
- ),
- 'title' => array(
- 'description' => __( 'Payment gateway title on checkout.', 'woocommerce' ),
- 'type' => 'string',
- 'context' => array( 'view', 'edit' ),
- ),
- 'description' => array(
- 'description' => __( 'Payment gateway description on checkout.', 'woocommerce' ),
- 'type' => 'string',
- 'context' => array( 'view', 'edit' ),
- ),
- 'order' => array(
- 'description' => __( 'Payment gateway sort order.', 'woocommerce' ),
- 'type' => 'integer',
- 'context' => array( 'view', 'edit' ),
- 'arg_options' => array(
- 'sanitize_callback' => 'absint',
- ),
- ),
- 'enabled' => array(
- 'description' => __( 'Payment gateway enabled status.', 'woocommerce' ),
- 'type' => 'boolean',
- 'context' => array( 'view', 'edit' ),
- ),
- 'method_title' => array(
- 'description' => __( 'Payment gateway method title.', 'woocommerce' ),
- 'type' => 'string',
- 'context' => array( 'view', 'edit' ),
- 'readonly' => true,
- ),
- 'method_description' => array(
- 'description' => __( 'Payment gateway method description.', 'woocommerce' ),
- 'type' => 'string',
- 'context' => array( 'view', 'edit' ),
- 'readonly' => true,
- ),
- 'settings' => array(
- 'description' => __( 'Payment gateway settings.', 'woocommerce' ),
- 'type' => 'object',
- 'context' => array( 'view', 'edit' ),
- 'properties' => array(
- 'id' => array(
- 'description' => __( 'A unique identifier for the setting.', 'woocommerce' ),
- 'type' => 'string',
- 'context' => array( 'view', 'edit' ),
- 'readonly' => true,
- ),
- 'label' => array(
- 'description' => __( 'A human readable label for the setting used in interfaces.', 'woocommerce' ),
- 'type' => 'string',
- 'context' => array( 'view', 'edit' ),
- 'readonly' => true,
- ),
- 'description' => array(
- 'description' => __( 'A human readable description for the setting used in interfaces.', 'woocommerce' ),
- 'type' => 'string',
- 'context' => array( 'view', 'edit' ),
- 'readonly' => true,
- ),
- 'type' => array(
- 'description' => __( 'Type of setting.', 'woocommerce' ),
- 'type' => 'string',
- 'context' => array( 'view', 'edit' ),
- 'enum' => array( 'text', 'email', 'number', 'color', 'password', 'textarea', 'select', 'multiselect', 'radio', 'image_width', 'checkbox' ),
- 'readonly' => true,
- ),
- 'value' => array(
- 'description' => __( 'Setting value.', 'woocommerce' ),
- 'type' => 'string',
- 'context' => array( 'view', 'edit' ),
- ),
- 'default' => array(
- 'description' => __( 'Default value for the setting.', 'woocommerce' ),
- 'type' => 'string',
- 'context' => array( 'view', 'edit' ),
- 'readonly' => true,
- ),
- 'tip' => array(
- 'description' => __( 'Additional help text shown to the user about the setting.', 'woocommerce' ),
- 'type' => 'string',
- 'context' => array( 'view', 'edit' ),
- 'readonly' => true,
- ),
- 'placeholder' => array(
- 'description' => __( 'Placeholder text to be displayed in text inputs.', 'woocommerce' ),
- 'type' => 'string',
- 'context' => array( 'view', 'edit' ),
- 'readonly' => true,
- ),
- ),
- ),
- ),
- );
- return $this->add_additional_fields_schema( $schema );
- }
- /**
- * Get any query params needed.
- *
- * @return array
- */
- public function get_collection_params() {
- return array(
- 'context' => $this->get_context_param( array( 'default' => 'view' ) ),
- );
- }
- }
|