3 * Virtual HTTP service client
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
24 * Virtual HTTP service client loosely styled after a Virtual File System
26 * Services can be mounted on path prefixes so that virtual HTTP operations
27 * against sub-paths will map to those services. Operations can actually be
28 * done using HTTP messages over the wire or may simple be emulated locally.
30 * Virtual HTTP request maps are arrays that use the following format:
31 * - method : GET/HEAD/PUT/POST/DELETE
32 * - url : HTTP/HTTPS URL or virtual service path with a registered prefix
33 * - query : <query parameter field/value associative array> (uses RFC 3986)
34 * - headers : <header name/value associative array>
35 * - body : source to get the HTTP request body from;
36 * this can simply be a string (always), a resource for
37 * PUT requests, and a field/value array for POST request;
38 * array bodies are encoded as multipart/form-data and strings
39 * use application/x-www-form-urlencoded (headers sent automatically)
40 * - stream : resource to stream the HTTP response body to
41 * Request maps can use integer index 0 instead of 'method' and 1 instead of 'url'.
43 * @author Aaron Schulz
46 class VirtualRESTServiceClient
{
47 /** @var MultiHttpClient */
49 /** @var VirtualRESTService[] Map of (prefix => VirtualRESTService) */
50 protected $instances = [];
52 const VALID_MOUNT_REGEX
= '#^/[0-9a-z]+/([0-9a-z]+/)*$#';
55 * @param MultiHttpClient $http
57 public function __construct( MultiHttpClient
$http ) {
62 * Map a prefix to service handler
64 * @param string $prefix Virtual path
65 * @param VirtualRESTService $instance
67 public function mount( $prefix, VirtualRESTService
$instance ) {
68 if ( !preg_match( self
::VALID_MOUNT_REGEX
, $prefix ) ) {
69 throw new UnexpectedValueException( "Invalid service mount point '$prefix'." );
70 } elseif ( isset( $this->instances
[$prefix] ) ) {
71 throw new UnexpectedValueException( "A service is already mounted on '$prefix'." );
73 $this->instances
[$prefix] = $instance;
77 * Unmap a prefix to service handler
79 * @param string $prefix Virtual path
81 public function unmount( $prefix ) {
82 if ( !preg_match( self
::VALID_MOUNT_REGEX
, $prefix ) ) {
83 throw new UnexpectedValueException( "Invalid service mount point '$prefix'." );
84 } elseif ( !isset( $this->instances
[$prefix] ) ) {
85 throw new UnexpectedValueException( "No service is mounted on '$prefix'." );
87 unset( $this->instances
[$prefix] );
91 * Get the prefix and service that a virtual path is serviced by
94 * @return array (prefix,VirtualRESTService) or (null,null) if none found
96 public function getMountAndService( $path ) {
97 $cmpFunc = function( $a, $b ) {
98 $al = substr_count( $a, '/' );
99 $bl = substr_count( $b, '/' );
101 return 0; // should not actually happen
103 return ( $al < $bl ) ?
1 : -1; // largest prefix first
106 $matches = []; // matching prefixes (mount points)
107 foreach ( $this->instances
as $prefix => $service ) {
108 if ( strpos( $path, $prefix ) === 0 ) {
109 $matches[] = $prefix;
112 usort( $matches, $cmpFunc );
114 // Return the most specific prefix and corresponding service
115 return isset( $matches[0] )
116 ?
[ $matches[0], $this->instances
[$matches[0]] ]
121 * Execute a virtual HTTP(S) request
123 * This method returns a response map of:
124 * - code : HTTP response code or 0 if there was a serious cURL error
125 * - reason : HTTP response reason (empty if there was a serious cURL error)
126 * - headers : <header name/value associative array>
127 * - body : HTTP response body or resource (if "stream" was set)
128 * - error : Any cURL error string
129 * The map also stores integer-indexed copies of these values. This lets callers do:
131 * list( $rcode, $rdesc, $rhdrs, $rbody, $rerr ) = $client->run( $req );
133 * @param array $req Virtual HTTP request maps
134 * @return array Response array for request
136 public function run( array $req ) {
137 return $this->runMulti( [ $req ] )[0];
141 * Execute a set of virtual HTTP(S) requests concurrently
143 * A map of requests keys to response maps is returned. Each response map has:
144 * - code : HTTP response code or 0 if there was a serious cURL error
145 * - reason : HTTP response reason (empty if there was a serious cURL error)
146 * - headers : <header name/value associative array>
147 * - body : HTTP response body or resource (if "stream" was set)
148 * - error : Any cURL error string
149 * The map also stores integer-indexed copies of these values. This lets callers do:
151 * list( $rcode, $rdesc, $rhdrs, $rbody, $rerr ) = $responses[0];
154 * @param array $reqs Map of Virtual HTTP request maps
155 * @return array $reqs Map of corresponding response values with the same keys/order
158 public function runMulti( array $reqs ) {
159 foreach ( $reqs as $index => &$req ) {
160 if ( isset( $req[0] ) ) {
161 $req['method'] = $req[0]; // short-form
164 if ( isset( $req[1] ) ) {
165 $req['url'] = $req[1]; // short-form
168 $req['chain'] = []; // chain or list of replaced requests
170 unset( $req ); // don't assign over this by accident
173 $armoredIndexMap = []; // (original index => new index)
175 $doneReqs = []; // (index => request)
176 $executeReqs = []; // (index => request)
177 $replaceReqsByService = []; // (prefix => index => request)
178 $origPending = []; // (index => 1) for original requests
180 foreach ( $reqs as $origIndex => $req ) {
181 // Re-index keys to consecutive integers (they will be swapped back later)
182 $index = $curUniqueId++
;
183 $armoredIndexMap[$origIndex] = $index;
184 $origPending[$index] = 1;
185 if ( preg_match( '#^(http|ftp)s?://#', $req['url'] ) ) {
186 // Absolute FTP/HTTP(S) URL, run it as normal
187 $executeReqs[$index] = $req;
189 // Must be a virtual HTTP URL; resolve it
190 list( $prefix, $service ) = $this->getMountAndService( $req['url'] );
192 throw new UnexpectedValueException( "Path '{$req['url']}' has no service." );
194 // Set the URL to the mount-relative portion
195 $req['url'] = substr( $req['url'], strlen( $prefix ) );
196 $replaceReqsByService[$prefix][$index] = $req;
200 // Function to get IDs that won't collide with keys in $armoredIndexMap
201 $idFunc = function() use ( &$curUniqueId ) {
202 return $curUniqueId++
;
207 if ( ++
$rounds > 5 ) { // sanity
208 throw new Exception( "Too many replacement rounds detected. Aborting." );
210 // Track requests executed this round that have a prefix/service.
211 // Note that this also includes requests where 'response' was forced.
212 $checkReqIndexesByPrefix = [];
213 // Resolve the virtual URLs valid and qualified HTTP(S) URLs
214 // and add any required authentication headers for the backend.
215 // Services can also replace requests with new ones, either to
216 // defer the original or to set a proxy response to the original.
217 $newReplaceReqsByService = [];
218 foreach ( $replaceReqsByService as $prefix => $servReqs ) {
219 $service = $this->instances
[$prefix];
220 foreach ( $service->onRequests( $servReqs, $idFunc ) as $index => $req ) {
221 // Services use unique IDs for replacement requests
222 if ( isset( $servReqs[$index] ) ||
isset( $origPending[$index] ) ) {
223 // A current or original request which was not modified
225 // Replacement request that will convert to original requests
226 $newReplaceReqsByService[$prefix][$index] = $req;
228 if ( isset( $req['response'] ) ) {
229 // Replacement requests with pre-set responses should not execute
230 unset( $executeReqs[$index] );
231 unset( $origPending[$index] );
232 $doneReqs[$index] = $req;
234 // Original or mangled request included
235 $executeReqs[$index] = $req;
237 $checkReqIndexesByPrefix[$prefix][$index] = 1;
240 // Update index of requests to inspect for replacement
241 $replaceReqsByService = $newReplaceReqsByService;
242 // Run the actual work HTTP requests
243 foreach ( $this->http
->runMulti( $executeReqs ) as $index => $ranReq ) {
244 $doneReqs[$index] = $ranReq;
245 unset( $origPending[$index] );
248 // Services can also replace requests with new ones, either to
249 // defer the original or to set a proxy response to the original.
250 // Any replacement requests executed above will need to be replaced
251 // with new requests (eventually the original). The responses can be
252 // forced by setting 'response' rather than actually be sent over the wire.
253 $newReplaceReqsByService = [];
254 foreach ( $checkReqIndexesByPrefix as $prefix => $servReqIndexes ) {
255 $service = $this->instances
[$prefix];
256 // $doneReqs actually has the requests (with 'response' set)
257 $servReqs = array_intersect_key( $doneReqs, $servReqIndexes );
258 foreach ( $service->onResponses( $servReqs, $idFunc ) as $index => $req ) {
259 // Services use unique IDs for replacement requests
260 if ( isset( $servReqs[$index] ) ||
isset( $origPending[$index] ) ) {
261 // A current or original request which was not modified
263 // Replacement requests with pre-set responses should not execute
264 $newReplaceReqsByService[$prefix][$index] = $req;
266 if ( isset( $req['response'] ) ) {
267 // Replacement requests with pre-set responses should not execute
268 unset( $origPending[$index] );
269 $doneReqs[$index] = $req;
271 // Update the request in case it was mangled
272 $executeReqs[$index] = $req;
276 // Update index of requests to inspect for replacement
277 $replaceReqsByService = $newReplaceReqsByService;
278 } while ( count( $origPending ) );
281 // Update $reqs to include 'response' and normalized request 'headers'.
282 // This maintains the original order of $reqs.
283 foreach ( $reqs as $origIndex => $req ) {
284 $index = $armoredIndexMap[$origIndex];
285 if ( !isset( $doneReqs[$index] ) ) {
286 throw new UnexpectedValueException( "Response for request '$index' is NULL." );
288 $responses[$origIndex] = $doneReqs[$index]['response'];