author | ymh <ymh.work@gmail.com> |
Mon, 14 Oct 2019 17:39:30 +0200 | |
changeset 7 | cf61fcea0001 |
parent 5 | 5e2f62d02dcd |
child 9 | 177826044cd9 |
permissions | -rw-r--r-- |
0 | 1 |
<?php |
2 |
/** |
|
3 |
* WP_HTTP_IXR_Client |
|
4 |
* |
|
5 |
* @package WordPress |
|
6 |
* @since 3.1.0 |
|
7 |
* |
|
8 |
*/ |
|
9 |
class WP_HTTP_IXR_Client extends IXR_Client { |
|
5 | 10 |
public $scheme; |
11 |
/** |
|
12 |
* @var IXR_Error |
|
13 |
*/ |
|
14 |
public $error; |
|
0 | 15 |
|
5 | 16 |
/** |
17 |
* @param string $server |
|
18 |
* @param string|bool $path |
|
19 |
* @param int|bool $port |
|
20 |
* @param int $timeout |
|
21 |
*/ |
|
22 |
public function __construct($server, $path = false, $port = false, $timeout = 15) { |
|
0 | 23 |
if ( ! $path ) { |
24 |
// Assume we have been given a URL instead |
|
25 |
$bits = parse_url($server); |
|
26 |
$this->scheme = $bits['scheme']; |
|
27 |
$this->server = $bits['host']; |
|
28 |
$this->port = isset($bits['port']) ? $bits['port'] : $port; |
|
29 |
$this->path = !empty($bits['path']) ? $bits['path'] : '/'; |
|
30 |
||
31 |
// Make absolutely sure we have a path |
|
5 | 32 |
if ( ! $this->path ) { |
0 | 33 |
$this->path = '/'; |
5 | 34 |
} |
35 |
||
36 |
if ( ! empty( $bits['query'] ) ) { |
|
37 |
$this->path .= '?' . $bits['query']; |
|
38 |
} |
|
0 | 39 |
} else { |
40 |
$this->scheme = 'http'; |
|
41 |
$this->server = $server; |
|
42 |
$this->path = $path; |
|
43 |
$this->port = $port; |
|
44 |
} |
|
45 |
$this->useragent = 'The Incutio XML-RPC PHP Library'; |
|
46 |
$this->timeout = $timeout; |
|
47 |
} |
|
48 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
49 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
50 |
* @return bool |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
51 |
*/ |
5 | 52 |
public function query() { |
0 | 53 |
$args = func_get_args(); |
54 |
$method = array_shift($args); |
|
55 |
$request = new IXR_Request($method, $args); |
|
56 |
$xml = $request->getXml(); |
|
57 |
||
58 |
$port = $this->port ? ":$this->port" : ''; |
|
59 |
$url = $this->scheme . '://' . $this->server . $port . $this->path; |
|
60 |
$args = array( |
|
61 |
'headers' => array('Content-Type' => 'text/xml'), |
|
62 |
'user-agent' => $this->useragent, |
|
63 |
'body' => $xml, |
|
64 |
); |
|
65 |
||
66 |
// Merge Custom headers ala #8145 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
67 |
foreach ( $this->headers as $header => $value ) { |
0 | 68 |
$args['headers'][$header] = $value; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
69 |
} |
0 | 70 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
71 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
72 |
* Filters the headers collection to be sent to the XML-RPC server. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
73 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
74 |
* @since 4.4.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
75 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
76 |
* @param array $headers Array of headers to be sent. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
77 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
78 |
$args['headers'] = apply_filters( 'wp_http_ixr_client_headers', $args['headers'] ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
79 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
80 |
if ( $this->timeout !== false ) { |
0 | 81 |
$args['timeout'] = $this->timeout; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
82 |
} |
0 | 83 |
|
84 |
// Now send the request |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
85 |
if ( $this->debug ) { |
0 | 86 |
echo '<pre class="ixr_request">' . htmlspecialchars($xml) . "\n</pre>\n\n"; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
87 |
} |
0 | 88 |
|
89 |
$response = wp_remote_post($url, $args); |
|
90 |
||
91 |
if ( is_wp_error($response) ) { |
|
92 |
$errno = $response->get_error_code(); |
|
93 |
$errorstr = $response->get_error_message(); |
|
94 |
$this->error = new IXR_Error(-32300, "transport error: $errno $errorstr"); |
|
95 |
return false; |
|
96 |
} |
|
97 |
||
98 |
if ( 200 != wp_remote_retrieve_response_code( $response ) ) { |
|
99 |
$this->error = new IXR_Error(-32301, 'transport error - HTTP status code was not 200 (' . wp_remote_retrieve_response_code( $response ) . ')'); |
|
100 |
return false; |
|
101 |
} |
|
102 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
103 |
if ( $this->debug ) { |
0 | 104 |
echo '<pre class="ixr_response">' . htmlspecialchars( wp_remote_retrieve_body( $response ) ) . "\n</pre>\n\n"; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
105 |
} |
0 | 106 |
|
107 |
// Now parse what we've got back |
|
108 |
$this->message = new IXR_Message( wp_remote_retrieve_body( $response ) ); |
|
109 |
if ( ! $this->message->parse() ) { |
|
110 |
// XML error |
|
111 |
$this->error = new IXR_Error(-32700, 'parse error. not well formed'); |
|
112 |
return false; |
|
113 |
} |
|
114 |
||
115 |
// Is the message a fault? |
|
116 |
if ( $this->message->messageType == 'fault' ) { |
|
117 |
$this->error = new IXR_Error($this->message->faultCode, $this->message->faultString); |
|
118 |
return false; |
|
119 |
} |
|
120 |
||
121 |
// Message must be OK |
|
122 |
return true; |
|
123 |
} |
|
124 |
} |