Total Complexity | 58 |
Total Lines | 392 |
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, 'copy_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 | /** |
||
91 | * Get available payment methods. |
||
92 | * |
||
93 | * @see Core_Gateway::get_available_payment_methods() |
||
94 | */ |
||
95 | public function get_available_payment_methods() { |
||
96 | $payment_methods = array(); |
||
97 | |||
98 | // Set recurring types to get payment methods for. |
||
99 | $recurring_types = array( null, Recurring::RECURRING, Recurring::FIRST ); |
||
100 | |||
101 | $results = array(); |
||
102 | |||
103 | foreach ( $recurring_types as $recurring_type ) { |
||
104 | // Get active payment methods for Mollie account. |
||
105 | $result = $this->client->get_payment_methods( $recurring_type ); |
||
106 | |||
107 | if ( ! $result ) { |
||
108 | $this->error = $this->client->get_error(); |
||
109 | |||
110 | break; |
||
111 | } |
||
112 | |||
113 | if ( Recurring::FIRST === $recurring_type ) { |
||
114 | foreach ( $result as $method => $title ) { |
||
115 | unset( $result[ $method ] ); |
||
116 | |||
117 | // Get WordPress payment method for direct debit method. |
||
118 | $method = Methods::transform_gateway_method( $method ); |
||
119 | $payment_method = array_search( $method, PaymentMethods::get_recurring_methods(), true ); |
||
120 | |||
121 | if ( $payment_method ) { |
||
122 | $results[ $payment_method ] = $title; |
||
123 | } |
||
124 | } |
||
125 | } |
||
126 | |||
127 | $results = array_merge( $results, $result ); |
||
128 | } |
||
129 | |||
130 | // Transform to WordPress payment methods. |
||
131 | foreach ( $results as $method => $title ) { |
||
132 | if ( PaymentMethods::is_recurring_method( $method ) ) { |
||
133 | $payment_method = $method; |
||
134 | } else { |
||
135 | $payment_method = Methods::transform_gateway_method( $method ); |
||
136 | } |
||
137 | |||
138 | if ( $payment_method ) { |
||
139 | $payment_methods[] = $payment_method; |
||
140 | } |
||
141 | } |
||
142 | |||
143 | $payment_methods = array_unique( $payment_methods ); |
||
144 | |||
145 | return $payment_methods; |
||
146 | } |
||
147 | |||
148 | /** |
||
149 | * Get supported payment methods |
||
150 | * |
||
151 | * @see Pronamic_WP_Pay_Gateway::get_supported_payment_methods() |
||
152 | */ |
||
153 | public function get_supported_payment_methods() { |
||
168 | ); |
||
169 | } |
||
170 | |||
171 | /** |
||
172 | * Get webhook URL for Mollie. |
||
173 | * |
||
174 | * @return string |
||
175 | */ |
||
176 | private function get_webhook_url() { |
||
177 | $url = home_url( '/' ); |
||
178 | |||
179 | $host = wp_parse_url( $url, PHP_URL_HOST ); |
||
180 | |||
181 | if ( 'localhost' === $host ) { |
||
182 | // Mollie doesn't allow localhost. |
||
183 | return null; |
||
184 | } elseif ( '.dev' === substr( $host, -4 ) ) { |
||
185 | // Mollie doesn't allow the .dev TLD. |
||
186 | return null; |
||
187 | } elseif ( '.local' === substr( $host, -6 ) ) { |
||
188 | // Mollie doesn't allow the .local TLD. |
||
189 | return null; |
||
190 | } |
||
191 | |||
192 | $url = add_query_arg( 'mollie_webhook', '', $url ); |
||
193 | |||
194 | return $url; |
||
195 | } |
||
196 | |||
197 | /** |
||
198 | * Start |
||
199 | * |
||
200 | * @see Pronamic_WP_Pay_Gateway::start() |
||
201 | */ |
||
202 | public function start( Payment $payment ) { |
||
267 | } |
||
268 | } |
||
269 | |||
270 | /** |
||
271 | * Update status of the specified payment |
||
272 | * |
||
273 | * @param Payment $payment |
||
274 | */ |
||
275 | public function update_status( Payment $payment ) { |
||
305 | } |
||
306 | } |
||
307 | } |
||
308 | |||
309 | /** |
||
310 | * Get Mollie customer ID for payment. |
||
311 | * |
||
312 | * @param Payment $payment Payment. |
||
313 | * |
||
314 | * @return bool|string |
||
315 | */ |
||
316 | private function get_customer_id_for_payment( Payment $payment ) { |
||
317 | // Get Mollie customer ID from user meta. |
||
318 | $customer_id = $this->get_customer_id_by_wp_user_id( $payment->user_id ); |
||
319 | |||
320 | $subscription = $payment->get_subscription(); |
||
321 | |||
322 | // Get customer ID from subscription meta. |
||
323 | if ( $subscription ) { |
||
324 | $subscription_customer_id = $subscription->get_meta( 'mollie_customer_id' ); |
||
325 | |||
326 | // Try to get (legacy) customer ID from first payment. |
||
327 | if ( empty( $subscription_customer_id ) && $subscription->get_first_payment() ) { |
||
328 | $first_payment = $subscription->get_first_payment(); |
||
329 | |||
330 | $subscription_customer_id = $first_payment->get_meta( 'mollie_customer_id' ); |
||
331 | } |
||
332 | |||
333 | if ( ! empty( $subscription_customer_id ) ) { |
||
334 | $customer_id = $subscription_customer_id; |
||
335 | } |
||
336 | } |
||
337 | |||
338 | // Create new customer if the customer does not exist at Mollie. |
||
339 | if ( ( empty( $customer_id ) || ! $this->client->get_customer( $customer_id ) ) && Core_Recurring::RECURRING !== $payment->recurring_type ) { |
||
340 | $customer_id = $this->client->create_customer( $payment->get_email(), $payment->get_customer_name() ); |
||
341 | |||
342 | $this->update_wp_user_customer_id( $payment->user_id, $customer_id ); |
||
343 | } |
||
344 | |||
345 | // Store customer ID in subscription meta. |
||
346 | if ( $subscription && empty( $subscription_customer_id ) && ! empty( $customer_id ) ) { |
||
347 | $subscription->set_meta( 'mollie_customer_id', $customer_id ); |
||
348 | } |
||
349 | |||
350 | // Copy customer ID from subscription to user meta. |
||
351 | $this->copy_customer_id_to_wp_user( $payment ); |
||
352 | |||
353 | return $customer_id; |
||
354 | } |
||
355 | |||
356 | /** |
||
357 | * Get Mollie customer ID by the specified WordPress user ID. |
||
358 | * |
||
359 | * @param int $user_id WordPress user ID. |
||
360 | * |
||
361 | * @return string |
||
362 | */ |
||
363 | private function get_customer_id_by_wp_user_id( $user_id ) { |
||
364 | if ( empty( $user_id ) ) { |
||
365 | return false; |
||
366 | } |
||
367 | |||
368 | return get_user_meta( $user_id, $this->meta_key_customer_id, true ); |
||
369 | } |
||
370 | |||
371 | /** |
||
372 | * Update Mollie customer ID meta for WordPress user. |
||
373 | * |
||
374 | * @param int $user_id WordPress user ID. |
||
375 | * @param string $customer_id Mollie Customer ID. |
||
376 | * |
||
377 | * @return bool |
||
378 | */ |
||
379 | private function update_wp_user_customer_id( $user_id, $customer_id ) { |
||
385 | } |
||
386 | |||
387 | /** |
||
388 | * Copy Mollie customer ID from subscription meta to WordPress user meta. |
||
389 | * |
||
390 | * @param Payment $payment Payment. |
||
391 | * |
||
392 | * @return void |
||
393 | */ |
||
394 | public function copy_customer_id_to_wp_user( Payment $payment ) { |
||
413 | } |
||
414 | } |
||
415 | } |
||
416 |