Requests::request_multiple( array $requests, array $options = array() ): array

In this article

Send multiple HTTP requests simultaneously

Description

The $requests parameter takes an associative or indexed array of request fields. The key of each request can be used to match up the request with the returned data, or with the request passed into your multiple.request.complete callback.

The request fields value is an associative array with the following keys:

If the $options parameter is specified, individual requests will inherit options from it. This can be used to use a single hooking system, or set all the types to \WpOrg\Requests\Requests::POST, for example.

In addition, the $options parameter takes the following global options:

  • complete: A callback for when a request is complete. Takes two parameters, a \WpOrg\Requests\Response/\WpOrg\Requests\Exception reference, and the ID from the request array (Note: this can also be overridden on a per-request basis, although that’s a little silly) (callback)

Parameters

$requestsarrayrequired
Requests data (see description for more information)
$optionsarrayoptional
Global and default options (see WpOrgRequestsRequests::request())

Default:array()

Return

array Responses (either WpOrgRequestsResponse or a WpOrgRequestsException object)

Source

public static function request_multiple($requests, $options = []) {
	if (InputValidator::has_array_access($requests) === false || InputValidator::is_iterable($requests) === false) {
		throw InvalidArgument::create(1, '$requests', 'array|ArrayAccess&Traversable', gettype($requests));
	}

	if (is_array($options) === false) {
		throw InvalidArgument::create(2, '$options', 'array', gettype($options));
	}

	$options = array_merge(self::get_default_options(true), $options);

	if (!empty($options['hooks'])) {
		$options['hooks']->register('transport.internal.parse_response', [static::class, 'parse_multiple']);
		if (!empty($options['complete'])) {
			$options['hooks']->register('multiple.request.complete', $options['complete']);
		}
	}

	foreach ($requests as $id => &$request) {
		if (!isset($request['headers'])) {
			$request['headers'] = [];
		}

		if (!isset($request['data'])) {
			$request['data'] = [];
		}

		if (!isset($request['type'])) {
			$request['type'] = self::GET;
		}

		if (!isset($request['options'])) {
			$request['options']         = $options;
			$request['options']['type'] = $request['type'];
		} else {
			if (empty($request['options']['type'])) {
				$request['options']['type'] = $request['type'];
			}

			$request['options'] = array_merge($options, $request['options']);
		}

		self::set_defaults($request['url'], $request['headers'], $request['data'], $request['type'], $request['options']);

		// Ensure we only hook in once
		if ($request['options']['hooks'] !== $options['hooks']) {
			$request['options']['hooks']->register('transport.internal.parse_response', [static::class, 'parse_multiple']);
			if (!empty($request['options']['complete'])) {
				$request['options']['hooks']->register('multiple.request.complete', $request['options']['complete']);
			}
		}
	}

	unset($request);

	if (!empty($options['transport'])) {
		$transport = $options['transport'];

		if (is_string($options['transport'])) {
			$transport = new $transport();
		}
	} else {
		$transport = self::get_transport();
	}

	$responses = $transport->request_multiple($requests, $options);

	foreach ($responses as $id => &$response) {
		// If our hook got messed with somehow, ensure we end up with the
		// correct response
		if (is_string($response)) {
			$request = $requests[$id];
			self::parse_multiple($response, $request);
			$request['options']['hooks']->dispatch('multiple.request.complete', [&$response, $id]);
		}
	}

	return $responses;
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.