Skip to content

Commit 68e946e

Browse files
authored
Merge pull request #3 from php-middleware/v3
V3
2 parents 43198c0 + 8baad8b commit 68e946e

18 files changed

+301
-216
lines changed

.travis.yml

+10-5
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,23 @@
11
language: php
22

33
php:
4-
- 5.5
5-
- 5.6
64
- 7.0
75
- 7.1
8-
- hhvm
96

107
env:
118
- COMPOSER_FLAGS=--prefer-lowest
129
- COMPOSER_FLAGS=
13-
14-
before_script:
10+
11+
before_install:
12+
- phpenv config-rm xdebug.ini
13+
14+
install:
1515
- composer update --no-interaction --no-suggest --prefer-dist $COMPOSER_FLAGS
1616

1717
script:
1818
- vendor/bin/phpunit
19+
20+
cache:
21+
directories:
22+
- $HOME/.composer/cache
23+
- vendor

README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,21 @@ Support double and single (PSR-15) pass middleware.
1010
composer require php-middleware/log-http-messages
1111
```
1212

13-
To log http messages you need pass into `LogRequestMiddleware` implementation of `PhpMiddleware\LogHttpMessages\Formatter\HttpMessagesFormatter`,
14-
instance `Psr\Log\LoggerInterface` and add middleware to your middleware runner.
15-
Third parameter is log level and it's optional (`Psr\Log\LogLevel::INFO` as default).
13+
To log http messages you need pass into `LogRequestMiddleware` implementation of
14+
`PhpMiddleware\LogHttpMessages\Formatter\ServerRequestFormatter`,
15+
`PhpMiddleware\LogHttpMessages\Formatter\ResponseFormatter`,
16+
instance `Psr\Log\LoggerInterface` and add this middleware to your middleware runner.
17+
You can also set log level (`Psr\Log\LogLevel::INFO` as default) and log message (`Request/Response` as default).
1618

17-
There are tree implementation of `PhpMiddleware\LogHttpMessages\Formatter\HttpMessagesFormatter`:
19+
Provided implementation of formatters:
1820

19-
* `PhpMiddleware\LogHttpMessages\Formatter\RequestFormatter` to log request message,
20-
* `PhpMiddleware\LogHttpMessages\Formatter\ResponseFormatter` to log response message,
21-
* `PhpMiddleware\LogHttpMessages\Formatter\BothFormatter` to log request and response message.
21+
* `PhpMiddleware\LogHttpMessages\Formatter\EmptyMessageFormatter`,
22+
* `PhpMiddleware\LogHttpMessages\Formatter\ZendDiactorosToArrayMessageFormatter`,
23+
* `PhpMiddleware\LogHttpMessages\Formatter\ZendDiactorosToStringMessageFormatter`.
2224

2325
```php
24-
$requestFormatter = PhpMiddleware\LogHttpMessages\Formatter\RequestFormatter();
25-
$responseFormatter = PhpMiddleware\LogHttpMessages\Formatter\ResponseFormatter();
26-
$formatter = new PhpMiddleware\LogHttpMessages\Formatter\BothFormatter(requestFormatter, responseFormatter);
27-
$logMiddleware = new PhpMiddleware\LogHttpMessages\LogMiddleware(formatter, $logger);
26+
$formatter = PhpMiddleware\LogHttpMessages\Formatter\ZendDiactorosToArrayMessageFormatter();
27+
$logMiddleware = new PhpMiddleware\LogHttpMessages\LogMiddleware($formatter, $formatter, $logger);
2828

