traits
2 years ago
base-action.php
2 years ago
capture-payment-action.php
2 years ago
get-token.php
2 years ago
pay-now-action.php
2 years ago
capture-payment-action.php
52 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace JFB_Modules\Gateways\Paypal\Api_Actions; |
| 5 | |
| 6 | use Jet_Form_Builder\Exceptions\Gateway_Exception; |
| 7 | |
| 8 | // If this file is called directly, abort. |
| 9 | if ( ! defined( 'WPINC' ) ) { |
| 10 | die; |
| 11 | } |
| 12 | |
| 13 | class Capture_Payment_Action extends Base_Action { |
| 14 | |
| 15 | const SLUG = 'CAPTURE_PAYMENT'; |
| 16 | |
| 17 | protected $order_id; |
| 18 | |
| 19 | public function action_slug() { |
| 20 | return self::SLUG; |
| 21 | } |
| 22 | |
| 23 | public function action_endpoint() { |
| 24 | return "v2/checkout/orders/{$this->order_id}/capture"; |
| 25 | } |
| 26 | |
| 27 | public function action_headers() { |
| 28 | return array( |
| 29 | 'Content-Type' => 'application/json', |
| 30 | ); |
| 31 | } |
| 32 | |
| 33 | public function action_body() { |
| 34 | return array(); |
| 35 | } |
| 36 | |
| 37 | public function set_order_id( $order_id ) { |
| 38 | $this->order_id = $order_id; |
| 39 | |
| 40 | return $this; |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * @throws Gateway_Exception |
| 45 | */ |
| 46 | public function before_make_request() { |
| 47 | if ( empty( $this->order_id ) ) { |
| 48 | throw new Gateway_Exception( 'order_id is not set.' ); |
| 49 | } |
| 50 | } |
| 51 | } |
| 52 |