vendor/netzmacht/contao-toolkit/src/Bundle/DependencyInjection/ContaoServicesFactory.php line 91

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Netzmacht\Contao\Toolkit\Bundle\DependencyInjection;
  4. use Contao\Backend;
  5. use Contao\BackendUser;
  6. use Contao\Config;
  7. use Contao\Controller;
  8. use Contao\CoreBundle\Framework\Adapter;
  9. use Contao\CoreBundle\Framework\ContaoFramework;
  10. use Contao\Dbafs;
  11. use Contao\Encryption;
  12. use Contao\Environment;
  13. use Contao\Frontend;
  14. use Contao\FrontendUser;
  15. use Contao\Image;
  16. use Contao\Input;
  17. use Contao\Message;
  18. use Contao\Model;
  19. use Contao\System;
  20. use function assert;
  21. /**
  22.  * @SuppressWarnings(PHPMD.TooManyPublicMethods)
  23.  */
  24. final class ContaoServicesFactory
  25. {
  26.     /**
  27.      * Contao framework.
  28.      *
  29.      * @var ContaoFramework
  30.      */
  31.     private $framework;
  32.     /**
  33.      * @param ContaoFramework $framework Contao framework.
  34.      */
  35.     public function __construct(ContaoFramework $framework)
  36.     {
  37.         $this->framework $framework;
  38.     }
  39.     /**
  40.      * Create the backend adapter.
  41.      *
  42.      * @return Adapter<Backend>
  43.      */
  44.     public function createBackendAdapter(): Adapter
  45.     {
  46.         return $this->createAdapter(Backend::class);
  47.     }
  48.     /**
  49.      * Create input adapter.
  50.      *
  51.      * @return Adapter<Input>
  52.      */
  53.     public function createInputAdapter(): Adapter
  54.     {
  55.         return $this->createAdapter(Input::class);
  56.     }
  57.     /**
  58.      * Create the config adapter.
  59.      *
  60.      * @return Adapter<Config>
  61.      */
  62.     public function createConfigAdapter(): Adapter
  63.     {
  64.         return $this->createAdapter(Config::class);
  65.     }
  66.     /**
  67.      * Create the controller adapter.
  68.      *
  69.      * @return Adapter<Controller>
  70.      */
  71.     public function createControllerAdapter(): Adapter
  72.     {
  73.         return $this->createAdapter(Controller::class);
  74.     }
  75.     /**
  76.      * Create the system adapter.
  77.      *
  78.      * @return Adapter<System>
  79.      */
  80.     public function createSystemAdapter(): Adapter
  81.     {
  82.         return $this->createAdapter(System::class);
  83.     }
  84.     /**
  85.      * Create an environment adapter.
  86.      *
  87.      * @return Adapter<Environment>
  88.      */
  89.     public function createEnvironmentAdapter(): Adapter
  90.     {
  91.         return $this->createAdapter(Environment::class);
  92.     }
  93.     /**
  94.      * Create an encryption adapter.
  95.      *
  96.      * @return Adapter<Encryption>
  97.      */
  98.     public function createEncryptionAdapter(): Adapter
  99.     {
  100.         return $this->createAdapter(Encryption::class);
  101.     }
  102.     /**
  103.      * Create a frontend adapter.
  104.      *
  105.      * @return Adapter<Frontend>
  106.      */
  107.     public function createFrontendAdapter(): Adapter
  108.     {
  109.         return $this->createAdapter(Frontend::class);
  110.     }
  111.     /**
  112.      * Create an image adapter.
  113.      *
  114.      * @return Adapter<Image>
  115.      */
  116.     public function createImageAdapter(): Adapter
  117.     {
  118.         return $this->createAdapter(Image::class);
  119.     }
  120.     /**
  121.      * Create backend user instance.
  122.      */
  123.     public function createBackendUserInstance(): BackendUser
  124.     {
  125.         return $this->createInstance(BackendUser::class);
  126.     }
  127.     /**
  128.      * Frontend user.
  129.      */
  130.     public function createFrontendUserInstance(): FrontendUser
  131.     {
  132.         return $this->createInstance(FrontendUser::class);
  133.     }
  134.     /**
  135.      * Create a model adapter.
  136.      *
  137.      * @return Adapter<Model>
  138.      */
  139.     public function createModelAdapter(): Adapter
  140.     {
  141.         return $this->createAdapter(Model::class);
  142.     }
  143.     /**
  144.      * Create a message adapter.
  145.      *
  146.      * @return Adapter<Message>
  147.      */
  148.     public function createMessageAdapter(): Adapter
  149.     {
  150.         return $this->createAdapter(Message::class);
  151.     }
  152.     /**
  153.      * Create a message adapter.
  154.      *
  155.      * @return Adapter<Dbafs>
  156.      */
  157.     public function createDbafsAdapter(): Adapter
  158.     {
  159.         return $this->createAdapter(Dbafs::class);
  160.     }
  161.     // phpcs:disable SlevomatCodingStandard.Commenting.DocCommentSpacing.IncorrectOrderOfAnnotationsGroup
  162.     /**
  163.      * Create an adapter for a specific class.
  164.      *
  165.      * @template T
  166.      *
  167.      * @param class-string<T> $class Class name.
  168.      *
  169.      * @return Adapter<T>
  170.      */
  171.     private function createAdapter(string $class): Adapter
  172.     {
  173.         $this->framework->initialize();
  174.         return $this->framework->getAdapter($class);
  175.     }
  176.     /**
  177.      * Create an adapter for a specific class.
  178.      *
  179.      * @template T
  180.      *
  181.      * @param class-string<T> $class Class name.
  182.      *
  183.      * @return T
  184.      */
  185.     private function createInstance(string $class): object
  186.     {
  187.         $this->framework->initialize();
  188.         $instance $this->framework->createInstance($class);
  189.         assert($instance instanceof $class);
  190.         return $instance;
  191.     }
  192.     // phpcs:enable SlevomatCodingStandard.Commenting.DocCommentSpacing.IncorrectOrderOfAnnotationsGroup
  193. }