本文整理汇总了PHP中WP_HTTP_Proxy::username方法的典型用法代码示例。如果您正苦于以下问题:PHP WP_HTTP_Proxy::username方法的具体用法?PHP WP_HTTP_Proxy::username怎么用?PHP WP_HTTP_Proxy::username使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WP_HTTP_Proxy
的用法示例。
在下文中一共展示了WP_HTTP_Proxy::username方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: curl
private function curl($id, $url, $params)
{
if (self::$settings->getGlobalOption('http_method') == 'post') {
$c = curl_init($url);
curl_setopt($c, CURLOPT_POST, 1);
curl_setopt($c, CURLOPT_POSTFIELDS, $params . '&token_auth=' . self::$settings->getGlobalOption('piwik_token'));
} else {
$c = curl_init($url . '?' . $params . '&token_auth=' . self::$settings->getGlobalOption('piwik_token'));
}
curl_setopt($c, CURLOPT_SSL_VERIFYPEER, !self::$settings->getGlobalOption('disable_ssl_verify'));
curl_setopt($c, CURLOPT_USERAGENT, self::$settings->getGlobalOption('piwik_useragent') == 'php' ? ini_get('user_agent') : self::$settings->getGlobalOption('piwik_useragent_string'));
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($c, CURLOPT_HEADER, $GLOBALS['wp-piwik_debug']);
curl_setopt($c, CURLOPT_TIMEOUT, self::$settings->getGlobalOption('connection_timeout'));
$httpProxyClass = new \WP_HTTP_Proxy();
if ($httpProxyClass->is_enabled() && $httpProxyClass->send_through_proxy($strURL)) {
curl_setopt($c, CURLOPT_PROXY, $httpProxyClass->host());
curl_setopt($c, CURLOPT_PROXYPORT, $httpProxyClass->port());
if ($httpProxyClass->use_authentication()) {
curl_setopt($c, CURLOPT_PROXYUSERPWD, $httpProxyClass->username() . ':' . $httpProxyClass->password());
}
}
$result = curl_exec($c);
if ($GLOBALS['wp-piwik_debug']) {
$header_size = curl_getinfo($c, CURLINFO_HEADER_SIZE);
$header = substr($result, 0, $header_size);
$body = substr($result, $header_size);
$result = $this->unserialize($body);
self::$debug[$id] = array($header, $url . '?' . $params . '&token_auth=...');
} else {
$result = $this->unserialize($result);
}
curl_close($c);
return $result;
}
示例2: array
function getS3($key, $secret, $useservercerts, $disableverify, $nossl)
{
global $updraftplus;
if (!class_exists('UpdraftPlus_S3')) {
require_once UPDRAFTPLUS_DIR . '/includes/S3.php';
}
if (!class_exists('WP_HTTP_Proxy')) {
require_once ABSPATH . 'wp-includes/class-http.php';
}
$proxy = new WP_HTTP_Proxy();
$s3 = new UpdraftPlus_S3($key, $secret);
if ($proxy->is_enabled()) {
# WP_HTTP_Proxy returns empty strings where we want nulls
$user = $proxy->username();
if (empty($user)) {
$user = null;
$pass = null;
} else {
$pass = $proxy->password();
if (empty($pass)) {
$pass = null;
}
}
$port = (int) $proxy->port();
if (empty($port)) {
$port = 8080;
}
$s3->setProxy($proxy->host(), $user, $pass, CURLPROXY_HTTP, $port);
}
if (!$nossl) {
$curl_version = function_exists('curl_version') ? curl_version() : array('features' => null);
$curl_ssl_supported = $curl_version['features'] & CURL_VERSION_SSL;
if ($curl_ssl_supported) {
$s3->useSSL = true;
if ($disableverify) {
$s3->useSSLValidation = false;
$updraftplus->log("S3: Disabling verification of SSL certificates");
}
if ($useservercerts) {
$updraftplus->log("S3: Using the server's SSL certificates");
} else {
$s3->SSLCACert = UPDRAFTPLUS_DIR . '/includes/cacert.pem';
}
} else {
$updraftplus->log("S3: Curl/SSL is not available. Communications will not be encrypted.");
}
} else {
$s3->useSSL = false;
$updraftplus->log("SSL was disabled via the user's preference. Communications will not be encrypted.");
}
return $s3;
}
示例3: request
//.........这里部分代码省略.........
}
// WP allows passing in headers as a string, weirdly.
if (!is_array($r['headers'])) {
$processedHeaders = WP_Http::processHeaders($r['headers']);
$r['headers'] = $processedHeaders['headers'];
}
// Setup arguments
$headers = $r['headers'];
$data = $r['body'];
$type = $r['method'];
$options = array('timeout' => $r['timeout'], 'useragent' => $r['user-agent'], 'blocking' => $r['blocking'], 'hooks' => new WP_HTTP_Requests_Hooks($url, $r));
// Ensure redirects follow browser behaviour.
$options['hooks']->register('requests.before_redirect', array(get_class(), 'browser_redirect_compatibility'));
if ($r['stream']) {
$options['filename'] = $r['filename'];
}
if (empty($r['redirection'])) {
$options['follow_redirects'] = false;
} else {
$options['redirects'] = $r['redirection'];
}
// Use byte limit, if we can
if (isset($r['limit_response_size'])) {
$options['max_bytes'] = $r['limit_response_size'];
}
// If we've got cookies, use and convert them to Requests_Cookie.
if (!empty($r['cookies'])) {
$options['cookies'] = WP_Http::normalize_cookies($r['cookies']);
}
// SSL certificate handling
if (!$r['sslverify']) {
$options['verify'] = false;
$options['verifyname'] = false;
} else {
$options['verify'] = $r['sslcertificates'];
}
// All non-GET/HEAD requests should put the arguments in the form body.
if ('HEAD' !== $type && 'GET' !== $type) {
$options['data_format'] = 'body';
}
/**
* Filters whether SSL should be verified for non-local requests.
*
* @since 2.8.0
*
* @param bool $ssl_verify Whether to verify the SSL connection. Default true.
*/
$options['verify'] = apply_filters('https_ssl_verify', $options['verify']);
// Check for proxies.
$proxy = new WP_HTTP_Proxy();
if ($proxy->is_enabled() && $proxy->send_through_proxy($url)) {
$options['proxy'] = new Requests_Proxy_HTTP($proxy->host() . ':' . $proxy->port());
if ($proxy->use_authentication()) {
$options['proxy']->use_authentication = true;
$options['proxy']->user = $proxy->username();
$options['proxy']->pass = $proxy->password();
}
}
// Avoid issues where mbstring.func_overload is enabled
mbstring_binary_safe_encoding();
try {
$requests_response = Requests::request($url, $headers, $data, $type, $options);
// Convert the response into an array
$http_response = new WP_HTTP_Requests_Response($requests_response, $r['filename']);
$response = $http_response->to_array();
// Add the original object to the array.
$response['http_response'] = $http_response;
} catch (Requests_Exception $e) {
$response = new WP_Error('http_request_failed', $e->getMessage());
}
reset_mbstring_encoding();
/**
* Fires after an HTTP API response is received and before the response is returned.
*
* @since 2.8.0
*
* @param array|WP_Error $response HTTP response or WP_Error object.
* @param string $context Context under which the hook is fired.
* @param string $class HTTP transport used.
* @param array $args HTTP request arguments.
* @param string $url The request URL.
*/
do_action('http_api_debug', $response, 'response', 'Requests', $r, $url);
if (is_wp_error($response)) {
return $response;
}
if (!$r['blocking']) {
return array('headers' => array(), 'body' => '', 'response' => array('code' => false, 'message' => false), 'cookies' => array(), 'http_response' => null);
}
/**
* Filters the HTTP API response immediately before the response is returned.
*
* @since 2.9.0
*
* @param array $response HTTP response.
* @param array $r HTTP request arguments.
* @param string $url The request URL.
*/
return apply_filters('http_response', $response, $r, $url);
}
示例4: getS3
public function getS3($key, $secret, $useservercerts, $disableverify, $nossl, $endpoint = null)
{
if (!empty($this->s3_object) && !is_wp_error($this->s3_object)) {
return $this->s3_object;
}
// Saved in case the object needs recreating for the corner-case where there is no permission to look up the bucket location
$this->got_with = array('key' => $key, 'secret' => $secret, 'useservercerts' => $useservercerts, 'disableverify' => $disableverify, 'nossl' => $nossl);
if ('' == $key || '' == $secret) {
return new WP_Error('no_settings', __('No settings were found', 'updraftplus'));
}
global $updraftplus;
$use_s3_class = $this->indicate_s3_class();
if (!class_exists('WP_HTTP_Proxy')) {
require_once ABSPATH . WPINC . '/class-http.php';
}
$proxy = new WP_HTTP_Proxy();
$use_ssl = true;
$ssl_ca = true;
if (!$nossl) {
$curl_version = function_exists('curl_version') ? curl_version() : array('features' => null);
$curl_ssl_supported = $curl_version['features'] & CURL_VERSION_SSL;
if ($curl_ssl_supported) {
if ($disableverify) {
$ssl_ca = false;
//$s3->setSSL(true, false);
$updraftplus->log("S3: Disabling verification of SSL certificates");
} else {
if ($useservercerts) {
$updraftplus->log("S3: Using the server's SSL certificates");
$ssl_ca = 'system';
} else {
$ssl_ca = file_exists(UPDRAFTPLUS_DIR . '/includes/cacert.pem') ? UPDRAFTPLUS_DIR . '/includes/cacert.pem' : true;
}
}
} else {
$use_ssl = false;
$updraftplus->log("S3: Curl/SSL is not available. Communications will not be encrypted.");
}
} else {
$use_ssl = false;
$updraftplus->log("SSL was disabled via the user's preference. Communications will not be encrypted.");
}
try {
$s3 = new $use_s3_class($key, $secret, $use_ssl, $ssl_ca, $endpoint);
} catch (Exception $e) {
$updraftplus->log(sprintf(__('%s Error: Failed to initialise', 'updraftplus'), 'S3') . ": " . $e->getMessage() . ' (line: ' . $e->getLine() . ', file: ' . $e->getFile() . ')');
$updraftplus->log(sprintf(__('%s Error: Failed to initialise', 'updraftplus'), $key), 'S3');
return new WP_Error('s3_init_failed', sprintf(__('%s Error: Failed to initialise', 'updraftplus'), 'S3') . ": " . $e->getMessage() . ' (line: ' . $e->getLine() . ', file: ' . $e->getFile() . ')');
}
if ($proxy->is_enabled()) {
# WP_HTTP_Proxy returns empty strings where we want nulls
$user = $proxy->username();
if (empty($user)) {
$user = null;
$pass = null;
} else {
$pass = $proxy->password();
if (empty($pass)) {
$pass = null;
}
}
$port = (int) $proxy->port();
if (empty($port)) {
$port = 8080;
}
$s3->setProxy($proxy->host(), $user, $pass, CURLPROXY_HTTP, $port);
}
// Old: from before we passed the SSL options when getting the object
// if (!$nossl) {
// $curl_version = (function_exists('curl_version')) ? curl_version() : array('features' => null);
// $curl_ssl_supported = ($curl_version['features'] & CURL_VERSION_SSL);
// if ($curl_ssl_supported) {
// if ($disableverify) {
// $s3->setSSL(true, false);
// $updraftplus->log("S3: Disabling verification of SSL certificates");
// } else {
// $s3->setSSL(true, true);
// }
// if ($useservercerts) {
// $updraftplus->log("S3: Using the server's SSL certificates");
// } else {
// $s3->setSSLAuth(null, null, UPDRAFTPLUS_DIR.'/includes/cacert.pem');
// }
// } else {
// $s3->setSSL(false, false);
// $updraftplus->log("S3: Curl/SSL is not available. Communications will not be encrypted.");
// }
// } else {
// $s3->setSSL(false, false);
// $updraftplus->log("SSL was disabled via the user's preference. Communications will not be encrypted.");
// }
$this->s3_object = $s3;
return $this->s3_object;
}
示例5: http_post
public function http_post($post_options)
{
@(include ABSPATH . WPINC . '/version.php');
$http_credentials = $this->http_credentials;
if (is_a($this->http_transport, 'GuzzleHttp\\Client')) {
// https://guzzle.readthedocs.org/en/5.3/clients.html
$client = $this->http_transport;
$guzzle_options = array('body' => $post_options['body'], 'headers' => array('User-Agent' => 'WordPress/' . $wp_version . '; class-udrpc.php-Guzzle/' . $this->version . '; ' . get_bloginfo('url')), 'exceptions' => false, 'timeout' => $post_options['timeout']);
if (!class_exists('WP_HTTP_Proxy')) {
require_once ABSPATH . WPINC . '/class-http.php';
}
$proxy = new WP_HTTP_Proxy();
if ($proxy->is_enabled()) {
$user = $proxy->username();
$pass = $proxy->password();
$host = $proxy->host();
$port = (int) $proxy->port();
if (empty($port)) {
$port = 8080;
}
if (!empty($host) && $proxy->send_through_proxy($this->destination_url)) {
$proxy_auth = '';
if (!empty($user)) {
$proxy_auth = $user;
if (!empty($pass)) {
$proxy_auth .= ':' . $pass;
}
$proxy_auth .= '@';
}
$guzzle_options['proxy'] = array('http' => "http://{$proxy_auth}{$host}:{$port}", 'https' => "http://{$proxy_auth}{$host}:{$port}");
}
}
if (defined('UDRPC_GUZZLE_SSL_VERIFY')) {
$verify = UDRPC_GUZZLE_SSL_VERIFY;
} elseif (file_exists(ABSPATH . WPINC . '/certificates/ca-bundle.crt')) {
$verify = ABSPATH . WPINC . '/certificates/ca-bundle.crt';
} else {
$verify = true;
}
$guzzle_options['verify'] = apply_filters('udrpc_guzzle_verify', $verify);
if (!empty($http_credentials['username'])) {
$authentication_method = empty($http_credentials['authentication_method']) ? 'basic' : $http_credentials['authentication_method'];
$password = empty($http_credentials['password']) ? '' : $http_credentials['password'];
$guzzle_options['auth'] = array($http_credentials['username'], $password, $authentication_method);
}
$response = $client->post($this->destination_url, apply_filters('udrpc_guzzle_options', $guzzle_options, $this));
$formatted_response = array('response' => array('code' => $response->getStatusCode()), 'body' => $response->getBody());
return $formatted_response;
} else {
$post_options['user-agent'] = 'WordPress/' . $wp_version . '; class-udrpc.php/' . $this->version . '; ' . get_bloginfo('url');
if (!empty($http_credentials['username'])) {
$authentication_type = empty($http_credentials['authentication_type']) ? 'basic' : $http_credentials['authentication_type'];
if ('basic' != $authentication_type) {
return new WP_Error('unsupported_http_authentication_type', 'Only HTTP basic authentication is supported (for other types, use Guzzle)');
}
$password = empty($http_credentials['password']) ? '' : $http_credentials['password'];
$post_options['headers'] = array('Authorization' => 'Basic ' . base64_encode($http_credentials['username'] . ':' . $password));
}
return wp_remote_post($this->destination_url, $post_options);
}
}
示例6: getS3
protected function getS3($key, $secret, $useservercerts, $disableverify, $nossl)
{
if (!empty($this->s3_object) && !is_wp_error($this->s3_object)) {
return $this->s3_object;
}
if ('' == $key || '' == $secret) {
return new WP_Error('no_settings', __('No settings were found', 'updraftplus'));
}
global $updraftplus;
if (!class_exists('UpdraftPlus_S3')) {
require_once UPDRAFTPLUS_DIR . '/includes/S3.php';
}
if (!class_exists('WP_HTTP_Proxy')) {
require_once ABSPATH . WPINC . '/class-http.php';
}
$proxy = new WP_HTTP_Proxy();
$s3 = new UpdraftPlus_S3($key, $secret);
if ($proxy->is_enabled()) {
# WP_HTTP_Proxy returns empty strings where we want nulls
$user = $proxy->username();
if (empty($user)) {
$user = null;
$pass = null;
} else {
$pass = $proxy->password();
if (empty($pass)) {
$pass = null;
}
}
$port = (int) $proxy->port();
if (empty($port)) {
$port = 8080;
}
$s3->setProxy($proxy->host(), $user, $pass, CURLPROXY_HTTP, $port);
}
if (!$nossl) {
$curl_version = function_exists('curl_version') ? curl_version() : array('features' => null);
$curl_ssl_supported = $curl_version['features'] & CURL_VERSION_SSL;
if ($curl_ssl_supported) {
if ($disableverify) {
$s3->setSSL(true, false);
$updraftplus->log("S3: Disabling verification of SSL certificates");
} else {
$s3->setSSL(true, true);
}
if ($useservercerts) {
$updraftplus->log("S3: Using the server's SSL certificates");
} else {
$s3->setSSLAuth(null, null, UPDRAFTPLUS_DIR . '/includes/cacert.pem');
}
} else {
$s3->setSSL(false, false);
$updraftplus->log("S3: Curl/SSL is not available. Communications will not be encrypted.");
}
} else {
$s3->setSSL(false, false);
$updraftplus->log("SSL was disabled via the user's preference. Communications will not be encrypted.");
}
$this->s3_object = $s3;
return $this->s3_object;
}
示例7: fetch
/**
* Execute an API call
* @todo Improve error handling
* @param string $method The HTTP method
* @param string $url The API endpoint
* @param string $call The API method to call
* @param array $additional Additional parameters
* @return string|object stdClass
*/
public function fetch($method, $url, $call, array $additional = array())
{
// Get the signed request URL
$request = $this->getSignedRequest($method, $url, $call, $additional);
// Initialise and execute a cURL request
$handle = curl_init($request['url']);
// Get the default options array
$options = $this->defaultOptions;
if (!UpdraftPlus_Options::get_updraft_option('updraft_ssl_useservercerts')) {
$options[CURLOPT_CAINFO] = UPDRAFTPLUS_DIR . '/includes/cacert.pem';
}
if (UpdraftPlus_Options::get_updraft_option('updraft_ssl_disableverify')) {
$options[CURLOPT_SSL_VERIFYPEER] = false;
} else {
$options[CURLOPT_SSL_VERIFYPEER] = true;
}
if (!class_exists('WP_HTTP_Proxy')) {
require_once ABSPATH . WPINC . '/class-http.php';
}
$proxy = new WP_HTTP_Proxy();
if ($proxy->is_enabled()) {
# WP_HTTP_Proxy returns empty strings if nothing is set
$user = $proxy->username();
$pass = $proxy->password();
$host = $proxy->host();
$port = (int) $proxy->port();
if (empty($port)) {
$port = 8080;
}
if (!empty($host) && $proxy->send_through_proxy($request['url'])) {
$options[CURLOPT_PROXY] = $host;
$options[CURLOPT_PROXYTYPE] = CURLPROXY_HTTP;
$options[CURLOPT_PROXYPORT] = $port;
if (!empty($user) && !empty($pass)) {
$options[CURLOPT_PROXYAUTH] = CURLAUTH_ANY;
$options[CURLOPT_PROXYUSERPWD] = sprintf('%s:%s', $user, $pass);
}
}
}
if ($method == 'GET' && $this->outFile) {
// GET
$options[CURLOPT_RETURNTRANSFER] = false;
$options[CURLOPT_HEADER] = false;
$options[CURLOPT_FILE] = $this->outFile;
$options[CURLOPT_BINARYTRANSFER] = true;
$options[CURLOPT_FAILONERROR] = true;
if (isset($additional['headers'])) {
$options[CURLOPT_HTTPHEADER] = $additional['headers'];
}
$this->outFile = null;
} elseif ($method == 'POST') {
// POST
$options[CURLOPT_POST] = true;
$options[CURLOPT_POSTFIELDS] = $request['postfields'];
} elseif ($method == 'PUT' && $this->inFile) {
// PUT
$options[CURLOPT_PUT] = true;
$options[CURLOPT_INFILE] = $this->inFile;
// @todo Update so the data is not loaded into memory to get its size
$options[CURLOPT_INFILESIZE] = strlen(stream_get_contents($this->inFile));
fseek($this->inFile, 0);
$this->inFile = null;
}
// Set the cURL options at once
curl_setopt_array($handle, $options);
// Execute, get any error and close
$response = curl_exec($handle);
$error = curl_error($handle);
$getinfo = curl_getinfo($handle);
curl_close($handle);
//Check if a cURL error has occured
if ($response === false) {
throw new Dropbox_CurlException($error);
} else {
// Parse the response if it is a string
if (is_string($response)) {
$response = $this->parse($response);
}
// Set the last response
$this->lastResponse = $response;
$code = !empty($response['code']) ? $response['code'] : $getinfo['http_code'];
// The API doesn't return an error message for the 304 status code...
// 304's are only returned when the path supplied during metadata calls has not been modified
if ($code == 304) {
$response['body'] = new stdClass();
$response['body']->error = 'The folder contents have not changed';
}
// Check if an error occurred and throw an Exception
if (!empty($response['body']->error)) {
// Dropbox returns error messages inconsistently...
if ($response['body']->error instanceof stdClass) {
//.........这里部分代码省略.........
示例8: getS3
public function getS3($key, $secret, $useservercerts, $disableverify, $nossl, $endpoint = null, $sse = false)
{
if (!empty($this->s3_object) && !is_wp_error($this->s3_object)) {
return $this->s3_object;
}
if (is_string($key)) {
$key = trim($key);
}
if (is_string($secret)) {
$secret = trim($secret);
}
// Saved in case the object needs recreating for the corner-case where there is no permission to look up the bucket location
$this->got_with = array('key' => $key, 'secret' => $secret, 'useservercerts' => $useservercerts, 'disableverify' => $disableverify, 'nossl' => $nossl, 'server_side_encryption' => $sse);
if (is_wp_error($key)) {
return $key;
}
if ('' == $key || '' == $secret) {
return new WP_Error('no_settings', __('No settings were found - please go to the Settings tab and check your settings', 'updraftplus'));
}
global $updraftplus;
$use_s3_class = $this->indicate_s3_class();
if (!class_exists('WP_HTTP_Proxy')) {
require_once ABSPATH . WPINC . '/class-http.php';
}
$proxy = new WP_HTTP_Proxy();
$use_ssl = true;
$ssl_ca = true;
if (!$nossl) {
$curl_version = function_exists('curl_version') ? curl_version() : array('features' => null);
$curl_ssl_supported = $curl_version['features'] & CURL_VERSION_SSL;
if ($curl_ssl_supported) {
if ($disableverify) {
$ssl_ca = false;
//$s3->setSSL(true, false);
$updraftplus->log("S3: Disabling verification of SSL certificates");
} else {
if ($useservercerts) {
$updraftplus->log("S3: Using the server's SSL certificates");
$ssl_ca = 'system';
} else {
$ssl_ca = file_exists(UPDRAFTPLUS_DIR . '/includes/cacert.pem') ? UPDRAFTPLUS_DIR . '/includes/cacert.pem' : true;
}
}
} else {
$use_ssl = false;
$updraftplus->log("S3: Curl/SSL is not available. Communications will not be encrypted.");
}
} else {
$use_ssl = false;
$updraftplus->log("SSL was disabled via the user's preference. Communications will not be encrypted.");
}
try {
$s3 = new $use_s3_class($key, $secret, $use_ssl, $ssl_ca, $endpoint);
} catch (Exception $e) {
// Catch a specific PHP engine bug - see HS#6364
if ('UpdraftPlus_S3_Compat' == $use_s3_class && is_a($e, 'InvalidArgumentException') && false !== strpos('Invalid signature type: s3', $e->getMessage())) {
require_once UPDRAFTPLUS_DIR . '/includes/S3.php';
$use_s3_class = 'UpdraftPlus_S3';
$try_again = true;
} else {
$updraftplus->log(sprintf(__('%s Error: Failed to initialise', 'updraftplus'), 'S3') . ": " . $e->getMessage() . ' (line: ' . $e->getLine() . ', file: ' . $e->getFile() . ')');
$updraftplus->log(sprintf(__('%s Error: Failed to initialise', 'updraftplus'), $key), 'S3');
return new WP_Error('s3_init_failed', sprintf(__('%s Error: Failed to initialise', 'updraftplus'), 'S3') . ": " . $e->getMessage() . ' (line: ' . $e->getLine() . ', file: ' . $e->getFile() . ')');
}
}
if (!empty($try_again)) {
try {
$s3 = new $use_s3_class($key, $secret, $use_ssl, $ssl_ca, $endpoint);
} catch (Exception $e) {
$updraftplus->log(sprintf(__('%s Error: Failed to initialise', 'updraftplus'), 'S3') . ": " . $e->getMessage() . ' (line: ' . $e->getLine() . ', file: ' . $e->getFile() . ')');
$updraftplus->log(sprintf(__('%s Error: Failed to initialise', 'updraftplus'), $key), 'S3');
return new WP_Error('s3_init_failed', sprintf(__('%s Error: Failed to initialise', 'updraftplus'), 'S3') . ": " . $e->getMessage() . ' (line: ' . $e->getLine() . ', file: ' . $e->getFile() . ')');
}
$updraftplus->log("S3: Hit a PHP engine bug - had to switch to the older S3 library (which is incompatible with signatureV4, which may cause problems later on if using a region that requires it)");
}
if ($proxy->is_enabled()) {
# WP_HTTP_Proxy returns empty strings where we want nulls
$user = $proxy->username();
if (empty($user)) {
$user = null;
$pass = null;
} else {
$pass = $proxy->password();
if (empty($pass)) {
$pass = null;
}
}
$port = (int) $proxy->port();
if (empty($port)) {
$port = 8080;
}
$s3->setProxy($proxy->host(), $user, $pass, CURLPROXY_HTTP, $port);
}
// Old: from before we passed the SSL options when getting the object
// if (!$nossl) {
// $curl_version = (function_exists('curl_version')) ? curl_version() : array('features' => null);
// $curl_ssl_supported = ($curl_version['features'] & CURL_VERSION_SSL);
// if ($curl_ssl_supported) {
// if ($disableverify) {
// $s3->setSSL(true, false);
//.........这里部分代码省略.........
示例9: sucuriscan_settings_general_apiproxy
function sucuriscan_settings_general_apiproxy()
{
$params = array('APIProxy.Host' => 'no_proxy_host', 'APIProxy.Port' => 'no_proxy_port', 'APIProxy.Username' => 'no_proxy_username', 'APIProxy.Password' => 'no_proxy_password', 'APIProxy.PasswordType' => 'default', 'APIProxy.PasswordText' => 'empty');
if (class_exists('WP_HTTP_Proxy')) {
$wp_http_proxy = new WP_HTTP_Proxy();
if ($wp_http_proxy->is_enabled()) {
$proxy_host = SucuriScan::escape($wp_http_proxy->host());
$proxy_port = SucuriScan::escape($wp_http_proxy->port());
$proxy_username = SucuriScan::escape($wp_http_proxy->username());
$proxy_password = SucuriScan::escape($wp_http_proxy->password());
$template_variables['APIProxy.Host'] = $proxy_host;
$template_variables['APIProxy.Port'] = $proxy_port;
$template_variables['APIProxy.Username'] = $proxy_username;
$template_variables['APIProxy.Password'] = $proxy_password;
$template_variables['APIProxy.PasswordType'] = 'info';
$template_variables['APIProxy.PasswordText'] = 'hidden';
}
}
return SucuriScanTemplate::get_section('settings-general-apiproxy', $params);
}
示例10: callREST
/**
* Call REST API
*
* @param $strURL Remote file URL
*/
function callREST($strURL)
{
$strPiwikURL = self::$aryGlobalSettings['piwik_url'];
if (substr($strPiwikURL, -1, 1) != '/') {
$strPiwikURL .= '/';
}
$strURL = $strPiwikURL . '?module=API' . $strURL;
// Use cURL if available
if (function_exists('curl_init')) {
// Init cURL
$c = curl_init($strURL);
// Disable SSL peer verification if asked to
curl_setopt($c, CURLOPT_SSL_VERIFYPEER, !self::$aryGlobalSettings['disable_ssl_verify']);
// Set user agent
curl_setopt($c, CURLOPT_USERAGENT, self::$aryGlobalSettings['piwik_useragent'] == 'php' ? ini_get('user_agent') : self::$aryGlobalSettings['piwik_useragent_string']);
// Configure cURL CURLOPT_RETURNTRANSFER = 1
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
// Configure cURL CURLOPT_HEADER = 0
curl_setopt($c, CURLOPT_HEADER, 0);
// Set cURL timeout
curl_setopt($c, CURLOPT_TIMEOUT, self::$aryGlobalSettings['connection_timeout']);
if (WP_HTTP_Proxy::is_enabled() && WP_HTTP_Proxy::send_through_proxy($strURL)) {
curl_setopt($c, CURLOPT_PROXY, WP_HTTP_Proxy::host());
curl_setopt($c, CURLOPT_PROXYPORT, WP_HTTP_Proxy::port());
if (WP_HTTP_Proxy::use_authentication()) {
curl_setopt($c, CURLOPT_PROXYUSERPWD, WP_HTTP_Proxy::username() . ':' . WP_HTTP_Proxy::password());
}
}
// Get result
$strResult = curl_exec($c);
// Close connection
curl_close($c);
// cURL not available but url fopen allowed
} elseif (ini_get('allow_url_fopen')) {
// Set timeout
$resContext = stream_context_create(array('http' => array('timeout' => self::$aryGlobalSettings['connection_timeout'])));
// Get file using file_get_contents
$strResult = @file_get_contents($strURL, false, $strContext);
// Error: Not possible to get remote file
} else {
$strResult = serialize(array('result' => 'error', 'message' => 'Remote access to Piwik not possible. Enable allow_url_fopen or CURL.'));
}
// Return result
return $strResult;
}
示例11: fetch
/**
* Execute an API call
* @todo Improve error handling
* @param string $method The HTTP method
* @param string $url The API endpoint
* @param string $call The API method to call
* @param array $additional Additional parameters
* @return string|object stdClass
*/
public function fetch($method, $url, $call, array $additional = array())
{
// Get the signed request URL
$request = $this->getSignedRequest($method, $url, $call, $additional);
// Initialise and execute a cURL request
$handle = curl_init($request['url']);
// Get the default options array
$options = $this->defaultOptions;
if (!UpdraftPlus_Options::get_updraft_option('updraft_ssl_useservercerts')) {
$options[CURLOPT_CAINFO] = UPDRAFTPLUS_DIR . '/includes/cacert.pem';
}
if (UpdraftPlus_Options::get_updraft_option('updraft_ssl_disableverify')) {
$options[CURLOPT_SSL_VERIFYPEER] = false;
} else {
$options[CURLOPT_SSL_VERIFYPEER] = true;
}
if (!class_exists('WP_HTTP_Proxy')) {
require_once ABSPATH . WPINC . '/class-http.php';
}
$proxy = new WP_HTTP_Proxy();
if ($proxy->is_enabled()) {
# WP_HTTP_Proxy returns empty strings if nothing is set
$user = $proxy->username();
$pass = $proxy->password();
$host = $proxy->host();
$port = (int) $proxy->port();
if (empty($port)) {
$port = 8080;
}
if (!empty($host) && $proxy->send_through_proxy($request['url'])) {
$options[CURLOPT_PROXY] = $host;
$options[CURLOPT_PROXYTYPE] = CURLPROXY_HTTP;
$options[CURLOPT_PROXYPORT] = $port;
if (!empty($user) && !empty($pass)) {
$options[CURLOPT_PROXYAUTH] = CURLAUTH_ANY;
$options[CURLOPT_PROXYUSERPWD] = sprintf('%s:%s', $user, $pass);
}
}
}
if (isset($request['headers'])) {
$options[CURLOPT_HTTPHEADER] = $request['headers'];
}
/*
Add check to see if it's an API v2 call if so then json encode the contents. This is so that it is backwards compatible with API v1 endpoints.
*/
if (isset($additional['api_v2']) && !empty($request['postfields'])) {
$request['postfields'] = json_encode($request['postfields']);
}
if ($method == 'GET' && $this->outFile) {
// GET
$options[CURLOPT_RETURNTRANSFER] = false;
$options[CURLOPT_HEADER] = false;
$options[CURLOPT_FILE] = $this->outFile;
$options[CURLOPT_BINARYTRANSFER] = true;
$options[CURLOPT_FAILONERROR] = true;
/*
Not sure if this is used, keeping it here for backwards compatibility at the moment.
With API v2 the headers are set in the $request they are set above if they are set.
*/
if (isset($additional['headers'])) {
$options[CURLOPT_HTTPHEADER] = $additional['headers'];
}
$this->outFile = null;
} elseif ($method == 'POST' && $this->outFile) {
// POST
$options[CURLOPT_POST] = true;
$options[CURLOPT_RETURNTRANSFER] = false;
$options[CURLOPT_HEADER] = false;
$options[CURLOPT_FILE] = $this->outFile;
$options[CURLOPT_BINARYTRANSFER] = true;
$options[CURLOPT_FAILONERROR] = true;
$this->outFile = null;
} elseif ($method == 'POST' && $this->inFile) {
// POST
$options[CURLOPT_POST] = true;
$options[CURLOPT_POSTFIELDS] = $this->inFile;
} elseif ($method == 'POST') {
// POST
$options[CURLOPT_POST] = true;
$options[CURLOPT_POSTFIELDS] = $request['postfields'];
} elseif ($method == 'PUT' && $this->inFile) {
// PUT
$options[CURLOPT_PUT] = true;
$options[CURLOPT_INFILE] = $this->inFile;
// @todo Update so the data is not loaded into memory to get its size
$options[CURLOPT_INFILESIZE] = strlen(stream_get_contents($this->inFile));
fseek($this->inFile, 0);
$this->inFile = null;
}
// Set the cURL options at once
curl_setopt_array($handle, $options);
//.........这里部分代码省略.........
示例12: sucuriscan_settings_general
/**
* Read and parse the content of the general settings template.
*
* @return string Parsed HTML code for the general settings panel.
*/
function sucuriscan_settings_general()
{
global $sucuriscan_emails_per_hour, $sucuriscan_maximum_failed_logins, $sucuriscan_verify_ssl_cert;
// Check the nonce here to populate the value through other functions.
$page_nonce = SucuriScanInterface::check_nonce();
// Process all form submissions.
sucuriscan_settings_form_submissions($page_nonce);
// Register the site, get its API key, and store it locally for future usage.
$api_registered_modal = '';
// Whether the form to manually add the API key should be shown or not.
$display_manual_key_form = (bool) (SucuriScanRequest::post(':recover_key') !== false);
if ($page_nonce && SucuriScanRequest::post(':plugin_api_key') !== false) {
$registered = SucuriScanAPI::register_site();
if ($registered) {
$api_registered_modal = SucuriScanTemplate::get_modal('settings-apiregistered', array('Title' => 'Site registered successfully', 'CssClass' => 'sucuriscan-apikey-registered'));
} else {
$display_manual_key_form = true;
}
}
// Get initial variables to decide some things bellow.
$api_key = SucuriScanAPI::get_plugin_key();
$emails_per_hour = SucuriScanOption::get_option(':emails_per_hour');
$maximum_failed_logins = SucuriScanOption::get_option(':maximum_failed_logins');
$verify_ssl_cert = SucuriScanOption::get_option(':verify_ssl_cert');
$audit_report = SucuriScanOption::get_option(':audit_report');
$logs4report = SucuriScanOption::get_option(':logs4report');
$revproxy = SucuriScanOption::get_option(':revproxy');
$invalid_domain = false;
// Check whether the domain name is valid or not.
if (!$api_key) {
$clean_domain = SucuriScan::get_top_level_domain();
$domain_address = @gethostbyname($clean_domain);
$invalid_domain = $domain_address == $clean_domain ? true : false;
}
// Generate the HTML code for the option list in the form select fields.
$emails_per_hour_options = SucuriScanTemplate::get_select_options($sucuriscan_emails_per_hour, $emails_per_hour);
$maximum_failed_logins_options = SucuriScanTemplate::get_select_options($sucuriscan_maximum_failed_logins, $maximum_failed_logins);
$verify_ssl_cert_options = SucuriScanTemplate::get_select_options($sucuriscan_verify_ssl_cert, $verify_ssl_cert);
$template_variables = array('APIKey' => !$api_key ? '<em>(not set)</em>' : $api_key, 'APIKey.RecoverVisibility' => SucuriScanTemplate::visibility(!$api_key && !$display_manual_key_form), 'APIKey.ManualKeyFormVisibility' => SucuriScanTemplate::visibility($display_manual_key_form), 'APIKey.RemoveVisibility' => SucuriScanTemplate::visibility((bool) $api_key), 'InvalidDomainVisibility' => SucuriScanTemplate::visibility($invalid_domain), 'NotifyTo' => SucuriScanOption::get_option(':notify_to'), 'EmailsPerHour' => 'Undefined', 'EmailsPerHourOptions' => $emails_per_hour_options, 'MaximumFailedLogins' => 'Undefined', 'MaximumFailedLoginsOptions' => $maximum_failed_logins_options, 'VerifySSLCert' => 'Undefined', 'VerifySSLCertOptions' => $verify_ssl_cert_options, 'RequestTimeout' => SucuriScanOption::get_option(':request_timeout') . ' seconds', 'DatastorePath' => SucuriScanOption::get_option(':datastore_path'), 'CollectWrongPasswords' => 'No collect passwords', 'ModalWhenAPIRegistered' => $api_registered_modal, 'AuditReportStatus' => 'Enabled', 'AuditReportSwitchText' => 'Disable', 'AuditReportSwitchValue' => 'disable', 'AuditReportSwitchCssClass' => 'button-danger', 'AuditReportLimit' => $logs4report, 'ReverseProxyStatus' => 'Enabled', 'ReverseProxySwitchText' => 'Disable', 'ReverseProxySwitchValue' => 'disable', 'ReverseProxySwitchCssClass' => 'button-danger', 'APIProxy.Host' => 'n/a', 'APIProxy.Port' => 'n/a', 'APIProxy.Username' => 'n/a', 'APIProxy.Password' => 'n/a', 'APIProxy.PasswordType' => 'default', 'APIProxy.PasswordText' => 'empty');
if (array_key_exists($emails_per_hour, $sucuriscan_emails_per_hour)) {
$template_variables['EmailsPerHour'] = $sucuriscan_emails_per_hour[$emails_per_hour];
}
if (array_key_exists($maximum_failed_logins, $sucuriscan_maximum_failed_logins)) {
$template_variables['MaximumFailedLogins'] = $sucuriscan_maximum_failed_logins[$maximum_failed_logins];
}
if (array_key_exists($verify_ssl_cert, $sucuriscan_verify_ssl_cert)) {
$template_variables['VerifySSLCert'] = $sucuriscan_verify_ssl_cert[$verify_ssl_cert];
}
if ($audit_report == 'disabled') {
$template_variables['AuditReportStatus'] = 'Disabled';
$template_variables['AuditReportSwitchText'] = 'Enable';
$template_variables['AuditReportSwitchValue'] = 'enable';
$template_variables['AuditReportSwitchCssClass'] = 'button-success';
}
if ($revproxy == 'disabled') {
$template_variables['ReverseProxyStatus'] = 'Disabled';
$template_variables['ReverseProxySwitchText'] = 'Enable';
$template_variables['ReverseProxySwitchValue'] = 'enable';
$template_variables['ReverseProxySwitchCssClass'] = 'button-success';
}
if (sucuriscan_collect_wrong_passwords() === true) {
$template_variables['CollectWrongPasswords'] = '<span class="sucuriscan-label-error">Yes, collect passwords</span>';
}
// Determine if the API calls with pass through a proxy or not.
if (class_exists('WP_HTTP_Proxy')) {
$wp_http_proxy = new WP_HTTP_Proxy();
if ($wp_http_proxy->is_enabled()) {
$proxy_host = SucuriScan::escape($wp_http_proxy->host());
$proxy_port = SucuriScan::escape($wp_http_proxy->port());
$proxy_username = SucuriScan::escape($wp_http_proxy->username());
$proxy_password = SucuriScan::escape($wp_http_proxy->password());
$template_variables['APIProxy.Host'] = $proxy_host;
$template_variables['APIProxy.Port'] = $proxy_port;
$template_variables['APIProxy.Username'] = $proxy_username;
$template_variables['APIProxy.Password'] = $proxy_password;
$template_variables['APIProxy.PasswordType'] = 'info';
$template_variables['APIProxy.PasswordText'] = 'hidden';
}
}
return SucuriScanTemplate::get_section('settings-general', $template_variables);
}