| Total Complexity | 59 |
| Total Lines | 402 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
Complex classes like Gateway often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Gateway, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 21 | class Gateway extends Core_Gateway { |
||
| 22 | /** |
||
| 23 | * Slug of this gateway |
||
| 24 | * |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | const SLUG = 'mollie'; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Meta key for customer ID. |
||
| 31 | * |
||
| 32 | * @var string |
||
| 33 | */ |
||
| 34 | private $meta_key_customer_id = '_pronamic_pay_mollie_customer_id'; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Constructs and initializes an Mollie gateway |
||
| 38 | * |
||
| 39 | * @param Config $config |
||
| 40 | */ |
||
| 41 | public function __construct( Config $config ) { |
||
| 42 | parent::__construct( $config ); |
||
| 43 | |||
| 44 | $this->supports = array( |
||
| 45 | 'payment_status_request', |
||
| 46 | 'recurring_direct_debit', |
||
| 47 | 'recurring_credit_card', |
||
| 48 | 'recurring', |
||
| 49 | ); |
||
| 50 | |||
| 51 | $this->set_method( Core_Gateway::METHOD_HTTP_REDIRECT ); |
||
| 52 | $this->set_has_feedback( true ); |
||
| 53 | $this->set_amount_minimum( 1.20 ); |
||
| 54 | $this->set_slug( self::SLUG ); |
||
| 55 | |||
| 56 | $this->client = new Client( $config->api_key ); |
||
| 57 | $this->client->set_mode( $config->mode ); |
||
| 58 | |||
| 59 | if ( 'test' === $config->mode ) { |
||
| 60 | $this->meta_key_customer_id = '_pronamic_pay_mollie_customer_id_test'; |
||
| 61 | } |
||
| 62 | |||
| 63 | // Actions. |
||
| 64 | add_action( 'pronamic_payment_status_update', array( $this, 'move_customer_id_to_wp_user' ), 99, 1 ); |
||
| 65 | } |
||
| 66 | |||
| 67 | /** |
||
| 68 | * Get issuers |
||
| 69 | * |
||
| 70 | * @see Pronamic_WP_Pay_Gateway::get_issuers() |
||
| 71 | */ |
||
| 72 | public function get_issuers() { |
||
| 73 | $groups = array(); |
||
| 74 | |||
| 75 | $result = $this->client->get_issuers(); |
||
| 76 | |||
| 77 | if ( ! $result ) { |
||
| 78 | $this->error = $this->client->get_error(); |
||
| 79 | |||
| 80 | return $groups; |
||
| 81 | } |
||
| 82 | |||
| 83 | $groups[] = array( |
||
| 84 | 'options' => $result, |
||
| 85 | ); |
||
| 86 | |||
| 87 | return $groups; |
||
| 88 | } |
||
| 89 | |||
| 90 | public function get_issuer_field() { |
||
| 99 | ); |
||
| 100 | } |
||
| 101 | } |
||
| 102 | |||
| 103 | /** |
||
| 104 | * Get available payment methods. |
||
| 105 | * |
||
| 106 | * @see Core_Gateway::get_available_payment_methods() |
||
| 107 | */ |
||
| 108 | public function get_available_payment_methods() { |
||
| 109 | $payment_methods = array(); |
||
| 110 | |||
| 111 | // Set recurring types to get payment methods for. |
||
| 112 | $recurring_types = array( null, Recurring::RECURRING, Recurring::FIRST ); |
||
| 113 | |||
| 114 | $results = array(); |
||
| 115 | |||
| 116 | foreach ( $recurring_types as $recurring_type ) { |
||
| 117 | // Get active payment methods for Mollie account. |
||
| 118 | $result = $this->client->get_payment_methods( $recurring_type ); |
||
| 119 | |||
| 120 | if ( ! $result ) { |
||
| 121 | $this->error = $this->client->get_error(); |
||
| 122 | |||
| 123 | break; |
||
| 124 | } |
||
| 125 | |||
| 126 | if ( Recurring::FIRST === $recurring_type ) { |
||
| 127 | foreach ( $result as $method => $title ) { |
||
| 128 | unset( $result[ $method ] ); |
||
| 129 | |||
| 130 | // Get WordPress payment method for direct debit method. |
||
| 131 | $method = Methods::transform_gateway_method( $method ); |
||
| 132 | $payment_method = array_search( $method, PaymentMethods::get_recurring_methods(), true ); |
||
| 133 | |||
| 134 | if ( $payment_method ) { |
||
| 135 | $results[ $payment_method ] = $title; |
||
| 136 | } |
||
| 137 | } |
||
| 138 | } |
||
| 139 | |||
| 140 | $results = array_merge( $results, $result ); |
||
| 141 | } |
||
| 142 | |||
| 143 | // Transform to WordPress payment methods. |
||
| 144 | foreach ( $results as $method => $title ) { |
||
| 145 | if ( PaymentMethods::is_recurring_method( $method ) ) { |
||
| 146 | $payment_method = $method; |
||
| 147 | } else { |
||
| 148 | $payment_method = Methods::transform_gateway_method( $method ); |
||
| 149 | } |
||
| 150 | |||
| 151 | if ( $payment_method ) { |
||
| 152 | $payment_methods[] = $payment_method; |
||
| 153 | } |
||
| 154 | } |
||
| 155 | |||
| 156 | $payment_methods = array_unique( $payment_methods ); |
||
| 157 | |||
| 158 | return $payment_methods; |
||
| 159 | } |
||
| 160 | |||
| 161 | /** |
||
| 162 | * Get supported payment methods |
||
| 163 | * |
||
| 164 | * @see Pronamic_WP_Pay_Gateway::get_supported_payment_methods() |
||
| 165 | */ |
||
| 166 | public function get_supported_payment_methods() { |
||
| 181 | ); |
||
| 182 | } |
||
| 183 | |||
| 184 | /** |
||
| 185 | * Get webhook URL for Mollie. |
||
| 186 | * |
||
| 187 | * @return string |
||
| 188 | */ |
||
| 189 | private function get_webhook_url() { |
||
| 190 | $url = home_url( '/' ); |
||
| 191 | |||
| 192 | $host = wp_parse_url( $url, PHP_URL_HOST ); |
||
| 193 | |||
| 194 | if ( 'localhost' === $host ) { |
||
| 195 | // Mollie doesn't allow localhost |
||
| 196 | return null; |
||
| 197 | } elseif ( '.dev' === substr( $host, -4 ) ) { |
||
| 198 | // Mollie doesn't allow the TLD .dev |
||
| 199 | return null; |
||
| 200 | } |
||
| 201 | |||
| 202 | $url = add_query_arg( 'mollie_webhook', '', $url ); |
||
| 203 | |||
| 204 | return $url; |
||
| 205 | } |
||
| 206 | |||
| 207 | /** |
||
| 208 | * Start |
||
| 209 | * |
||
| 210 | * @see Pronamic_WP_Pay_Gateway::start() |
||
| 211 | */ |
||
| 212 | public function start( Payment $payment ) { |
||
| 277 | } |
||
| 278 | } |
||
| 279 | |||
| 280 | /** |
||
| 281 | * Update status of the specified payment |
||
| 282 | * |
||
| 283 | * @param Payment $payment |
||
| 284 | */ |
||
| 285 | public function update_status( Payment $payment ) { |
||
| 315 | } |
||
| 316 | } |
||
| 317 | } |
||
| 318 | |||
| 319 | /** |
||
| 320 | * Get Mollie customer ID for payment. |
||
| 321 | * |
||
| 322 | * @param Payment $payment Payment. |
||
| 323 | * |
||
| 324 | * @return bool|string |
||
| 325 | */ |
||
| 326 | private function get_customer_id_for_payment( Payment $payment ) { |
||
| 363 | } |
||
| 364 | |||
| 365 | /** |
||
| 366 | * Get Mollie customer ID by the specified WordPress user ID. |
||
| 367 | * |
||
| 368 | * @param int $user_id WordPress user ID. |
||
| 369 | * |
||
| 370 | * @return string |
||
| 371 | */ |
||
| 372 | private function get_customer_id_by_wp_user_id( $user_id ) { |
||
| 373 | if ( empty( $user_id ) ) { |
||
| 374 | return false; |
||
| 375 | } |
||
| 376 | |||
| 377 | return get_user_meta( $user_id, $this->meta_key_customer_id, true ); |
||
| 378 | } |
||
| 379 | |||
| 380 | /** |
||
| 381 | * Update Mollie customer ID meta for WordPress user. |
||
| 382 | * |
||
| 383 | * @param int $user_id WordPress user ID. |
||
| 384 | * @param string $customer_id Mollie Customer ID. |
||
| 385 | * |
||
| 386 | * @return bool |
||
| 387 | */ |
||
| 388 | private function update_wp_user_customer_id( $user_id, $customer_id ) { |
||
| 394 | } |
||
| 395 | |||
| 396 | /** |
||
| 397 | * Move Mollie customer ID from subscription meta to WordPress user meta. |
||
| 398 | * |
||
| 399 | * @param Payment $payment Payment. |
||
| 400 | * |
||
| 401 | * @return void |
||
| 402 | */ |
||
| 403 | public function move_customer_id_to_wp_user( Payment $payment ) { |
||
| 423 | } |
||
| 424 | } |
||
| 426 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths