How to Create a custom Route Loader

Basic applications can define all their routes in a single configuration file - usually config/routes.yaml (see Routing). However, in most applications it's common to import routes definitions from different resources: PHP attributes in controller files, YAML, XML or PHP files stored in some directory, etc.

基本的なアプリケーションは、すべてのルートを 1 つの構成ファイル (通常は config/routes.yaml を参照) で定義できます (Routing を参照)。ただし、ほとんどのアプリケーションでは、さまざまなリソースからルート定義をインポートするのが一般的です: コントローラ ファイルの PHP 属性、YAML、XML、または保存されている PHP ファイルいくつかのディレクトリなどで

Built-in Route Loaders

Symfony provides several route loaders for the most common needs:

symfony は、最も一般的なニーズのためにいくつかのルートローダーを提供します:
  • YAML
    YAML
  • XML
    XML
  • PHP
    PHP
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
# config/routes.yaml
app_file:
    # loads routes from the given routing file stored in some bundle
    resource: '@AcmeBundle/Resources/config/routing.yaml'

app_psr4:
    # loads routes from the PHP attributes of the controllers found in the given PSR-4 namespace root
    resource:
        path: '../src/Controller/'
        namespace: App\Controller
    type: attribute

app_attributes:
    # loads routes from the PHP attributes of the controllers found in that directory
    resource: '../src/Controller/'
    type:     attribute

app_class_attributes:
    # loads routes from the PHP attributes of the given class
    resource: App\Controller\MyController
    type:     attribute

app_directory:
    # loads routes from the YAML, XML or PHP files found in that directory
    resource: '../legacy/routing/'
    type:     directory

app_bundle:
    # loads routes from the YAML, XML or PHP files found in some bundle directory
    resource: '@AcmeOtherBundle/Resources/config/routing/'
    type:     directory

6.1

6.1

The attribute value of the second argument of import() was introduced in Symfony 6.1.

import() の 2 番目の引数の属性値は、Symfony 6.1 で導入されました。

6.2

6.2

The feature to import routes from a PSR-4 namespace root was introduced in Symfony 6.2.

PSR-4 名前空間ルートからルートをインポートする機能は、Symfony 6.2 で導入されました。

Note

ノート

When importing resources, the key (e.g. app_file) is the name of the collection. Just be sure that it's unique per file so no other lines override it.

リソースをインポートするとき、キー (例: app_file) はコレクションの名前です。ファイルごとに一意であることを確認して、他の行がそれを上書きしないようにしてください。

If your application needs are different, you can create your own custom route loader as explained in the next section.

アプリケーションのニーズが異なる場合は、次のセクションで説明するように、独自のカスタム ルートローダーを作成できます。

What is a Custom Route Loader

A custom route loader enables you to generate routes based on some conventions, patterns or integrations. An example for this use-case is the OpenAPI-Symfony-Routing library where routes are generated based on OpenAPI/Swagger annotations. Another example is the SonataAdminBundle that creates routes based on CRUD conventions.

カスタム ルート ローダーを使用すると、いくつかの規則、パターン、または統合に基づいてルートを生成できます。このユースケースの例は、OpenAPI/Swagger アノテーションに基づいてルートが生成される OpenAPI-Symfony-Routing ライブラリです。もう 1 つの例は、CRUD 規則に基づいてルートを作成する SonataAdminBundle です。

Loading Routes

The routes in a Symfony application are loaded by the DelegatingLoader. This loader uses several other loaders (delegates) to load resources of different types, for instance YAML files or #[Route] attributes in controller files. The specialized loaders implement LoaderInterface and therefore have two important methods: supports() and load().

