spindle /
spindle-httpclient
This project does not seem to handle request data directly as such no vulnerable execution paths were found.
include, or for example
via PHP's auto-loading mechanism.
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
| 1 | <?php |
||
| 2 | /** |
||
| 3 | * spindle/httpclient |
||
| 4 | * @license CC0-1.0 (Public Domain) https://creativecommons.org/publicdomain/zero/1.0/ |
||
| 5 | * @see https://github.com/spindle/spindle-httpclient |
||
| 6 | */ |
||
| 7 | namespace Spindle\HttpClient; |
||
| 8 | |||
| 9 | class Multi implements \IteratorAggregate, \Countable |
||
| 10 | { |
||
| 11 | protected |
||
| 12 | $mh |
||
| 13 | , $timeout = 10 |
||
| 14 | , $pool = array() |
||
| 15 | ; |
||
| 16 | |||
| 17 | 2 | function __construct() { |
|
|
0 ignored issues
–
show
|
|||
| 18 | 2 | $this->mh = curl_multi_init(); |
|
| 19 | 2 | foreach (func_get_args() as $req) { |
|
| 20 | 1 | $this->attach($req); |
|
| 21 | 2 | } |
|
| 22 | 2 | } |
|
| 23 | |||
| 24 | 2 | function __destruct() |
|
|
0 ignored issues
–
show
|
|||
| 25 | { |
||
| 26 | 2 | $this->detachAll(); |
|
| 27 | 2 | curl_multi_close($this->mh); |
|
| 28 | 2 | } |
|
| 29 | |||
| 30 | 1 | function setTimeout($num) |
|
|
0 ignored issues
–
show
|
|||
| 31 | { |
||
| 32 | 1 | $this->timeout = $num; |
|
| 33 | 1 | return $this; |
|
| 34 | } |
||
| 35 | |||
| 36 | 2 | View Code Duplication | function attach(Request $req) |
|
0 ignored issues
–
show
|
|||
| 37 | { |
||
| 38 | 2 | $handle = $req->getHandle(); |
|
| 39 | 2 | $this->pool[(int)$handle] = $req; |
|
| 40 | |||
| 41 | 2 | curl_multi_add_handle($this->mh, $handle); |
|
| 42 | 2 | } |
|
| 43 | |||
| 44 | 1 | View Code Duplication | function detach(Request $req) |
|
0 ignored issues
–
show
|
|||
| 45 | { |
||
| 46 | 1 | $handle = $req->getHandle(); |
|
| 47 | 1 | unset($this->pool[(int)$handle]); |
|
| 48 | |||
| 49 | 1 | curl_multi_remove_handle($this->mh, $handle); |
|
| 50 | 1 | } |
|
| 51 | |||
| 52 | 2 | function start() |
|
|
0 ignored issues
–
show
|
|||
| 53 | { |
||
| 54 | 2 | $mh = $this->mh; |
|
| 55 | |||
| 56 | 2 | do $stat = curl_multi_exec($mh, $running); |
|
| 57 | 2 | while ($stat === \CURLM_CALL_MULTI_PERFORM); |
|
| 58 | 2 | return curl_multi_select($mh, 0); |
|
| 59 | } |
||
| 60 | |||
| 61 | /** |
||
| 62 | * イベントが発生するのを待って、何かレスポンスが得られればその配列を返す。 |
||
| 63 | * これを実行すると、不要になったrequestオブジェクトはdetachします |
||
| 64 | * |
||
| 65 | * @return Request[] |
||
| 66 | */ |
||
| 67 | function getFinishedResponses() |
||
|
0 ignored issues
–
show
|
|||
| 68 | { |
||
| 69 | $mh = $this->mh; |
||
| 70 | $requests = array(); |
||
| 71 | |||
| 72 | switch (curl_multi_select($mh, $this->timeout)) { |
||
| 73 | case 0: |
||
| 74 | throw new \RuntimeException('timeout?'); |
||
| 75 | |||
| 76 | case -1: |
||
| 77 | default: |
||
| 78 | do $stat = curl_multi_exec($mh, $running); |
||
| 79 | while ($stat === \CURLM_CALL_MULTI_PERFORM); |
||
| 80 | |||
| 81 | do if ($raised = curl_multi_info_read($mh, $remains)) { |
||
| 82 | $info = curl_getinfo($raised['handle']); |
||
| 83 | $body = curl_multi_getcontent($raised['handle']); |
||
| 84 | |||
| 85 | $response = new Response($body, $info); |
||
| 86 | $request = $this->pool[(int)$raised['handle']]; |
||
| 87 | |||
| 88 | $request->setResponse($response); |
||
| 89 | $this->detach($request); |
||
| 90 | |||
| 91 | View Code Duplication | if (CURLE_OK !== $raised['result']) { |
|
| 92 | $error = new CurlException(curl_error($raised['handle']), $raised['result']); |
||
| 93 | $request->setError($error); |
||
| 94 | } |
||
| 95 | |||
| 96 | $requests[] = $request; |
||
| 97 | |||
| 98 | } while ($remains); |
||
|
0 ignored issues
–
show
The expression
$remains of type integer|null is loosely compared to true; this is ambiguous if the integer can be zero. You might want to explicitly use !== null instead.
In PHP, under loose comparison (like For 0 == false // true
0 == null // true
123 == false // false
123 == null // false
// It is often better to use strict comparison
0 === false // false
0 === null // false
Loading history...
|
|||
| 99 | } |
||
| 100 | |||
| 101 | return $requests; |
||
| 102 | } |
||
| 103 | |||
| 104 | 2 | function waitResponse() |
|
|
0 ignored issues
–
show
|
|||
| 105 | { |
||
| 106 | 2 | $mh = $this->mh; |
|
| 107 | |||
| 108 | 2 | do switch (curl_multi_select($mh, $this->timeout)) { |
|
| 109 | 2 | case 0: |
|
| 110 | 1 | throw new \RuntimeException('timeout.'); |
|
| 111 | |||
| 112 | 1 | case -1: |
|
| 113 | 1 | default: |
|
| 114 | 1 | do $stat = curl_multi_exec($mh, $running); |
|
| 115 | 1 | while ($stat === \CURLM_CALL_MULTI_PERFORM); |
|
| 116 | |||
| 117 | 1 | do if ($raised = curl_multi_info_read($mh, $remains)) { |
|
| 118 | 1 | $info = curl_getinfo($raised['handle']); |
|
| 119 | 1 | $body = curl_multi_getcontent($raised['handle']); |
|
| 120 | |||
| 121 | 1 | $response = new Response($body, $info); |
|
| 122 | 1 | $request = $this->pool[(int)$raised['handle']]; |
|
| 123 | |||
| 124 | 1 | $request->setResponse($response); |
|
| 125 | 1 | View Code Duplication | if (CURLE_OK !== $raised['result']) { |
| 126 | $error = new CurlException(curl_error($raised['handle']), $raised['result']); |
||
| 127 | $request->setError($error); |
||
| 128 | } |
||
| 129 | |||
| 130 | 1 | } while ($remains); |
|
|
0 ignored issues
–
show
The expression
$remains of type integer|null is loosely compared to true; this is ambiguous if the integer can be zero. You might want to explicitly use !== null instead.
In PHP, under loose comparison (like For 0 == false // true
0 == null // true
123 == false // false
123 == null // false
// It is often better to use strict comparison
0 === false // false
0 === null // false
Loading history...
|
|||
| 131 | 1 | } while ($running); |
|
| 132 | 1 | } |
|
| 133 | |||
| 134 | 2 | function send() |
|
|
0 ignored issues
–
show
|
|||
| 135 | { |
||
| 136 | 2 | $this->start(); |
|
| 137 | 2 | $this->waitResponse(); |
|
| 138 | 1 | } |
|
| 139 | |||
| 140 | 2 | function detachAll() |
|
|
0 ignored issues
–
show
|
|||
| 141 | { |
||
| 142 | 2 | foreach ($this->pool as $request) { |
|
| 143 | 2 | curl_multi_remove_handle($this->mh, $request->getHandle()); |
|
| 144 | 2 | } |
|
| 145 | |||
| 146 | 2 | $this->pool = array(); |
|
| 147 | 2 | } |
|
| 148 | |||
| 149 | /** |
||
| 150 | * @override IteratorAggregate::getIterator |
||
| 151 | */ |
||
| 152 | 1 | function getIterator() |
|
|
0 ignored issues
–
show
|
|||
| 153 | { |
||
| 154 | 1 | return new \ArrayIterator($this->pool); |
|
| 155 | } |
||
| 156 | |||
| 157 | /** |
||
| 158 | * @override Countable::count |
||
| 159 | */ |
||
| 160 | 1 | function count() |
|
|
0 ignored issues
–
show
|
|||
| 161 | { |
||
| 162 | 1 | return count($this->pool); |
|
| 163 | } |
||
| 164 | } |
||
| 165 |
Adding explicit visibility (
private,protected, orpublic) is generally recommend to communicate to other developers how, and from where this method is intended to be used.