2929
$app = new MiddlewareRunner();
3030
$app->add($logMiddleware);
@@ -41,4 +41,4 @@ Middleware should works with:
4141
* [Slim 3.x](https://github.com/slimphp/Slim)
4242
* [zend-log 2.6](https://github.com/zendframework/zend-log)
4343

44-
And any other modern framework [supported middlewares and PSR-7](https://mwop.net/blog/2015-01-08-on-http-middleware-and-psr-7.html) and [PSR-3 implementation](http://www.php-fig.org/psr/psr-3/) logger.
44+
And any other modern framework [supported PSR-15 middlewares and PSR-7](https://mwop.net/blog/2015-01-08-on-http-middleware-and-psr-7.html) and [PSR-3 implementation](http://www.php-fig.org/psr/psr-3/) logger.

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
"psr-3"
1414
],
1515
"require": {
16-
"php": ">=5.5",
17-
"psr/log": "^1.0.0",
16+
"php": ">=7.0",
17+
"psr/log": "^1.0",
1818
"psr/http-message": "^1.0",
19-
"zendframework/zend-diactoros": "^1.1.3",
19+
"zendframework/zend-diactoros": "^1.4",
2020
"http-interop/http-middleware": "^0.4.1"
2121
},
2222
"require-dev": {
23-
"phpunit/phpunit": "^4.8"
23+
"phpunit/phpunit": "^6.1"
2424
},
2525
"autoload": {
2626
"psr-4": {

src/Formatter/BothFormatter.php

-36
This file was deleted.
+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?php
2+
3+
declare (strict_types=1);
4+
5+
namespace PhpMiddleware\LogHttpMessages\Formatter;
6+
7+
use Psr\Http\Message\ResponseInterface;
8+
use Psr\Http\Message\ServerRequestInterface;
9+
10+
/**
11+
* @codeCoverageIgnore
12+
*/
13+
final class EmptyMessageFormatter implements ServerRequestFormatter, ResponseFormatter
14+
{
15+
public function formatServerRequest(ServerRequestInterface $request): FormattedMessage
16+
{
17+
return FormattedMessage::createEmpty();
18+
}
19+
20+
public function formatResponse(ResponseInterface $response): FormattedMessage
21+
{
22+
return FormattedMessage::createEmpty();
23+
}
24+
}

src/Formatter/FormattedMessage.php

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<?php
2+
3+
declare (strict_types=1);
4+
5+
namespace PhpMiddleware\LogHttpMessages\Formatter;
6+
7+
final class FormattedMessage
8+
{
9+
private $value;
10+
11+
public static function fromString(string $value) : self
12+
{
13+
$instance = new self();
14+
$instance->value = $value;
15+
16+
return $instance;
17+
}
18+
19+
public static function fromArray(array $value) : self
20+
{
21+
$instance = new self();
22+
$instance->value = $value;
23+
24+
return $instance;
25+
}
26+
27+
public static function createEmpty() : self
28+
{
29+
return new self();
30+
}
31+
32+
/**
33+
* @return array|string|null
34+
*/
35+
public function getValue()
36+
{
37+
return $this->value;
38+
}
39+
}

src/Formatter/HttpMessagesFormatter.php

-17
This file was deleted.

src/Formatter/RequestFormatter.php

-15
This file was deleted.

src/Formatter/ResponseFormatter.php

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
<?php
22

3+
declare (strict_types=1);
4+
35
namespace PhpMiddleware\LogHttpMessages\Formatter;
46

57
use Psr\Http\Message\ResponseInterface;
6-
use Psr\Http\Message\ServerRequestInterface;
7-
use Zend\Diactoros\Response\Serializer;
88

9-
final class ResponseFormatter implements HttpMessagesFormatter
9+
interface ResponseFormatter
1010
{
11-
public function format(ServerRequestInterface $request, ResponseInterface $response)
12-
{
13-
return Serializer::toString($response);
14-
}
11+
public function formatResponse(ResponseInterface $response) : FormattedMessage;
1512
}
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?php
2+
3+
declare (strict_types=1);
4+
5+
namespace PhpMiddleware\LogHttpMessages\Formatter;
6+
7+
use Psr\Http\Message\ServerRequestInterface;
8+
9+
interface ServerRequestFormatter
10+
{
11+
public function formatServerRequest(ServerRequestInterface $request) : FormattedMessage;
12+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?php
2+
3+
declare (strict_types=1);
4+
5+
namespace PhpMiddleware\LogHttpMessages\Formatter;
6+
7+
use Psr\Http\Message\ResponseInterface;
8+
use Psr\Http\Message\ServerRequestInterface;
9+
use Zend\Diactoros\Response\ArraySerializer as ResponseSerializer;
10+
use Zend\Diactoros\Request\ArraySerializer as RequestSerializer;
11+
12+
final class ZendDiactorosToArrayMessageFormatter implements ServerRequestFormatter, ResponseFormatter
13+
{
14+
public function formatResponse(ResponseInterface $response): FormattedMessage
15+
{
16+
$array = ResponseSerializer::toArray($response);
17+
18+
return FormattedMessage::fromArray($array);
19+
}
20+
21+
public function formatServerRequest(ServerRequestInterface $request): FormattedMessage
22+
{
23+
$array = RequestSerializer::toArray($request);
24+
25+
return FormattedMessage::fromArray($array);
26+
}
27+
28+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?php
2+
3+
declare (strict_types=1);
4+
5+
namespace PhpMiddleware\LogHttpMessages\Formatter;
6+
7+
use Psr\Http\Message\ResponseInterface;
8+
use Psr\Http\Message\ServerRequestInterface;
9+
use Zend\Diactoros\Response\Serializer as ResponseSerializer;
10+
use Zend\Diactoros\Request\Serializer as RequestSerializer;
11+
12+
final class ZendDiactorosToStringMessageFormatter implements ServerRequestFormatter, ResponseFormatter
13+
{
14+
public function formatResponse(ResponseInterface $response): FormattedMessage
15+
{
16+
$string = ResponseSerializer::toString($response);
17+
18+
return FormattedMessage::fromString($string);
19+
}
20+
21+
public function formatServerRequest(ServerRequestInterface $request): FormattedMessage
22+
{
23+
$string = RequestSerializer::toString($request);
24+
25+
return FormattedMessage::fromString($string);
26+
}
27+
}

0 commit comments

Comments
 (0)