Skip to content

Commit 7f7e82f

Browse files
authoredMar 10, 2021
Merge pull request #10 from ajgarlag/feature/require-psr17
Add compiler pass class to ensure that required PSR-17 factories are defined
2 parents fd166c7 + 872a343 commit 7f7e82f

File tree

3 files changed

+45
-0
lines changed

3 files changed

+45
-0
lines changed
 

‎CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [Unreleased](https://github.com/ajgarlag/psr-http-message-bundle/compare/1.2.0...main)
66

7+
### Added
8+
- Add compiler pass class to ensure that required PSR-17 factories are defined
9+
710
## [1.2.0](https://github.com/ajgarlag/psr-http-message-bundle/compare/1.1.2...1.2.0) - 2021-02-19
811

912
### Added

‎src/AjgarlagPsrHttpMessageBundle.php

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
namespace Ajgarlag\Bundle\PsrHttpMessageBundle;
1414

15+
use Ajgarlag\Bundle\PsrHttpMessageBundle\DependencyInjection\Compiler\AssertDefinedPsr17Factories;
1516
use Ajgarlag\Bundle\PsrHttpMessageBundle\DependencyInjection\Compiler\RegisterHttpMessageFactoriesPass;
1617
use Ajgarlag\Bundle\PsrHttpMessageBundle\DependencyInjection\Compiler\RegisterNyholmPsr17FactoriesPass;
1718
use Ajgarlag\Bundle\PsrHttpMessageBundle\DependencyInjection\Compiler\TagArgumentValueResolverPass;
@@ -29,6 +30,7 @@ public function build(ContainerBuilder $container)
2930
$container->addCompilerPass(new TagArgumentValueResolverPass(), PassConfig::TYPE_BEFORE_OPTIMIZATION, 1);
3031
$container->addCompilerPass(new RegisterHttpMessageFactoriesPass());
3132
$container->addCompilerPass(new RegisterNyholmPsr17FactoriesPass());
33+
$container->addCompilerPass(new AssertDefinedPsr17Factories());
3234
$container->addCompilerPass(new TagViewEventListenerPass());
3335
}
3436
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<?php
2+
3+
/*
4+
* PsrHttpMessageBundle by @ajgarlag
5+
*
6+
* Copyright (c) 2010-2021 Fabien Potencier
7+
* Copyright (c) 2021 Antonio J. García Lagar
8+
*
9+
* For the full copyright and license information, please view the LICENSE
10+
* file that was distributed with this source code.
11+
*/
12+
13+
namespace Ajgarlag\Bundle\PsrHttpMessageBundle\DependencyInjection\Compiler;
14+
15+
use LogicException;
16+
use Psr\Http\Message\ResponseFactoryInterface;
17+
use Psr\Http\Message\ServerRequestFactoryInterface;
18+
use Psr\Http\Message\StreamFactoryInterface;
19+
use Psr\Http\Message\UploadedFileFactoryInterface;
20+
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
21+
use Symfony\Component\DependencyInjection\ContainerBuilder;
22+
23+
final class AssertDefinedPsr17Factories implements CompilerPassInterface
24+
{
25+
public function process(ContainerBuilder $container)
26+
{
27+
$requiredInterfaces = [
28+
ResponseFactoryInterface::class,
29+
ServerRequestFactoryInterface::class,
30+
StreamFactoryInterface::class,
31+
UploadedFileFactoryInterface::class,
32+
];
33+
34+
foreach ($requiredInterfaces as $requiredInterface) {
35+
if (!$container->has($requiredInterface)) {
36+
throw new LogicException(sprintf('Service for PSR-17 factory "%s" not found. Run "composer require nyholm/psr7" to install the recommended implementation.', $requiredInterface));
37+
}
38+
}
39+
}
40+
}

0 commit comments

Comments
 (0)