| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388 |
- <?php
- class Jetpack_Client {
- const WPCOM_JSON_API_VERSION = '1.1';
- /**
- * Makes an authorized remote request using Jetpack_Signature
- *
- * @return array|WP_Error WP HTTP response on success
- */
- public static function remote_request( $args, $body = null ) {
- $defaults = array(
- 'url' => '',
- 'user_id' => 0,
- 'blog_id' => 0,
- 'auth_location' => JETPACK_CLIENT__AUTH_LOCATION,
- 'method' => 'POST',
- 'timeout' => 10,
- 'redirection' => 0,
- 'headers' => array(),
- 'stream' => false,
- 'filename' => null,
- 'sslverify' => true,
- );
- $args = wp_parse_args( $args, $defaults );
- $args['blog_id'] = (int) $args['blog_id'];
- if ( 'header' != $args['auth_location'] ) {
- $args['auth_location'] = 'query_string';
- }
- $token = Jetpack_Data::get_access_token( $args['user_id'] );
- if ( !$token ) {
- return new Jetpack_Error( 'missing_token' );
- }
- $method = strtoupper( $args['method'] );
- $timeout = intval( $args['timeout'] );
- $redirection = $args['redirection'];
- $stream = $args['stream'];
- $filename = $args['filename'];
- $sslverify = $args['sslverify'];
- $request = compact( 'method', 'body', 'timeout', 'redirection', 'stream', 'filename', 'sslverify' );
- @list( $token_key, $secret ) = explode( '.', $token->secret );
- if ( empty( $token ) || empty( $secret ) ) {
- return new Jetpack_Error( 'malformed_token' );
- }
- $token_key = sprintf( '%s:%d:%d', $token_key, JETPACK__API_VERSION, $token->external_user_id );
- require_once JETPACK__PLUGIN_DIR . 'class.jetpack-signature.php';
- $time_diff = (int) Jetpack_Options::get_option( 'time_diff' );
- $jetpack_signature = new Jetpack_Signature( $token->secret, $time_diff );
- $timestamp = time() + $time_diff;
- if( function_exists( 'wp_generate_password' ) ) {
- $nonce = wp_generate_password( 10, false );
- } else {
- $nonce = substr( sha1( rand( 0, 1000000 ) ), 0, 10);
- }
- // Kind of annoying. Maybe refactor Jetpack_Signature to handle body-hashing
- if ( is_null( $body ) ) {
- $body_hash = '';
- } else {
- // Allow arrays to be used in passing data.
- $body_to_hash = $body;
- if ( is_array( $body ) ) {
- // We cast this to a new variable, because the array form of $body needs to be
- // maintained so it can be passed into the request later on in the code.
- if ( count( $body ) > 0 ) {
- $body_to_hash = json_encode( self::_stringify_data( $body ) );
- } else {
- $body_to_hash = '';
- }
- }
- if ( ! is_string( $body_to_hash ) ) {
- return new Jetpack_Error( 'invalid_body', 'Body is malformed.' );
- }
- $body_hash = jetpack_sha1_base64( $body_to_hash );
- }
- $auth = array(
- 'token' => $token_key,
- 'timestamp' => $timestamp,
- 'nonce' => $nonce,
- 'body-hash' => $body_hash,
- );
- if ( false !== strpos( $args['url'], 'xmlrpc.php' ) ) {
- $url_args = array(
- 'for' => 'jetpack',
- 'wpcom_blog_id' => Jetpack_Options::get_option( 'id' ),
- );
- } else {
- $url_args = array();
- }
- if ( 'header' != $args['auth_location'] ) {
- $url_args += $auth;
- }
- $url = add_query_arg( urlencode_deep( $url_args ), $args['url'] );
- $url = Jetpack::fix_url_for_bad_hosts( $url );
- $signature = $jetpack_signature->sign_request( $token_key, $timestamp, $nonce, $body_hash, $method, $url, $body, false );
- if ( !$signature || is_wp_error( $signature ) ) {
- return $signature;
- }
- // Send an Authorization header so various caches/proxies do the right thing
- $auth['signature'] = $signature;
- $auth['version'] = JETPACK__VERSION;
- $header_pieces = array();
- foreach ( $auth as $key => $value ) {
- $header_pieces[] = sprintf( '%s="%s"', $key, $value );
- }
- $request['headers'] = array_merge( $args['headers'], array(
- 'Authorization' => "X_JETPACK " . join( ' ', $header_pieces ),
- ) );
- if ( 'header' != $args['auth_location'] ) {
- $url = add_query_arg( 'signature', urlencode( $signature ), $url );
- }
- return Jetpack_Client::_wp_remote_request( $url, $request );
- }
- /**
- * Wrapper for wp_remote_request(). Turns off SSL verification for certain SSL errors.
- * This is lame, but many, many, many hosts have misconfigured SSL.
- *
- * When Jetpack is registered, the jetpack_fallback_no_verify_ssl_certs option is set to the current time if:
- * 1. a certificate error is found AND
- * 2. not verifying the certificate works around the problem.
- *
- * The option is checked on each request.
- *
- * @internal
- * @see Jetpack::fix_url_for_bad_hosts()
- *
- * @return array|WP_Error WP HTTP response on success
- */
- public static function _wp_remote_request( $url, $args, $set_fallback = false ) {
- /**
- * SSL verification (`sslverify`) for the JetpackClient remote request
- * defaults to off, use this filter to force it on.
- *
- * Return `true` to ENABLE SSL verification, return `false`
- * to DISABLE SSL verification.
- *
- * @since 3.6.0
- *
- * @param bool Whether to force `sslverify` or not.
- */
- if ( apply_filters( 'jetpack_client_verify_ssl_certs', false ) ) {
- return wp_remote_request( $url, $args );
- }
- $fallback = Jetpack_Options::get_option( 'fallback_no_verify_ssl_certs' );
- if ( false === $fallback ) {
- Jetpack_Options::update_option( 'fallback_no_verify_ssl_certs', 0 );
- }
- if ( (int) $fallback ) {
- // We're flagged to fallback
- $args['sslverify'] = false;
- }
- $response = wp_remote_request( $url, $args );
- if (
- !$set_fallback // We're not allowed to set the flag on this request, so whatever happens happens
- ||
- isset( $args['sslverify'] ) && !$args['sslverify'] // No verification - no point in doing it again
- ||
- !is_wp_error( $response ) // Let it ride
- ) {
- Jetpack_Client::set_time_diff( $response, $set_fallback );
- return $response;
- }
- // At this point, we're not flagged to fallback and we are allowed to set the flag on this request.
- $message = $response->get_error_message();
- // Is it an SSL Certificate verification error?
- if (
- false === strpos( $message, '14090086' ) // OpenSSL SSL3 certificate error
- &&
- false === strpos( $message, '1407E086' ) // OpenSSL SSL2 certificate error
- &&
- false === strpos( $message, 'error setting certificate verify locations' ) // cURL CA bundle not found
- &&
- false === strpos( $message, 'Peer certificate cannot be authenticated with' ) // cURL CURLE_SSL_CACERT: CA bundle found, but not helpful
- // different versions of curl have different error messages
- // this string should catch them all
- &&
- false === strpos( $message, 'Problem with the SSL CA cert' ) // cURL CURLE_SSL_CACERT_BADFILE: probably access rights
- ) {
- // No, it is not.
- return $response;
- }
- // Redo the request without SSL certificate verification.
- $args['sslverify'] = false;
- $response = wp_remote_request( $url, $args );
- if ( !is_wp_error( $response ) ) {
- // The request went through this time, flag for future fallbacks
- Jetpack_Options::update_option( 'fallback_no_verify_ssl_certs', time() );
- Jetpack_Client::set_time_diff( $response, $set_fallback );
- }
- return $response;
- }
- public static function set_time_diff( &$response, $force_set = false ) {
- $code = wp_remote_retrieve_response_code( $response );
- // Only trust the Date header on some responses
- if ( 200 != $code && 304 != $code && 400 != $code && 401 != $code ) {
- return;
- }
- if ( !$date = wp_remote_retrieve_header( $response, 'date' ) ) {
- return;
- }
- if ( 0 >= $time = (int) strtotime( $date ) ) {
- return;
- }
- $time_diff = $time - time();
- if ( $force_set ) { // during register
- Jetpack_Options::update_option( 'time_diff', $time_diff );
- } else { // otherwise
- $old_diff = Jetpack_Options::get_option( 'time_diff' );
- if ( false === $old_diff || abs( $time_diff - (int) $old_diff ) > 10 ) {
- Jetpack_Options::update_option( 'time_diff', $time_diff );
- }
- }
- }
- /**
- * Queries the WordPress.com REST API with a user token.
- *
- * @param string $path REST API path.
- * @param string $version REST API version. Default is `2`.
- * @param array $args Arguments to {@see WP_Http}. Default is `array()`.
- * @param string $body Body passed to {@see WP_Http}. Default is `null`.
- * @param string $base_api_path REST API root. Default is `wpcom`.
- *
- * @return array|WP_Error $response Response data, else {@see WP_Error} on failure.
- */
- public static function wpcom_json_api_request_as_user( $path, $version = '2', $args = array(), $body = null, $base_api_path = 'wpcom' ) {
- $base_api_path = trim( $base_api_path, '/' );
- $version = ltrim( $version, 'v' );
- $path = ltrim( $path, '/' );
- $args = array_intersect_key( $args, array(
- 'headers' => 'array',
- 'method' => 'string',
- 'timeout' => 'int',
- 'redirection' => 'int',
- 'stream' => 'boolean',
- 'filename' => 'string',
- 'sslverify' => 'boolean',
- ) );
- $args['user_id'] = get_current_user_id();
- $args['method'] = isset( $args['method'] ) ? strtoupper( $args['method'] ) : 'GET';
- $args['url'] = sprintf( '%s://%s/%s/v%s/%s', self::protocol(), JETPACK__WPCOM_JSON_API_HOST, $base_api_path, $version, $path );
- if ( isset( $body ) && ! isset( $args['headers'] ) && in_array( $args['method'], array( 'POST', 'PUT', 'PATCH' ), true ) ) {
- $args['headers'] = array( 'Content-Type' => 'application/json' );
- }
- if ( isset( $body ) && ! is_string( $body ) ) {
- $body = wp_json_encode( $body );
- }
- return self::remote_request( $args, $body );
- }
- /**
- * Query the WordPress.com REST API using the blog token
- *
- * @param string $path
- * @param string $version
- * @param array $args
- * @param string $body
- * @param string $base_api_path
- * @return array|WP_Error $response Data.
- */
- static function wpcom_json_api_request_as_blog( $path, $version = self::WPCOM_JSON_API_VERSION, $args = array(), $body = null, $base_api_path = 'rest' ) {
- $filtered_args = array_intersect_key( $args, array(
- 'headers' => 'array',
- 'method' => 'string',
- 'timeout' => 'int',
- 'redirection' => 'int',
- 'stream' => 'boolean',
- 'filename' => 'string',
- 'sslverify' => 'boolean',
- ) );
- // unprecedingslashit
- $_path = preg_replace( '/^\//', '', $path );
- // Use GET by default whereas `remote_request` uses POST
- $request_method = ( isset( $filtered_args['method'] ) ) ? $filtered_args['method'] : 'GET';
- $url = sprintf( '%s://%s/%s/v%s/%s', self::protocol(), JETPACK__WPCOM_JSON_API_HOST, $base_api_path, $version, $_path );
- $validated_args = array_merge( $filtered_args, array(
- 'url' => $url,
- 'blog_id' => (int) Jetpack_Options::get_option( 'id' ),
- 'method' => $request_method,
- ) );
- return Jetpack_Client::remote_request( $validated_args, $body );
- }
- /**
- * Takes an array or similar structure and recursively turns all values into strings. This is used to
- * make sure that body hashes are made ith the string version, which is what will be seen after a
- * server pulls up the data in the $_POST array.
- *
- * @param array|mixed $data
- *
- * @return array|string
- */
- public static function _stringify_data( $data ) {
- // Booleans are special, lets just makes them and explicit 1/0 instead of the 0 being an empty string.
- if ( is_bool( $data ) ) {
- return $data ? "1" : "0";
- }
- // Cast objects into arrays.
- if ( is_object( $data ) ) {
- $data = (array) $data;
- }
- // Non arrays at this point should be just converted to strings.
- if ( ! is_array( $data ) ) {
- return (string)$data;
- }
- foreach ( $data as $key => &$value ) {
- $value = self::_stringify_data( $value );
- }
- return $data;
- }
- /**
- * Gets protocol string.
- *
- * @return string `https` (if possible), else `http`.
- */
- public static function protocol() {
- /**
- * Determines whether Jetpack can send outbound https requests to the WPCOM api.
- *
- * @since 3.6.0
- *
- * @param bool $proto Defaults to true.
- */
- $https = apply_filters( 'jetpack_can_make_outbound_https', true );
- return $https ? 'https' : 'http';
- }
- }
|