Skip to content

Commit 43198c0

Browse files
authored
Merge pull request #2 from php-middleware/psr-15
Add support for psr-15
2 parents b588404 + 387c14c commit 43198c0

6 files changed

+100
-45
lines changed

.travis.yml

+13-14
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
language: php
22

3-
matrix:
4-
fast_finish: true
5-
include:
6-
- php: 5.5
7-
- php: 5.6
8-
- php: 7
9-
- php: hhvm
10-
allow_failures:
11-
- php: 7
12-
- php: hhvm
3+
php:
4+
- 5.5
5+
- 5.6
6+
- 7.0
7+
- 7.1
8+
- hhvm
139

14-
install:
15-
- travis_retry composer install --no-interaction --ignore-platform-reqs --prefer-source
16-
- composer info -i
10+
env:
11+
- COMPOSER_FLAGS=--prefer-lowest
12+
- COMPOSER_FLAGS=
13+
14+
before_script:
15+
- composer update --no-interaction --no-suggest --prefer-dist $COMPOSER_FLAGS
1716

1817
script:
19-
- ./vendor/bin/phpunit
18+
- vendor/bin/phpunit

README.md

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
# log-http-messages middleware [![Build Status](https://travis-ci.org/php-middleware/log-http-messages.svg)](https://travis-ci.org/php-middleware/log-http-messages)
2-
Middleware for log PSR-7 HTTP messages using PSR-3 logger
2+
PSR-15 middleware for log PSR-7 HTTP messages using PSR-3 logger
33

44
This middleware provide framework-agnostic possibility to log request and response messages to PSR-3 logger.
5+
Support double and single (PSR-15) pass middleware.
56

67
## Installation
78

