web-dev-qa-db-ja.com

Symfonyのサービスにリポジトリを挿入する方法は?

2つのオブジェクトをImageServiceに注入する必要があります。それらの1つはRepository/ImageRepositoryのインスタンスで、これは次のようになります。

$image_repository = $container->get('doctrine.odm.mongodb')
    ->getRepository('MycompanyMainBundle:Image');

それで、どのようにservices.ymlで宣言するのですか?サービスは次のとおりです。

namespace Mycompany\MainBundle\Service\Image;

use Doctrine\ODM\MongoDB\DocumentRepository;

class ImageManager {
    private $manipulator;
    private $repository;

    public function __construct(ImageManipulatorInterface $manipulator, DocumentRepository $repository) {
        $this->manipulator = $manipulator;
        $this->repository = $repository;
    }

    public function findAll() {
        return $this->repository->findAll();
    }

    public function createThumbnail(ImageInterface $image) {
        return $this->manipulator->resize($image->source(), 300, 200);
    }
}
74
ChocoDeveloper

私はこれを見つけました link そしてこれは私のために働いた:

parameters:
    image_repository.class:            Mycompany\MainBundle\Repository\ImageRepository
    image_repository.factory_argument: 'MycompanyMainBundle:Image'
    image_manager.class:               Mycompany\MainBundle\Service\Image\ImageManager
    image_manipulator.class:           Mycompany\MainBundle\Service\Image\ImageManipulator

services:
    image_manager:
        class: %image_manager.class%
        arguments:
          - @image_manipulator
          - @image_repository

    image_repository:
        class:           %image_repository.class%
        factory_service: doctrine.odm.mongodb
        factory_method:  getRepository
        arguments:
            - %image_repository.factory_argument%

    image_manipulator:
        class: %image_manipulator.class%
45
ChocoDeveloper

私のようなGoogleから来た人のためのクリーンアップされたソリューションは次のとおりです。

更新: Symfony 2.6(およびそれ以降)のソリューションは次のとおりです。

services:

    myrepository:
        class: Doctrine\ORM\EntityRepository
        factory: ["@doctrine.orm.entity_manager", getRepository]
        arguments:
            - MyBundle\Entity\MyClass

    myservice:
        class: MyBundle\Service\MyService
        arguments:
            - "@myrepository"

非推奨ソリューション(Symfony 2.5以前):

services:

    myrepository:
        class: Doctrine\ORM\EntityRepository
        factory_service: doctrine.orm.entity_manager
        factory_method: getRepository
        arguments:
            - MyBundle\Entity\MyClass

    myservice:
        class: MyBundle\Service\MyService
        arguments:
            - "@myrepository"
103
Matthieu Napoli

バージョン2.4から開始して、各リポジトリをサービスとして定義したくない場合は、次を実行できます(defaultはエンティティマネージャの名前です)。

@=service('doctrine.orm.default_entity_manager').getRepository('MycompanyMainBundle:Image')
39
b.b3rn4rd

2017とSymfony 3.3 +により、これは非常に簡単になりました。 Symfony 4.xでも同じです。

投稿を確認してください Doctrine)でリポジトリを使用する方法より一般的な説明。

あなたのコードに必要なのは、継承よりもcompositionを使用することです-SOLIDパターンの1つ。

1. Doctrineに直接依存せずに独自のリポジトリを作成する

<?php

namespace MycompanyMainBundle\Repository;

use Doctrine\ORM\EntityManagerInterface;
use MycompanyMainBundle\Entity\Image;

class ImageRepository
{
    private $repository;

    public function __construct(EntityManagerInterface $entityManager)
    {
        $this->repository = $entityManager->getRepository(Image::class);
    }

    // add desired methods here
    public function findAll()
    {
        return $this->repository->findAll();
    }
}

2. PSR-4ベースの自動登録 で設定登録を追加します

# app/config/services.yml
services:
    _defaults:
        autowire: true

    MycompanyMainBundle\:
        resource: ../../src/MycompanyMainBundle

3.これで、コンストラクター注入を介して任意の依存関係を追加できます

use MycompanyMainBundle\Repository\ImageRepository;

class ImageService
{
    public function __construct(ImageRepository $imageRepository)
    {
        $this->imageRepository = $imageRepository;
    }
}
7
Tomáš Votruba