This repository was archived by the owner on Jul 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAcceptAndContentTypeMiddleware.php
More file actions
69 lines (56 loc) · 2.28 KB
/
AcceptAndContentTypeMiddleware.php
File metadata and controls
69 lines (56 loc) · 2.28 KB
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
<?php
declare(strict_types=1);
namespace Chubbyphp\ApiHttp\Middleware;
use Chubbyphp\Negotiation\AcceptNegotiatorInterface;
use Chubbyphp\Negotiation\ContentTypeNegotiatorInterface;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Server\MiddlewareInterface;
use Psr\Http\Server\RequestHandlerInterface;
final class AcceptAndContentTypeMiddleware implements MiddlewareInterface
{
/**
* @var AcceptNegotiatorInterface
*/
private $acceptNegotiator;
/**
* @var ContentTypeNegotiatorInterface
*/
private $contentTypeNegotiator;
/**
* @var AcceptAndContentTypeMiddlewareResponseFactoryInterface
*/
private $responseFactory;
public function __construct(
AcceptNegotiatorInterface $acceptNegotiator,
ContentTypeNegotiatorInterface $contentTypeNegotiator,
AcceptAndContentTypeMiddlewareResponseFactoryInterface $responseFactory
) {
$this->acceptNegotiator = $acceptNegotiator;
$this->contentTypeNegotiator = $contentTypeNegotiator;
$this->responseFactory = $responseFactory;
}
public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
{
if (null === $accept = $this->acceptNegotiator->negotiate($request)) {
$supportedMediaTypes = $this->acceptNegotiator->getSupportedMediaTypes();
return $this->responseFactory->createForNotAcceptable(
$request->getHeaderLine('Accept'),
$supportedMediaTypes,
$supportedMediaTypes[0]
);
}
$request = $request->withAttribute('accept', $accept->getValue());
if (in_array($request->getMethod(), ['POST', 'PUT', 'PATCH'], true)) {
if (null === $contentType = $this->contentTypeNegotiator->negotiate($request)) {
return $this->responseFactory->createForUnsupportedMediaType(
$request->getHeaderLine('Content-Type'),
$this->contentTypeNegotiator->getSupportedMediaTypes(),
$accept->getValue()
);
}
$request = $request->withAttribute('contentType', $contentType->getValue());
}
return $handler->handle($request);
}
}