Symfony アプリケーションのルートは、DelegatingLoader によってロードされます。このローダーは、他のいくつかのローダー (デリゲート) を使用して、さまざまなタイプのリソース (たとえば、YAML ファイルやコントローラー ファイルの #[Route] 属性) をロードします。専用のローダーはLoaderInterfaceを実装しているため、supports()とload()という2つの重要なメソッドがあります。

Take these lines from the routes.yaml:

routes.yaml から次の行を取得します。
  • YAML
    YAML
  • XML
    XML
  • PHP
    PHP
1
2
3
4
# config/routes.yaml
controllers:
    resource: ../src/Controller/
    type: attribute

When the main loader parses this, it tries all registered delegate loaders and calls their supports() method with the given resource (../src/Controller/) and type (attribute) as arguments. When one of the loader returns true, its load() method will be called, which should return a RouteCollection containing Route objects.

メイン ローダーがこれを解析すると、登録されているすべてのデリゲート ローダーが試行され、指定されたリソース (../src/Controller/) と型 (属性) を引数としてそれらの supports() メソッドが呼び出されます。ローダーの 1 つが true を返すと、その load() メソッドが呼び出され、Route オブジェクトを含む RouteCollection が返されます。

Note

ノート

Routes loaded this way will be cached by the Router the same way as when they are defined in one of the default formats (e.g. XML, YAML, PHP file).

この方法でロードされたルートは、デフォルト形式 (XML、YAML、PHP ファイルなど) のいずれかで定義されている場合と同じ方法でルーターによってキャッシュされます。

Loading Routes with a Custom Service

Using a regular Symfony service is the simplest way to load routes in a customized way. It's much easier than creating a full custom route loader, so you should always consider this option first.

通常の Symfony サービスを使用することは、カスタマイズされた方法でルートをロードする最も簡単な方法です。完全なカスタム ルート ローダーを作成するよりもはるかに簡単なので、常にこのオプションを最初に検討する必要があります。

To do so, define type: service as the type of the loaded routing resource and configure the service and method to call:

これを行うには、ロードされたルーティング リソースのタイプとして type: service を定義し、呼び出すサービスとメソッドを構成します。
  • YAML
    YAML
  • XML
    XML
  • PHP
    PHP
1
2
3
4
# config/routes.yaml
admin_routes:
    resource: 'admin_route_loader::loadRoutes'
    type: service

In this example, the routes are loaded by calling the loadRoutes() method of the service whose ID is admin_route_loader. Your service doesn't have to extend or implement any special class, but the called method must return a RouteCollection object.

この例では、ID が admin_route_loader であるサービスの loadRoutes() メソッドを呼び出すことによって、ルートがロードされます。サービスは特別なクラスを拡張または実装する必要はありませんが、呼び出されたメソッドは RouteCollection オブジェクトを返す必要があります。

If you're using autoconfigure, your class should implement the RouteLoaderInterface interface to be tagged automatically. If you're not using autoconfigure, tag it manually with routing.route_loader.

自動構成を使用している場合、クラスは自動的にタグ付けされるように RouteLoaderInterface インターフェイスを実装する必要があります。自動構成を使用していない場合は、手動で routing.route_loader でタグ付けしてください。

Note

ノート

The routes defined using service route loaders will be automatically cached by the framework. So whenever your service should load new routes, don't forget to clear the cache.

サービス ルート ローダーを使用して定義されたルートは、フレームワークによって自動的にキャッシュされます。したがって、サービスが新しいルートをロードする必要があるときはいつでも、キャッシュをクリアすることを忘れないでください。

Tip

ヒント

If your service is invokable, you don't need to specify the method to use.

サービスが呼び出し可能な場合、使用するメソッドを指定する必要はありません。

Creating a custom Loader

To load routes from some custom source (i.e. from something other than attributes, YAML or XML files), you need to create a custom route loader. This loader has to implement LoaderInterface.

カスタム ソース (つまり、属性、YAML または XML ファイル以外のもの) からルートをロードするには、カスタム ルート ローダーを作成する必要があります。このローダーは LoaderInterface を実装する必要があります。

In most cases it is easier to extend from Loader instead of implementing LoaderInterface yourself.

ほとんどの場合、LoaderInterface を自分で実装するよりも fromLoader を拡張する方が簡単です。

The sample loader below supports loading routing resources with a type of extra. The type name should not clash with other loaders that might support the same type of resource. Make up any name specific to what you do. The resource name itself is not actually used in the example:

以下のサンプル ローダーは、extra タイプのルーティング リソースのロードをサポートしています。タイプ名は、同じタイプのリソースをサポートする可能性のある他のローダーと衝突してはなりません。あなたがしていることに固有の名前を作ります。この例では、リソース名自体は実際には使用されていません。
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
// src/Routing/ExtraLoader.php
namespace App\Routing;

use Symfony\Component\Config\Loader\Loader;
use Symfony\Component\Routing\Route;
use Symfony\Component\Routing\RouteCollection;

class ExtraLoader extends Loader
{
    private $isLoaded = false;

    public function load($resource, string $type = null)
    {
        if (true === $this->isLoaded) {
            throw new \RuntimeException('Do not add the "extra" loader twice');
        }

        $routes = new RouteCollection();

        // prepare a new route
        $path = '/extra/{parameter}';
        $defaults = [
            '_controller' => 'App\Controller\ExtraController::extra',
        ];
        $requirements = [
            'parameter' => '\d+',
        ];
        $route = new Route($path, $defaults, $requirements);

        // add the new route to the route collection
        $routeName = 'extraRoute';
        $routes->add($routeName, $route);

        $this->isLoaded = true;

        return $routes;
    }

    public function supports($resource, string $type = null)
    {
        return 'extra' === $type;
    }
}

Make sure the controller you specify really exists. In this case you have to create an extra() method in the ExtraController:

指定したコントローラが実際に存在することを確認してください。この場合、ExtraController に extra() メソッドを作成する必要があります。
1
2
3
4
5
6
7
8
9
10
11
12
13
// src/Controller/ExtraController.php
namespace App\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;

class ExtraController extends AbstractController
{
    public function extra($parameter)
    {
        return new Response($parameter);
    }
}

Now define a service for the ExtraLoader:

次に、ExtraLoader のサービスを定義します。
  • YAML
    YAML
  • XML
    XML
  • PHP
    PHP
1
2
3
4
5
6
# config/services.yaml
services:
    # ...

    App\Routing\ExtraLoader:
        tags: [routing.loader]

Notice the tag routing.loader. All services with this tag will be marked as potential route loaders and added as specialized route loaders to the routing.loader service, which is an instance of DelegatingLoader.

タグ routing.loader に注意してください。このタグを持つすべてのサービスは、潜在的なルート ローダーとしてマークされ、特別なルート ローダーとして、DelegatingLoader のインスタンスであるrouting.loader サービスに追加されます。

Using the Custom Loader

If you did nothing else, your custom routing loader would not be called. What remains to do is adding a few lines to the routing configuration:

他に何もしなければ、カスタム ルーティング ローダーは呼び出されません。残りの作業は、ルーティング構成に数行を追加することです。
  • YAML
    YAML
  • XML
    XML
  • PHP
    PHP
1
2
3
4
# config/routes.yaml
app_extra:
    resource: .
    type: extra

The important part here is the type key. Its value should be extra as this is the type which the ExtraLoader supports and this will make sure its load() method gets called. The resource key is insignificant for the ExtraLoader, so it is set to . (a single dot).

ここで重要な部分は type キーです。これは ExtraLoader がサポートするタイプであり、load() メソッドが確実に呼び出されるようにするため、その値は extra である必要があります。リソース キーは ExtraLoader にとって重要ではないため、 に設定されます。 (単一のドット)。

Note

ノート

The routes defined using custom route loaders will be automatically cached by the framework. So whenever you change something in the loader class itself, don't forget to clear the cache.

カスタム ルート ローダーを使用して定義されたルートは、フレームワークによって自動的にキャッシュされます。そのため、loaderclass 自体で何かを変更するたびに、キャッシュをクリアすることを忘れないでください。

More Advanced Loaders

If your custom route loader extends from Loader as shown above, you can also make use of the provided resolver, an instance of LoaderResolver, to load secondary routing resources.

カスタム ルート ローダーが上記のように fromLoader を拡張する場合、提供されたリゾルバー (LoaderResolver のインスタンス) を使用して、セカンダリ ルーティング リソースを読み込むこともできます。

You still need to implement supports() and load(). Whenever you want to load another resource - for instance a YAML routing configuration file - you can call the import() method:

まだ、supports() と load() を実装する必要があります。別のリソース (たとえば、YAML ルーティング構成ファイル) をロードするときはいつでも、import() メソッドを呼び出すことができます。
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
// src/Routing/AdvancedLoader.php
namespace App\Routing;

use Symfony\Component\Config\Loader\Loader;
use Symfony\Component\Routing\RouteCollection;

class AdvancedLoader extends Loader
{
    public function load($resource, string $type = null)
    {
        $routes = new RouteCollection();

        $resource = '@ThirdPartyBundle/Resources/config/routes.yaml';
        $type = 'yaml';

        $importedRoutes = $this->import($resource, $type);

        $routes->addCollection($importedRoutes);

        return $routes;
    }

    public function supports($resource, string $type = null)
    {
        return 'advanced_extra' === $type;
    }
}

Note

ノート

The resource name and type of the imported routing configuration can be anything that would normally be supported by the routing configuration loader (YAML, XML, PHP, attribute, etc.).

インポートされたルーティング構成のリソース名とタイプは、ルーティング構成ローダー (YAML、XML、PHP、属性など) によって通常サポートされるものであれば何でもかまいません。

Note

ノート

For more advanced uses, check out the ChainRouter provided by the Symfony CMF project. This router allows applications to use two or more routers combined, for example to keep using the default Symfony routing system when writing a custom router.

より高度な使い方については、SymfonyCMF プロジェクトが提供する ChainRouter を確認してください。このルーターを使用すると、アプリケーションは 2 つ以上のルーターを組み合わせて使用​​できます。たとえば、カスタム ルーターを作成するときにデフォルトの Symfony ルーティング システムを使用し続けることができます。