-
Notifications
You must be signed in to change notification settings - Fork 1
/
Curl.php
261 lines (226 loc) · 5.41 KB
/
Curl.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
<?php
namespace Siwayll\Mollicute;
use Siwayll\Mollicute\Curl\Header;
use Monolog\Logger;
/**
* Aspiration via Curl
*
* @author Siwaÿll <[email protected]>
* @license CC by-nc http://creativecommons.org/licenses/by-nc/3.0/fr/
*/
class Curl
{
/**
* Curl
*
* @var ressource
*/
private $curl = null;
/**
* Récupération des cookies
*
* @var boolean
*/
private $cookieCatch = false;
/**
* Header Curl
*
* @var Header
*/
public $header;
/**
*
* @var Logger
*/
private $log;
/**
* Options non surchargeable
*
* @var array
*/
protected $finalOpt = [];
/**
* Options
*
* @var array
*/
protected $options = [];
/**
* Initialisation d'une nouvelle connexion Curl
*/
public function __construct()
{
$this->curl = curl_init();
$this->header = new Header();
curl_setopt($this->curl, CURLOPT_RETURNTRANSFER, true);
}
/**
* Paramétrage de curl
*
* @param array $opts Parametrages sous la forme __Option Curl__ => __value__
*
* @return void
* @uses \Curl::setOpt application de la configuration
*/
public function setOpts(array $opts)
{
foreach ($opts as $key => $value) {
if (!is_int($key)) {
$key = constant($key);
}
$this->setOpt($key, $value);
}
return $this;
}
/**
* Paramètre l'aspiration curl
*
* Chaque option est enregistrée dans le tableau $options
*
* @param int $key L'option CURLOPT_XXX à définir.
* @param string $value Valeur de l'option
*
* @return \Curl
*/
public function setOpt($key, $value)
{
$this->options[$key] = $value;
curl_setopt($this->curl, $key, $value);
return $this;
}
/**
* Retourne le paramétrage curl
*
* @param int $key Option CURLOPT_XXX
*
* @return null|mixed
*/
public function getOpt($key)
{
if (isset($this->finalOpt[$key])) {
return $this->finalOpt[$key];
}
if (isset($this->options[$key])) {
return $this->options[$key];
}
return null;
}
/**
* Paramètre l'aspiration curl qui ne peut être surchargé.
*
* @param int $option L'option CURLOPT_XXX à définir.
* @param mixed $value La valeur à définir pour option.
*
* @return \Curl
* @throws \Exception lors de la redéfinition d'une opt finale.
*/
public function setFinalOpt($option, $value)
{
if (isset($this->finalOpt[$option])) {
throw new \Exception(CODE_ERROR_CURLMODIF, $this->infoHit);
}
$this->finalOpt[$option] = $value;
return $this;
}
/**
* Paramettrage du logger
*
* @param \Monolog\Logger $logger Logger
*
* @return self
*/
public function setLogger(Logger $logger)
{
$this->log = $logger;
return $this;
}
/**
* Active la récupération des cookies
* ATTENTION cela nécéssite d'afficher le header dans le fichier
*
* @return self
*/
public function catchCookies()
{
$this->cookieCatch = true;
$this->setOpt(CURLOPT_HEADER, true);
return $this;
}
/**
* Annule la récupération des cookies
*
* @return self
*/
public function catchCookiesStop()
{
$this->cookieCatch = false;
$this->setOpt(CURLOPT_HEADER, false);
return $this;
}
/**
* Récupère les cookies dans le header
*
* @param string $content Resultat de l'aspiration
*
* @return \Curl
* @throws \Exception si aucun cookie n'est détecté
*/
public function parseCookie($content)
{
if (!preg_match_all('#^Set-Cookie:\s*([^;]+)#mi', $content, $matchs)) {
if (strpos($content, 'Set-Cookie') !== false) {
throw new Exception('Aucun cookie');
}
$this->cookies = [];
return;
}
$trashCookie = implode('&', $matchs[1]);
parse_str($trashCookie, $this->cookies);
return $this;
}
/**
* Renvois le tableau des cookies
*
* @return []
*/
public function getCookies()
{
return $this->cookies;
}
/**
* Renvois la ressource Curl
*
* @return type
*/
public function get()
{
return $this->curl;
}
/**
* Récupération du contenu de la page.
*
* @param string $url Url de la page à aspirer
*
* @return string
*/
public function exec($url)
{
// Application des headers
$headers = $this->header->getHeader();
if (!empty($headers)) {
$this->setOpt(CURLOPT_HTTPHEADER, $headers);
}
// chargement des options non modifiables
foreach ($this->finalOpt as $option => $value) {
$this->setOpt($option, $value);
}
$this->setOpt(CURLOPT_URL, $url);
$this->log->addDebug('hit on ' . $url, [$headers]);
$content = curl_exec($this->curl);
if (curl_error($this->curl) !== '') {
$this->log->addWarning('Error ' . curl_error($this->curl));
}
$this->infoHit = curl_getinfo($this->curl);
return $content;
}
}