count-payments-endpoint.php
2 years ago
delete-payment-endpoint.php
2 years ago
delete-payments-endpoint.php
2 years ago
gateway-endpoint.php
2 years ago
receive-payment.php
2 years ago
receive-payments.php
2 years ago
rest-api-controller.php
2 years ago
gateway-endpoint.php
37 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace JFB_Modules\Gateways\Rest_Api; |
| 5 | |
| 6 | use JFB_Components\Rest_Api\Dynamic_Rest_Url_Trait; |
| 7 | use JFB_Components\Rest_Api\Rest_Api_Endpoint_Base; |
| 8 | |
| 9 | // If this file is called directly, abort. |
| 10 | if ( ! defined( 'WPINC' ) ) { |
| 11 | die; |
| 12 | } |
| 13 | |
| 14 | abstract class Gateway_Endpoint extends Rest_Api_Endpoint_Base { |
| 15 | |
| 16 | use Dynamic_Rest_Url_Trait; |
| 17 | |
| 18 | abstract public static function gateway_rest_base(): string; |
| 19 | |
| 20 | abstract public static function gateway_id(): string; |
| 21 | |
| 22 | public static function get_rest_base() { |
| 23 | return '(?P<gateway>[\w\-]+)/' . static::gateway_rest_base(); |
| 24 | } |
| 25 | |
| 26 | public function get_common_args(): array { |
| 27 | return array( |
| 28 | 'gateway' => array( |
| 29 | 'validate_callback' => function ( $param, $request, $key ) { |
| 30 | return static::gateway_id() === $param; |
| 31 | }, |
| 32 | ), |
| 33 | ); |
| 34 | } |
| 35 | |
| 36 | } |
| 37 |