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 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450
| <?php
/**
* Permet de récuperer des fichiers avec CURL
*
* @package Step
* @see Step.php
* @version 1.0 - 18/08/2009
*/
class Step_GetDoc extends Step {
/**
* Chemin d'enregistrement des fichiers
* @var string
*/
protected $_downloadDirectory;
/**
* Nom du fichier que l'on souhaite
* @var string
*/
protected $_fileName;
/**
* Surcharge du constructeur. Permet de définir un prefix pour le nom du fichier de sorti
*/
public function __construct ( $url, array &$options = NULL ) {
$this->_curlOptions = array();
parent::__construct( $url, $options );
$this->_fileName = uniqid() . 'pdf';
$this->_downloadDirectory = dirname(dirname(__FILE__)) . '/tmp';
}
/**
* Surcharge de la méthode exec
* La sortie est écrit dans le fichier
* @see Step.php
* @return mixed $response
*/
public function exec() {
$file = $this->getPathDownload();
$f = fopen( $file, 'w' );
$this->setOption (CURLOPT_RETURNTRANSFER, true );
$this->setOption (CURLOPT_BINARYTRANSFER, true );
$this->setOption (CURLOPT_FILE, $f );
//$this->setOption (CURLOPT_HEADER, false );
//$this->setOption (CURLOPT_NOBODY, true );
$this->_response = curl_exec( $this->_curlResource );
if ( $this->_response === false ) {
throw new Step_Exception ('La requete ne s\'est pas effectuée correctement');
}
if( $err = curl_errno( $this->_curlResource ) ) {
throw new Step_Exception ('cURL error - '.$err);
}
//0xc4
//$this->_response = preg_replace('#.*0xc4(.*)$#i','$1', $this->_response);
//fwrite($f, $this->_response);
$b = fclose($f);
vD($b);
vD($this->_response);
return ($this->_response);
}
/**
* Permet de définir le chemin d'enregistrement des fichiers
* @throws Step_Exception
* @param string $dir
*/
public function setPathDowloadDir ( $dir ) {
if ( !is_dir($dir) ) {
throw new Step_Exception ('Le dossier ' . $dir . ' n\'existe pas');
}
$this->_downloadDirectory = $dir;
}
/**
* Permet de définir le nom du fichier
* @param string $fileName
*/
public function setFileName ( $fileName ) {
if ( !is_string($fileName) || empty($fileName) ) {
throw new Step_Exception('Nom de fichier nom valide');
}
$this->_fileName = $filename;
}
/**
* Permet de retourner le chemin des fichiers.
* @return string $file
*/
public function getPathDownload () {
$file = $this->_downloadDirectory . DIRECTORY_SEPARATOR . $this->_fileName;
return ( $file );
}
}
/**
* Class : Step
*
* Description :
* Il s'agit de la classe modélisant une étape dans un scénario.
*
* TODO : Il serait plus interessant de creer une classe config pour le chargement des différentes options CURL.
* @version 1.0 - 17/08/2009
*/
class Step {
/**
* La ressource retourner par cURL
* @var resource
*/
protected $_curlResource = NULL;
/**
* Les différentes options cURL
*
* CURLOPT_COOKIEFILE et CURLOPT_COOKIEJAR sont initialialisé dans le constructeur
*
* @var array
*/
protected $_curlOptions = array (
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HEADER => true,
//CURLOPT_MUTE => true,
CURLOPT_REFERER => 'http://www.google.fr',
CURLOPT_NOPROGRESS => true,
CURLOPT_USERAGENT => "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; fr; rv:1.9.0.6) Gecko/2009011912 Firefox/3.0.6",
CURLOPT_HTTPHEADER => array(
"Accept: text/xml,application/xml,application/xhtml+xml,
text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5",
"Accept-Language: fr,fr-fr;q=0.8,en-us;q=0.5,en;q=0.3",
"Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7",
"Keep-Alive: 300"
),
CURLOPT_TIMEOUT => 30,
CURLOPT_SSL_VERIFYPEER => 0,
CURLOPT_COOKIESESSION => true,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_FRESH_CONNECT => true,
);
/**
* Les constantes de cURL
* @var array
*/
protected $_curlConstants;
/**
* La réponse, le header de la réponse
* @var string
*/
protected $_response, $_header;
/**
* Tableau associatif contenant tous les cookies reçu
* @var array
*/
protected $_cookies = array();
/**
* Fichier des cookies
* @var string
*/
protected $_cookiesFile;
/**
* Permet de déclarer la ressource cURL
* @param string $url : L'url de la page cible
* @param array $options optional : les différentes options de cURL que l'on souhaite initialiser.
* @throws Step_Exception
* @return void
*/
public function __construct ( $url, array &$options = NULL ) {
$this->_curlConstants = get_defined_constants(true);
$this->_curlConstants = $this->_curlConstants['curl'];
if ( $url instanceof Step ) {
$this->_curlResource = $url->getCurlResourse();
$this->_cookies = $url->getCookies();
} else {
if ( !$this->_isUrlValid($url) ) {
throw new Step_Exception('L\'url " ' . $url . ' " semble ne pas être valide');
}
$this->_curlResource = curl_init();
$this->setOption(CURLOPT_URL, $url );
$this->_cookiesFile = dirname(__FILE__) . '/logs/cookie.' . uniqid() . '.log';
$this->_curlOptions[CURLOPT_COOKIEFILE] = $this->_cookiesFile;
$this->_curlOptions[CURLOPT_COOKIEJAR] = $this->_cookiesFile;
}
$curlOption = $this->_curlOptions;
unset($this->_curlOptions);
$this->setOptions($curlOption);
if ( !is_null($options) ) {
$this->setOptions ( $options );
}
}
/**
* Vérifie la validité d'une url
* @return bool
*/
protected function _isUrlValid ($url) {
//return ( preg_match( '#^http(s)?://(www\.)?[a-z0-9._-]+[a-z0-9]{2-4}#i', $url) );
return true;
}
/**
* Permet de prefixer correctement une option cURL
* @param string $optName : Le nom de l'option que l'on cherche à prefixer correctement
* @return string $optName : Le nom de l'option correctement prefixer
*/
protected function _getOptionName ( $optName ) {
$opt = $optName;
if ( !is_int($opt) ) {
$opt = strtoupper($opt);
if ( strpos ($opt, 'CURLOPT_') !== 0 ) {
$opt = 'CURLOPT_' . $opt;
}
if ( !array_key_exists( $opt, $this->_curlConstants ) ) {
throw new Step_Exception('Option de cURL non définie');
}
$opt = $this->_curlConstants[$opt];
}
return ($opt);
}
/**
* Ajouter/Modifier une option cURL
* @param string $optName : Le nom de l'option à modifier
* @param mixed $optValue : La valeur de l'option
* @throws Step_Exception
* @return void
*/
public function setOption ( $optName, $optValue ) {
$optName = $this->_getOptionName ( $optName );
$this->_curlOptions[$optName] = $optValue;
if ( ($r = curl_setopt( $this->_curlResource , $optName, $optValue)) === false ) {
throw new Step_Exception ('Impossible de fixer l\'option CURL ' . $optName . ' à la valeur => ' . $optValue);
}
}
/**
* Ajouter/Modifier des options cURL
* @param &array $options
* @return void
*/
public function setOptions ( array &$options ) {
foreach ($options as $optionName => $optionValue ) {
$this->setOption($optionName, $optionValue);
}
}
/**
* Retourne la valeur d'une option cURL
* @param string $optionName : Le nom de l'option que l'on recherche
* @return mixed
*/
public function getOption ( $optName ) {
if ( isset ($this->_curlOptions[$optName]) ) {
return ($this->_curlOptions[$optName]);
}
return ( false );
}
/**
* Retourne la valeur des options
* @return array
*/
public function getOptions () {
return ( $this->_curlOptions );
}
/**
* Execute une requete cURL
* @return mixed
* @throws Step_Exception
* @see http://fr.php.net/curl-exec
*/
public function exec () {
$this->setOption (CURLOPT_RETURNTRANSFER, true);
$this->setOption (CURLOPT_HEADER, true);
$this->_response = curl_exec( $this->_curlResource );
if ( $this->_response === false ) {
throw new Step_Exception ('La requete ne s\'est pas effectuée correctement');
}
if( $err = curl_errno( $this->_curlResource ) ) {
throw new Step_Exception ('cURL error - '.$err);
}
$this->_header = substr( $this->_response, 0, $this->getInfo('header_size'));
$this->_response = substr( $this->_response, $this->getInfo('header_size'));
$this->_setCookies($this->_header);
return ( $this->_response );
}
/**
* Retourne la resource cURL
* @return resource
*/
public function getCurlResourse () {
return ( $this->_curlResource );
}
/**
* Retourne les différentes infos sur la ressource courrance
* @return bool
*/
public function getInfo( $opt = '' ) {
if ( !is_null($this->_curlResource) ) {
$array = curl_getinfo($this->_curlResource);
if ( !empty($opt) && array_key_exists($opt, $array) ) {
$array = $array[$opt];
}
return ($array);
}
return (false);
}
/**
* Permet de retourner un tableau avec le contenu des cookies
* @param string $cookiesName optional : Le nom du cookies que l'on cherche à récupérer
* @return resource $_response
*/
public function getResponse () {
return ($this->_response);
}
/**
* Retourne l'en-tête du fichier
* @return string
*/
public function getHeader () {
return ($this->_header);
}
/**
* Permet de déterminer touts les cookies envoyer dans l'entête
*/
protected function _setCookies( $header ) {
$a = explode( "\n", $header );
$this->_cookies = array();
foreach( $a as $row ) {
$row = trim($row);
if ( !empty($row) && stripos($row, 'Set-Cookie') !== false ) {
$c = preg_split( "/[\s]+/", $row );
$exp = explode('=', $c[1]);
$this->_cookies[$exp[0]] = $exp[1];
}
}
}
/**
* Retourne les cookies envoyés lors du header
* @return array
*/
public function getCookies ( $cookiesName = '' ) {
if ( !empty($cookiesName) ) {
if ( array_key_exists($cookiesName, $this->_cookies) ) {
return ( $this->_cookies[$cookiesName] );
} else {
return (false);
}
}
return ($this->_cookies);
}
/**
* Supprime le fichier des cookies
* @throws Step_Exception
* @return bool
*/
public function removeCookiesFile () {
if ( false === ($ret=unlink($this->_cookiesFile)) ) {
throw new Step_Exception ('Impossible de supprimer le fichier de cookie : ' . $this->_cookiesFile);
}
return ($ret);
}
/**
* Détruit une resource cURL.
* @return void
*/
public function close () {
if ( !is_null($this->_curlResource) ) {
curl_close($this->_curlResource);
$this->_curlResource = NULL;
}
if ( is_file ($this->_cookiesFile) ) {
if ( false === unlink($this->_cookiesFile) ) {
throw new Step_Exception ('Impossible de supprimer le fichier de cookie : ' . $this->_cookiesFile);
}
return (true);
}
}
/**
* Retourner la réponse (éventuellement un objet contenant header/html/files/...)
*
* @return string
*/
public function __toString () {
$str = '<h2>' . get_class($this) . '</h2>';
return ($str);
}
}
/**
* Classe Step_Exception
*
* Description :
* Gestion des exceptions dans le système
*
* @version 1.0 - 17/08/2009
* @package Step
*/
class Step_Exception extends Exception {
public function __construct ( $msg ) {
parent::__construct('Step Class Error - Message : ' . $msg );
}
}
?> |
Partager