2009-10-28 19:29:20 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* An observer useful for debugging / testing.
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
2014-07-10 15:23:21 +01:00
|
|
|
* LICENSE
|
2009-10-28 19:29:20 +00:00
|
|
|
*
|
2014-07-10 15:23:21 +01:00
|
|
|
* This source file is subject to BSD 3-Clause License that is bundled
|
|
|
|
* with this package in the file LICENSE and available at the URL
|
|
|
|
* https://raw.github.com/pear/HTTP_Request2/trunk/docs/LICENSE
|
2009-10-28 19:29:20 +00:00
|
|
|
*
|
2014-07-10 15:23:21 +01:00
|
|
|
* @category HTTP
|
|
|
|
* @package HTTP_Request2
|
|
|
|
* @author David Jean Louis <izi@php.net>
|
|
|
|
* @author Alexey Borzov <avb@php.net>
|
|
|
|
* @copyright 2008-2014 Alexey Borzov <avb@php.net>
|
|
|
|
* @license http://opensource.org/licenses/BSD-3-Clause BSD 3-Clause License
|
|
|
|
* @link http://pear.php.net/package/HTTP_Request2
|
2009-10-28 19:29:20 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Exception class for HTTP_Request2 package
|
2011-06-22 20:56:27 +01:00
|
|
|
*/
|
2009-10-28 19:29:20 +00:00
|
|
|
require_once 'HTTP/Request2/Exception.php';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A debug observer useful for debugging / testing.
|
|
|
|
*
|
2011-06-22 20:56:27 +01:00
|
|
|
* This observer logs to a log target data corresponding to the various request
|
2009-10-28 19:29:20 +00:00
|
|
|
* and response events, it logs by default to php://output but can be configured
|
|
|
|
* to log to a file or via the PEAR Log package.
|
|
|
|
*
|
|
|
|
* A simple example:
|
|
|
|
* <code>
|
|
|
|
* require_once 'HTTP/Request2.php';
|
|
|
|
* require_once 'HTTP/Request2/Observer/Log.php';
|
|
|
|
*
|
|
|
|
* $request = new HTTP_Request2('http://www.example.com');
|
|
|
|
* $observer = new HTTP_Request2_Observer_Log();
|
|
|
|
* $request->attach($observer);
|
|
|
|
* $request->send();
|
|
|
|
* </code>
|
|
|
|
*
|
|
|
|
* A more complex example with PEAR Log:
|
|
|
|
* <code>
|
|
|
|
* require_once 'HTTP/Request2.php';
|
|
|
|
* require_once 'HTTP/Request2/Observer/Log.php';
|
|
|
|
* require_once 'Log.php';
|
|
|
|
*
|
|
|
|
* $request = new HTTP_Request2('http://www.example.com');
|
|
|
|
* // we want to log with PEAR log
|
|
|
|
* $observer = new HTTP_Request2_Observer_Log(Log::factory('console'));
|
|
|
|
*
|
|
|
|
* // we only want to log received headers
|
|
|
|
* $observer->events = array('receivedHeaders');
|
|
|
|
*
|
|
|
|
* $request->attach($observer);
|
|
|
|
* $request->send();
|
|
|
|
* </code>
|
|
|
|
*
|
|
|
|
* @category HTTP
|
|
|
|
* @package HTTP_Request2
|
|
|
|
* @author David Jean Louis <izi@php.net>
|
|
|
|
* @author Alexey Borzov <avb@php.net>
|
2014-07-10 15:23:21 +01:00
|
|
|
* @license http://opensource.org/licenses/BSD-3-Clause BSD 3-Clause License
|
|
|
|
* @version Release: 2.2.1
|
2009-10-28 19:29:20 +00:00
|
|
|
* @link http://pear.php.net/package/HTTP_Request2
|
|
|
|
*/
|
|
|
|
class HTTP_Request2_Observer_Log implements SplObserver
|
|
|
|
{
|
|
|
|
// properties {{{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The log target, it can be a a resource or a PEAR Log instance.
|
|
|
|
*
|
|
|
|
* @var resource|Log $target
|
|
|
|
*/
|
|
|
|
protected $target = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The events to log.
|
|
|
|
*
|
|
|
|
* @var array $events
|
|
|
|
*/
|
|
|
|
public $events = array(
|
|
|
|
'connect',
|
|
|
|
'sentHeaders',
|
2011-06-22 20:56:27 +01:00
|
|
|
'sentBody',
|
2009-10-28 19:29:20 +00:00
|
|
|
'receivedHeaders',
|
|
|
|
'receivedBody',
|
|
|
|
'disconnect',
|
|
|
|
);
|
|
|
|
|
|
|
|
// }}}
|
|
|
|
// __construct() {{{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor.
|
|
|
|
*
|
|
|
|
* @param mixed $target Can be a file path (default: php://output), a resource,
|
|
|
|
* or an instance of the PEAR Log class.
|
|
|
|
* @param array $events Array of events to listen to (default: all events)
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct($target = 'php://output', array $events = array())
|
|
|
|
{
|
|
|
|
if (!empty($events)) {
|
|
|
|
$this->events = $events;
|
|
|
|
}
|
|
|
|
if (is_resource($target) || $target instanceof Log) {
|
|
|
|
$this->target = $target;
|
2011-06-22 20:56:27 +01:00
|
|
|
} elseif (false === ($this->target = @fopen($target, 'ab'))) {
|
2009-10-28 19:29:20 +00:00
|
|
|
throw new HTTP_Request2_Exception("Unable to open '{$target}'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// }}}
|
|
|
|
// update() {{{
|
|
|
|
|
|
|
|
/**
|
2011-06-22 20:56:27 +01:00
|
|
|
* Called when the request notifies us of an event.
|
2009-10-28 19:29:20 +00:00
|
|
|
*
|
|
|
|
* @param HTTP_Request2 $subject The HTTP_Request2 instance
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function update(SplSubject $subject)
|
|
|
|
{
|
|
|
|
$event = $subject->getLastEvent();
|
|
|
|
if (!in_array($event['name'], $this->events)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch ($event['name']) {
|
|
|
|
case 'connect':
|
|
|
|
$this->log('* Connected to ' . $event['data']);
|
|
|
|
break;
|
|
|
|
case 'sentHeaders':
|
|
|
|
$headers = explode("\r\n", $event['data']);
|
|
|
|
array_pop($headers);
|
|
|
|
foreach ($headers as $header) {
|
|
|
|
$this->log('> ' . $header);
|
|
|
|
}
|
|
|
|
break;
|
2011-06-22 20:56:27 +01:00
|
|
|
case 'sentBody':
|
|
|
|
$this->log('> ' . $event['data'] . ' byte(s) sent');
|
2009-10-28 19:29:20 +00:00
|
|
|
break;
|
|
|
|
case 'receivedHeaders':
|
2013-10-05 13:29:02 +01:00
|
|
|
$this->log(sprintf(
|
|
|
|
'< HTTP/%s %s %s', $event['data']->getVersion(),
|
|
|
|
$event['data']->getStatus(), $event['data']->getReasonPhrase()
|
|
|
|
));
|
2009-10-28 19:29:20 +00:00
|
|
|
$headers = $event['data']->getHeader();
|
|
|
|
foreach ($headers as $key => $val) {
|
|
|
|
$this->log('< ' . $key . ': ' . $val);
|
|
|
|
}
|
|
|
|
$this->log('< ');
|
|
|
|
break;
|
|
|
|
case 'receivedBody':
|
|
|
|
$this->log($event['data']->getBody());
|
|
|
|
break;
|
|
|
|
case 'disconnect':
|
|
|
|
$this->log('* Disconnected');
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2011-06-22 20:56:27 +01:00
|
|
|
|
2009-10-28 19:29:20 +00:00
|
|
|
// }}}
|
|
|
|
// log() {{{
|
|
|
|
|
|
|
|
/**
|
2011-06-22 20:56:27 +01:00
|
|
|
* Logs the given message to the configured target.
|
2009-10-28 19:29:20 +00:00
|
|
|
*
|
|
|
|
* @param string $message Message to display
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function log($message)
|
|
|
|
{
|
|
|
|
if ($this->target instanceof Log) {
|
|
|
|
$this->target->debug($message);
|
|
|
|
} elseif (is_resource($this->target)) {
|
|
|
|
fwrite($this->target, $message . "\r\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// }}}
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|