wfAPI.php
5.94 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
<?php
require_once('wordfenceConstants.php');
require_once('wordfenceClass.php');
class wfAPI {
public $lastHTTPStatus = '';
public $lastCurlErrorNo = '';
private $curlContent = 0;
private $APIKey = '';
private $wordpressVersion = '';
public function __construct($apiKey, $wordpressVersion) {
$this->APIKey = $apiKey;
$this->wordpressVersion = $wordpressVersion;
}
public function getStaticURL($url) { // In the form '/something.bin' without quotes
return $this->getURL(rtrim($this->getAPIURL(), '/') . '/' . ltrim($url, '/'));
}
public function call($action, $getParams = array(), $postParams = array(), $forceSSL = false) {
$apiURL = $this->getAPIURL();
//Sanity check. Developer should call wfAPI::SSLEnabled() to check if SSL is enabled before forcing SSL and return a user friendly msg if it's not.
if ($forceSSL && (!preg_match('/^https:/i', $apiURL))) {
//User's should never see this message unless we aren't calling SSLEnabled() to check if SSL is enabled before using call() with forceSSL
throw new Exception("SSL is not supported by your web server and is required to use this function. Please ask your hosting provider or site admin to install cURL with openSSL to use this feature.");
}
$json = $this->getURL(rtrim($apiURL, '/') . '/v' . WORDFENCE_API_VERSION . '/?' . $this->makeAPIQueryString() . '&' . self::buildQuery(
array_merge(
array('action' => $action),
$getParams
)), $postParams);
if (!$json) {
throw new Exception("We received an empty data response from the Wordfence scanning servers when calling the '$action' function.");
}
$dat = json_decode($json, true);
if (isset($dat['_isPaidKey'])) {
wfConfig::set('keyExpDays', $dat['_keyExpDays']);
if ($dat['_keyExpDays'] > -1) {
wfConfig::set('isPaid', 1);
} else if ($dat['_keyExpDays'] < 0) {
wfConfig::set('isPaid', '');
}
}
$hasKeyConflict = false;
if (isset($dat['_hasKeyConflict'])) {
$hasKeyConflict = ($dat['_hasKeyConflict'] == 1);
if ($hasKeyConflict) {
new wfNotification(null, wfNotification::PRIORITY_DEFAULT, '<a href="' . network_admin_url('admin.php?page=WordfenceSecOpt') . '">The Wordfence API key you\'re using does not match this site\'s address. Premium features are disabled.</a>', 'wfplugin_keyconflict', null, array(array('link' => 'https://www.wordfence.com/manage-wordfence-api-keys/', 'label' => 'Manage Keys')));
}
}
if (!$hasKeyConflict) {
$n = wfNotification::getNotificationForCategory('wfplugin_keyconflict');
if ($n !== null) {
wordfence::status(1, 'info', 'Idle');
$n->markAsRead();
}
}
wfConfig::set('hasKeyConflict', $hasKeyConflict);
if (!is_array($dat)) {
throw new Exception("We received a data structure that is not the expected array when contacting the Wordfence scanning servers and calling the '$action' function.");
}
if (is_array($dat) && isset($dat['errorMsg'])) {
throw new Exception($dat['errorMsg']);
}
return $dat;
}
protected function getURL($url, $postParams = array()) {
wordfence::status(4, 'info', "Calling Wordfence API v" . WORDFENCE_API_VERSION . ":" . $url);
if (!function_exists('wp_remote_post')) {
require_once ABSPATH . WPINC . 'http.php';
}
$ssl_verify = (bool) wfConfig::get('ssl_verify');
$args = array(
'timeout' => 900,
'user-agent' => "Wordfence.com UA " . (defined('WORDFENCE_VERSION') ? WORDFENCE_VERSION : '[Unknown version]'),
'body' => $postParams,
'sslverify' => $ssl_verify,
);
if (!$ssl_verify) {
// Some versions of cURL will complain that SSL verification is disabled but the CA bundle was supplied.
$args['sslcertificates'] = false;
}
$response = wp_remote_post($url, $args);
$this->lastHTTPStatus = (int) wp_remote_retrieve_response_code($response);
if (is_wp_error($response)) {
$error_message = $response->get_error_message();
throw new Exception("There was an " . ($error_message ? '' : 'unknown ') . "error connecting to the the Wordfence scanning servers" . ($error_message ? ": $error_message" : '.'));
}
if (!empty($response['response']['code'])) {
$this->lastHTTPStatus = (int) $response['response']['code'];
}
if (200 != $this->lastHTTPStatus) {
throw new Exception("We received an error response when trying to contact the Wordfence scanning servers. The HTTP status code was [$this->lastHTTPStatus]");
}
$this->curlContent = wp_remote_retrieve_body($response);
return $this->curlContent;
}
public function binCall($func, $postData) {
$url = rtrim($this->getAPIURL(), '/') . '/v' . WORDFENCE_API_VERSION . '/?' . $this->makeAPIQueryString() . '&action=' . $func;
$data = $this->getURL($url, $postData);
if (preg_match('/\{.*errorMsg/', $data)) {
$jdat = @json_decode($data, true);
if (is_array($jdat) && $jdat['errorMsg']) {
throw new Exception($jdat['errorMsg']);
}
}
return array('code' => $this->lastHTTPStatus, 'data' => $data);
}
public function makeAPIQueryString() {
$homeurl = wfUtils::wpHomeURL();
return self::buildQuery(array(
'v' => $this->wordpressVersion,
's' => $homeurl,
'k' => $this->APIKey,
'openssl' => function_exists('openssl_verify') && defined('OPENSSL_VERSION_NUMBER') ? OPENSSL_VERSION_NUMBER : '0.0.0',
'phpv' => phpversion(),
'betaFeed' => (int) wfConfig::get('betaThreatDefenseFeed'),
'cacheType' => wfConfig::get('cacheType'),
));
}
private function buildQuery($data) {
if (version_compare(phpversion(), '5.1.2', '>=')) {
return http_build_query($data, '', '&'); //arg_separator parameter was only added in PHP 5.1.2. We do this because some PHP.ini's have arg_separator.output set to '&'
} else {
return http_build_query($data);
}
}
private function getAPIURL() {
return self::SSLEnabled() ? WORDFENCE_API_URL_SEC : WORDFENCE_API_URL_NONSEC;
}
public static function SSLEnabled() {
if (!function_exists('wp_http_supports')) {
require_once ABSPATH . WPINC . 'http.php';
}
return wp_http_supports(array('ssl'));
}
}
?>