82 lines
2.2 KiB
PHP
82 lines
2.2 KiB
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* Class WC_REST_Payments_Timeline_Controller
|
||
|
|
*
|
||
|
|
* @package WooCommerce\Payments\Admin
|
||
|
|
*/
|
||
|
|
|
||
|
|
use WCPay\Core\Server\Request\Refund_Charge;
|
||
|
|
use WCPay\Exceptions\API_Exception;
|
||
|
|
|
||
|
|
defined( 'ABSPATH' ) || exit;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* REST controller for the timeline, which includes all events related to an intention.
|
||
|
|
*/
|
||
|
|
class WC_REST_Payments_Refunds_Controller extends WC_Payments_REST_Controller {
|
||
|
|
/**
|
||
|
|
* Endpoint path.
|
||
|
|
*
|
||
|
|
* @var string
|
||
|
|
*/
|
||
|
|
protected $rest_base = 'payments/refund';
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Configure REST API routes.
|
||
|
|
*/
|
||
|
|
public function register_routes() {
|
||
|
|
register_rest_route(
|
||
|
|
$this->namespace,
|
||
|
|
'/' . $this->rest_base,
|
||
|
|
[
|
||
|
|
'methods' => WP_REST_Server::CREATABLE,
|
||
|
|
'callback' => [ $this, 'process_refund' ],
|
||
|
|
'permission_callback' => [ $this, 'check_permission' ],
|
||
|
|
]
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Makes direct refund bypassing any order checks.
|
||
|
|
*
|
||
|
|
* @internal Not intended for usage in integrations or outside of WooCommerce Payments.
|
||
|
|
* @param WP_REST_Request $request Full data about the request.
|
||
|
|
*/
|
||
|
|
public function process_refund( $request ) {
|
||
|
|
$order_id = $request->get_param( 'order_id' );
|
||
|
|
$charge_id = $request->get_param( 'charge_id' );
|
||
|
|
$amount = $request->get_param( 'amount' );
|
||
|
|
$reason = $request->get_param( 'reason' );
|
||
|
|
|
||
|
|
if ( $order_id ) {
|
||
|
|
$order = wc_get_order( $order_id );
|
||
|
|
if ( $order ) {
|
||
|
|
$result = wc_create_refund(
|
||
|
|
[
|
||
|
|
'amount' => WC_Payments_Utils::interpret_stripe_amount( $amount, $order->get_currency() ),
|
||
|
|
'reason' => $reason,
|
||
|
|
'order_id' => $order_id,
|
||
|
|
'refund_payment' => true,
|
||
|
|
'restock_items' => true,
|
||
|
|
]
|
||
|
|
);
|
||
|
|
|
||
|
|
return rest_ensure_response( $result );
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
try {
|
||
|
|
$refund_request = Refund_Charge::create( $charge_id );
|
||
|
|
$refund_request->set_charge( $charge_id );
|
||
|
|
$refund_request->set_amount( $amount );
|
||
|
|
$refund_request->set_reason( $reason );
|
||
|
|
$refund_request->set_source( 'transaction_details_no_order' );
|
||
|
|
$response = $refund_request->send();
|
||
|
|
|
||
|
|
return rest_ensure_response( $response );
|
||
|
|
} catch ( API_Exception $e ) {
|
||
|
|
return rest_ensure_response( new WP_Error( 'wcpay_refund_payment', $e->getMessage() ) );
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|