8-
```json
9-
{
10-
"require": {
11-
"php-middleware/log-http-messages": "^2.0.0"
12-
}
13-
}
9+
```
10+
composer require php-middleware/log-http-messages
1411
```
1512

1613
To log http messages you need pass into `LogRequestMiddleware` implementation of `PhpMiddleware\LogHttpMessages\Formatter\HttpMessagesFormatter`,

composer.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
{
22
"name": "php-middleware/log-http-messages",
3-
"description": "Request and response middleware logger with PSR-7 and PSR-3",
3+
"description": "PSR-15 middleware for log PSR-7 HTTP messages using PSR-3 logger",
44
"type": "library",
55
"keywords": [
66
"debug",
77
"middleware",
88
"psr",
99
"psr-7",
10+
"psr-15",
1011
"log",
1112
"logger",
1213
"psr-3"
@@ -15,10 +16,11 @@
1516
"php": ">=5.5",
1617
"psr/log": "^1.0.0",
1718
"psr/http-message": "^1.0",
18-
"zendframework/zend-diactoros": "^1.1.3"
19+
"zendframework/zend-diactoros": "^1.1.3",
20+
"http-interop/http-middleware": "^0.4.1"
1921
},
2022
"require-dev": {
21-
"phpunit/phpunit": "^4.8.6"
23+
"phpunit/phpunit": "^4.8"
2224
},
2325
"autoload": {
2426
"psr-4": {

src/LogMiddleware.php

+38-7
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,16 @@
22

33
namespace PhpMiddleware\LogHttpMessages;
44

5+
use Interop\Http\ServerMiddleware\DelegateInterface;
6+
use Interop\Http\ServerMiddleware\MiddlewareInterface;
57
use PhpMiddleware\LogHttpMessages\Formatter\HttpMessagesFormatter;
68
use Psr\Http\Message\ResponseInterface as Response;
79
use Psr\Http\Message\ServerRequestInterface as ServerRequest;
810
use Psr\Log\LoggerInterface as Logger;
911
use Psr\Log\LogLevel;
12+
use UnexpectedValueException;
1013

11-
class LogMiddleware
14+
class LogMiddleware implements MiddlewareInterface
1215
{
1316
/**
1417
* @var Logger
@@ -26,7 +29,8 @@ class LogMiddleware
2629
protected $formatter;
2730

2831
/**
29-
* @param LoggerInterface $logger
32+
* @param HttpMessagesFormatter $formatter
33+
* @param Logger $logger
3034
* @param int $level
3135
*/
3236
public function __construct(HttpMessagesFormatter $formatter, Logger $logger, $level = LogLevel::INFO)
@@ -41,20 +45,47 @@ public function __construct(HttpMessagesFormatter $formatter, Logger $logger, $l
4145
* @param Response $response
4246
* @param callable $next
4347
*
44-
* @return ResponseInterface
48+
* @return Response
4549
*/
4650
public function __invoke(ServerRequest $request, Response $response, callable $next)
4751
{
4852
$outResponse = $next($request, $response);
4953

50-
$messages = $this->formatter->format($request, $outResponse);
54+
$this->logMessages($request, $outResponse);
55+
56+
return $outResponse;
57+
}
58+
59+
/**
60+
* @param ServerRequest $request
61+
* @param DelegateInterface $delegate
62+
*
63+
* @return Response
64+
*/
65+
public function process(ServerRequest $request, DelegateInterface $delegate)
66+
{
67+
$response = $delegate->process($request);
68+
69+
$this->logMessages($request, $response);
70+
71+
return $response;
72+
}
73+
74+
/**
75+
* @param ServerRequest $request
76+
* @param Response $response
77+
*
78+
* @throws UnexpectedValueException
79+
*/
80+
private function logMessages(ServerRequest $request, Response $response)
81+
{
82+
$messages = $this->formatter->format($request, $response);
5183

5284
if (!is_string($messages)) {
53-
throw new \UnexpectedValueException(sprintf('%s must return string', HttpMessagesFormatter::class));
85+
throw new UnexpectedValueException(sprintf('%s must return string', HttpMessagesFormatter::class));
5486
}
5587

5688
$this->logger->log($this->level, $messages);
57-
58-
return $outResponse;
5989
}
90+
6091
}

test/Formatter/BothFormatterTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ public function testFormatter()
2828

2929
$result = $this->formatter->format($request, $response);
3030

31-
$this->assertSame("Request: GET /php-middleware/log-http-messages HTTP/1.1\r\nAccept: text/html; Response HTTP/1.1 500 Internal Server Error\r\nContent-Type: text/html", $result);
31+
$this->assertContains('; Response ', $result);
3232
}
3333
}

test/LogMiddlewareTest.php

+39-13
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,27 @@
22

33
namespace PhpMiddlewareTest\LogHttpMessages;
44

5+
use Interop\Http\ServerMiddleware\DelegateInterface;
56
use PhpMiddleware\LogHttpMessages\Formatter\HttpMessagesFormatter;
67
use PhpMiddleware\LogHttpMessages\LogMiddleware;
78
use PHPUnit_Framework_TestCase;
89
use Psr\Http\Message\ResponseInterface;
910
use Psr\Http\Message\ServerRequestInterface;
1011
use Psr\Log\LoggerInterface;
1112
use Psr\Log\LogLevel;
13+
use UnexpectedValueException;
1214

1315
class LogMiddlewareTest extends PHPUnit_Framework_TestCase
1416
{
15-
protected $middleware;
17+
public $middleware;
1618
protected $formatter;
1719
protected $logger;
1820
protected $request;
1921
protected $response;
2022
protected $next;
2123
protected $level;
24+
protected $delegate;
25+
protected $nextResponse;
2226

2327
protected function setUp()
2428
{
@@ -28,6 +32,8 @@ protected function setUp()
2832
$this->next = function () {
2933
return $this->nextResponse;
3034
};
35+
$this->delegate = $this->getMock(DelegateInterface::class);
36+
$this->delegate->method('process')->willReturn($this->nextResponse);
3137

3238
$this->formatter = $this->getMock(HttpMessagesFormatter::class);
3339
$this->logger = $this->getMock(LoggerInterface::class);
@@ -36,28 +42,48 @@ protected function setUp()
3642
$this->middleware = new LogMiddleware($this->formatter, $this->logger, $this->level);
3743
}
3844

39-
public function testLogMessage()
45+
/**
46+
* @dataProvider middlewareProvider
47+
*/
48+
public function testLogFormattedMessages($middlewareExecutor)
4049
{
41-
$this->formatter->expects($this->once())->method('format')->with($this->request, $this->nextResponse)->willReturn('boo');
42-
$this->logger->expects($this->once())->method('log')->with($this->level, 'boo');
43-
44-
$response = $this->executeMiddleware();
50+
$this->formatter->method('format')->with($this->request, $this->nextResponse)->willReturn('formattedMessages');
51+
$this->logger->expects($this->once())->method('log')->with($this->level, 'formattedMessages');
4552

46-
$this->assertSame($this->nextResponse, $response);
53+
$middlewareExecutor($this);
4754
}
4855

4956
/**
50-
* @expectedException \UnexpectedValueException
57+
* @dataProvider middlewareProvider
5158
*/
52-
public function testTryToLogNullMessage()
59+
public function testTryToLogNullMessage($middlewareExecutor)
5360
{
54-
$this->formatter->expects($this->once())->method('format')->willReturn(null);
61+
$this->formatter->method('format')->willReturn(null);
62+
63+
$this->setExpectedException(UnexpectedValueException::class);
64+
65+
$middlewareExecutor($this);
66+
}
5567

56-
$this->executeMiddleware();
68+
public function middlewareProvider()
69+
{
70+
return [
71+
'double pass' => [function ($test) {
72+
return $test->executeDoublePassMiddleware();
73+
}],
74+
'single pass' => [function ($test) {
75+
return $test->executeSinglePassMiddleware();
76+
}],
77+
];
5778
}
5879

59-
public function executeMiddleware()
80+
protected function executeDoublePassMiddleware()
6081
{
6182
return call_user_func($this->middleware, $this->request, $this->response, $this->next);
6283
}
63-
}
84+
85+
protected function executeSinglePassMiddleware()
86+
{
87+
return $this->middleware->process($this->request, $this->delegate);
88+
}
89+
}

0 commit comments

Comments
 (0)