class-sv-wc-api-base.php
17.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
<?php
/**
* WooCommerce Plugin Framework
*
* This source file is subject to the GNU General Public License v3.0
* that is bundled with this package in the file license.txt.
* It is also available through the world-wide-web at this URL:
* http://www.gnu.org/licenses/gpl-3.0.html
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@skyverge.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade the plugin to newer
* versions in the future. If you wish to customize the plugin for your
* needs please refer to http://www.skyverge.com
*
* @package SkyVerge/WooCommerce/API
* @author SkyVerge
* @copyright Copyright (c) 2013-2016, SkyVerge, Inc.
* @license http://www.gnu.org/licenses/gpl-3.0.html GNU General Public License v3.0
*/
defined( 'ABSPATH' ) or exit;
if ( ! class_exists( 'SV_WC_API_Base' ) ) :
/**
* # WooCommerce Plugin Framework API Base Class
*
* This class provides a standardized framework for constructing an API wrapper
* to external services. It is designed to be extremely flexible.
*
* @version 2.2.0
*/
abstract class SV_WC_API_Base {
/** @var string request method, defaults to POST */
protected $request_method = 'POST';
/** @var string URI used for the request */
protected $request_uri;
/** @var array request headers */
protected $request_headers = array();
/** @var string request user-agent */
protected $request_user_agent;
/** @var string request HTTP version, defaults to 1.0 */
protected $request_http_version = '1.0';
/** @var string request duration */
protected $request_duration;
/** @var object request */
protected $request;
/** @var string response code */
protected $response_code;
/** @var string response message */
protected $response_message;
/** @var array response headers */
protected $response_headers;
/** @var string raw response body */
protected $raw_response_body;
/** @var string response handler class name */
protected $response_handler;
/** @var object response */
protected $response;
/**
* Perform the request and return the parsed response
*
* @since 2.2.0
* @param object $request class instance which implements \SV_WC_API_Request
* @throws Exception
* @throws \SV_WC_API_Exception
* @return object class instance which implements \SV_WC_API_Response
*/
protected function perform_request( $request ) {
// ensure API is in its default state
$this->reset_response();
// save the request object
$this->request = $request;
$start_time = microtime( true );
// If this API requires TLS v1.2, force it
if ( $this->require_tls_1_2() ) {
add_action( 'http_api_curl', array( $this, 'set_tls_1_2_request' ), 10, 3 );
}
// perform the request
$response = $this->do_remote_request( $this->get_request_uri(), $this->get_request_args() );
// calculate request duration
$this->request_duration = round( microtime( true ) - $start_time, 5 );
try {
// parse & validate response
$response = $this->handle_response( $response );
} catch ( SV_WC_Plugin_Exception $e ) {
// alert other actors that a request has been made
$this->broadcast_request();
throw $e;
}
return $response;
}
/**
* Simple wrapper for wp_remote_request() so child classes can override this
* and provide their own transport mechanism if needed, e.g. a custom
* cURL implementation
*
* @since 2.2.0
* @param string $request_uri
* @param string $request_args
* @return array|WP_Error
*/
protected function do_remote_request( $request_uri, $request_args ) {
return wp_safe_remote_request( $request_uri, $request_args );
}
/**
* Handle and parse the response
*
* @since 2.2.0
* @param array|WP_Error $response response data
* @throws \SV_WC_API_Exception network issues, timeouts, API errors, etc
* @return object request class instance that implements SV_WC_API_Request
*/
protected function handle_response( $response ) {
// check for WP HTTP API specific errors (network timeout, etc)
if ( is_wp_error( $response ) ) {
throw new SV_WC_API_Exception( $response->get_error_message(), (int) $response->get_error_code() );
}
// set response data
$this->response_code = wp_remote_retrieve_response_code( $response );
$this->response_message = wp_remote_retrieve_response_message( $response );
$this->response_headers = wp_remote_retrieve_headers( $response );
$this->raw_response_body = wp_remote_retrieve_body( $response );
// allow child classes to validate response prior to parsing -- this is useful
// for checking HTTP status codes, etc.
$this->do_pre_parse_response_validation();
// parse the response body and tie it to the request
$this->response = $this->get_parsed_response( $this->raw_response_body );
// allow child classes to validate response after parsing -- this is useful
// for checking error codes/messages included in a parsed response
$this->do_post_parse_response_validation();
// fire do_action() so other actors can act on request/response data,
// primarily used for logging
$this->broadcast_request();
return $this->response;
}
/**
* Allow child classes to validate a response prior to instantiating the
* response object. Useful for checking response codes or messages, e.g.
* throw an exception if the response code is not 200.
*
* A child class implementing this method should simply return true if the response
* processing should continue, or throw a \SV_WC_API_Exception with a
* relevant error message & code to stop processing.
*
* Note: Child classes *must* sanitize the raw response body before throwing
* an exception, as it will be included in the broadcast_request() method
* which is typically used to log requests.
*
* @since 2.2.0
*/
protected function do_pre_parse_response_validation() {
// stub method
}
/**
* Allow child classes to validate a response after it has been parsed
* and instantiated. This is useful for check error codes or messages that
* exist in the parsed response.
*
* A child class implementing this method should simply return true if the response
* processing should continue, or throw a \SV_WC_API_Exception with a
* relevant error message & code to stop processing.
*
* Note: Response body sanitization is handled automatically
*
* @since 2.2.0
*/
protected function do_post_parse_response_validation() {
// stub method
}
/**
* Return the parsed response object for the request
*
* @since 2.2.0
* @param string $raw_response_body
* @return object response class instance which implements SV_WC_API_Request
*/
protected function get_parsed_response( $raw_response_body ) {
$handler_class = $this->get_response_handler();
return new $handler_class( $raw_response_body );
}
/**
* Alert other actors that a request has been performed. This is primarily used
* for request logging.
*
* @since 2.2.0
*/
protected function broadcast_request() {
$request_data = array(
'method' => $this->get_request_method(),
'uri' => $this->get_request_uri(),
'user-agent' => $this->get_request_user_agent(),
'headers' => $this->get_sanitized_request_headers(),
'body' => $this->request->to_string_safe(),
'duration' => $this->get_request_duration() . 's', // seconds
);
$response_data = array(
'code' => $this->get_response_code(),
'message' => $this->get_response_message(),
'headers' => $this->get_response_headers(),
'body' => $this->get_sanitized_response_body() ? $this->get_sanitized_response_body() : $this->get_raw_response_body(),
);
/**
* API Base Request Performed Action.
*
* Fired when an API request is performed via this base class. Plugins can
* hook into this to log request/response data.
*
* @since 2.2.0
* @param array $request_data {
* @type string $method request method, e.g. POST
* @type string $uri request URI
* @type string $user-agent
* @type string $headers request headers
* @type string $body request body
* @type string $duration in seconds
* }
* @param array $response data {
* @type string $code response HTTP code
* @type string $message response message
* @type string $headers response HTTP headers
* @type string $body response body
* }
* @param \SV_WC_API_Base $this instance
*/
do_action( 'wc_' . $this->get_api_id() . '_api_request_performed', $request_data, $response_data, $this );
}
/**
* Reset the API response members to their
*
* @since 1.0.0
*/
protected function reset_response() {
$this->response_code = null;
$this->response_message = null;
$this->response_headers = null;
$this->raw_response_body = null;
$this->response = null;
$this->request_duration = null;
}
/** Request Getters *******************************************************/
/**
* Get the request URI
*
* @since 2.2.0
* @return string
*/
protected function get_request_uri() {
// API base request URI + any request-specific path
$uri = $this->request_uri . ( $this->get_request() ? $this->get_request()->get_path() : '' );
/**
* Request URI Filter.
*
* Allow actors to filter the request URI. Note that child classes can override
* this method, which means this filter may be invoked prior to the overridden
* method.
*
* @since 4.1.0
* @param string $uri current request URI
* @param \SV_WC_API_Base class instance
*/
return apply_filters( 'wc_' . $this->get_api_id() . '_api_request_uri', $uri, $this );
}
/**
* Get the request arguments in the format required by wp_remote_request()
*
* @since 2.2.0
* @return mixed|void
*/
protected function get_request_args() {
$args = array(
'method' => $this->get_request_method(),
'timeout' => MINUTE_IN_SECONDS,
'redirection' => 0,
'httpversion' => $this->get_request_http_version(),
'sslverify' => true,
'blocking' => true,
'user-agent' => $this->get_request_user_agent(),
'headers' => $this->get_request_headers(),
'body' => $this->get_request()->to_string(),
'cookies' => array(),
);
/**
* Request arguments.
*
* Allow other actors to filter the request arguments. Note that
* child classes can override this method, which means this filter may
* not be invoked, or may be invoked prior to the overridden method
*
* @since 2.2.0
* @param array $args request arguments
* @param \SV_WC_API_Base class instance
*/
return apply_filters( 'wc_' . $this->get_api_id() . '_http_request_args', $args, $this );
}
/**
* Get the request method, POST by default
*
* @since 2.2.0
* @return string
*/
protected function get_request_method() {
// if the request object specifies the method to use, use that, otherwise use the API default
return $this->get_request() && $this->get_request()->get_method() ? $this->get_request()->get_method() : $this->request_method;
}
/**
* Get the request HTTP version, 1.1 by default
*
* @since 2.2.0
* @return string
*/
protected function get_request_http_version() {
return $this->request_http_version;
}
/**
* Get the request headers
*
* @since 2.2.0
* @return array
*/
protected function get_request_headers() {
return $this->request_headers;
}
/**
* Get sanitized request headers suitable for logging, stripped of any
* confidential information
*
* The `Authorization` header is sanitized automatically.
*
* Child classes that implement any custom authorization headers should
* override this method to perform sanitization.
*
* @since 2.2.0
* @return array
*/
protected function get_sanitized_request_headers() {
$headers = $this->get_request_headers();
if ( ! empty( $headers['Authorization'] ) ) {
$headers['Authorization'] = str_repeat( '*', strlen( $headers['Authorization'] ) );
}
return $headers;
}
/**
* Get the request user agent, defaults to:
*
* Dasherized-Plugin-Name/Plugin-Version (WooCommerce/WC-Version; WordPress/WP-Version)
*
* @since 2.2.0
* @return string
*/
protected function get_request_user_agent() {
return sprintf( '%s/%s (WooCommerce/%s; WordPress/%s)', str_replace( ' ', '-', $this->get_plugin()->get_plugin_name() ), $this->get_plugin()->get_version(), WC_VERSION, $GLOBALS['wp_version'] );
}
/**
* Get the request duration in seconds, rounded to the 5th decimal place
*
* @since 2.2.0
* @return string
*/
protected function get_request_duration() {
return $this->request_duration;
}
/** Response Getters ******************************************************/
/**
* Get the response handler class name
*
* @since 2.2.0
* @return string
*/
protected function get_response_handler() {
return $this->response_handler;
}
/**
* Get the response code
*
* @since 2.2.0
* @return string
*/
protected function get_response_code() {
return $this->response_code;
}
/**
* Get the response message
*
* @since 2.2.0
* @return string
*/
protected function get_response_message() {
return $this->response_message;
}
/**
* Get the response headers
*
* @since 2.2.0
* @return array
*/
protected function get_response_headers() {
return $this->response_headers;
}
/**
* Get the raw response body, prior to any parsing or sanitization
*
* @since 2.2.0
* @return string
*/
protected function get_raw_response_body() {
return $this->raw_response_body;
}
/**
* Get the sanitized response body, provided by the response class
* to_string_safe() method
*
* @since 2.2.0
* @return string|null
*/
protected function get_sanitized_response_body() {
return is_callable( array( $this->get_response(), 'to_string_safe' ) ) ? $this->get_response()->to_string_safe() : null;
}
/** Misc Getters ******************************************************/
/**
* Returns the most recent request object
*
* @since 2.2.0
* @see \SV_WC_API_Request
* @return object the most recent request object
*/
public function get_request() {
return $this->request;
}
/**
* Returns the most recent response object
*
* @since 2.2.0
* @see \SV_WC_API_Response
* @return object the most recent response object
*/
public function get_response() {
return $this->response;
}
/**
* Get the ID for the API, used primarily to namespace the action name
* for broadcasting requests
*
* @since 2.2.0
* @return string
*/
protected function get_api_id() {
return $this->get_plugin()->get_id();
}
/**
* Return a new request object
*
* Child classes must implement this to return an object that implements
* \SV_WC_API_Request which should be used in the child class API methods
* to build the request. The returned SV_WC_API_Request should be passed
* to self::perform_request() by your concrete API methods
*
* @since 2.2.0
* @param array $args optional request arguments
* @return \SV_WC_API_Request
*/
abstract protected function get_new_request( $args = array() );
/**
* Return the plugin class instance associated with this API
*
* Child classes must implement this to return their plugin class instance
*
* This is used for defining the plugin ID used in filter names, as well
* as the plugin name used for the default user agent.
*
* @since 2.2.0
* @return \SV_WC_Plugin
*/
abstract protected function get_plugin();
/** Setters ***************************************************************/
/**
* Set a request header
*
* @since 2.2.0
* @param string $name header name
* @param string $value header value
* @return string
*/
protected function set_request_header( $name, $value ) {
$this->request_headers[ $name ] = $value;
}
/**
* Set multiple request headers at once
*
* @since 4.3.0
* @param array $headers
*/
protected function set_request_headers( array $headers ) {
foreach ( $headers as $name => $value ) {
$this->request_headers[ $name ] = $value;
}
}
/**
* Set HTTP basic auth for the request
*
* Since 2.2.0
* @param string $username
* @param string $password
*/
protected function set_http_basic_auth( $username, $password ) {
$this->request_headers['Authorization'] = sprintf( 'Basic %s', base64_encode( "{$username}:{$password}" ) );
}
/**
* Set the Content-Type request header
*
* @since 2.2.0
* @param string $content_type
*/
protected function set_request_content_type_header( $content_type ) {
$this->request_headers['content-type'] = $content_type;
}
/**
* Set the Accept request header
*
* @since 2.2.0
* @param string $type the request accept type
*/
protected function set_request_accept_header( $type ) {
$this->request_headers['accept'] = $type;
}
/**
* Set the response handler class name. This class will be instantiated
* to parse the response for the request.
*
* Note the class should implement SV_WC_API
*
* @since 2.2.0
* @param string $handler handle class name
* @return array
*/
protected function set_response_handler( $handler ) {
$this->response_handler = $handler;
}
/**
* Maybe force TLS v1.2 requests.
*
* @since 4.4.0
*/
public function set_tls_1_2_request( $handle, $r, $url ) {
if ( ! SV_WC_Helper::str_starts_with( $url, 'https://' ) ) {
return;
}
$versions = curl_version();
$curl_version = $versions['version'];
// Get the SSL details
list( $ssl_type, $ssl_version ) = explode( '/', $versions['ssl_version'] );
$ssl_version = substr( $ssl_version, 0, -1 );
// If cURL and/or OpenSSL aren't up to the challenge, bail
if ( ! version_compare( $curl_version, '7.34.0', '>=' ) || ( 'OpenSSL' === $ssl_type && ! version_compare( $ssl_version, '1.0.1', '>=' ) ) ) {
return;
}
curl_setopt( $handle, CURLOPT_SSLVERSION, 6 );
}
/**
* Determine if TLS v1.2 is required for API requests.
*
* Subclasses should override this to return true if TLS v1.2 is required.
*
* @since 4.4.0
* @return bool
*/
protected function require_tls_1_2() {
return false;
}
}
endif;