App
在 PHP 中没有默认路由器。 因此,提供了 \Dapr\App
类。 在后台使用了 Nikic’s FastRoute ,但是,您也可以自由使用任何路由器或 您想要的框架。 只需在 App
类中查看 add_dapr_routes()
方法,看看actors和 订阅是如何实现的。
每个应用都应该以 App:::create()
开头,这需要两个参数,第一个是现有的DI 容器, 第二个是回调到 ContainerBuilder
并添加您自己的配置。
您应该从那里定义您的路由,然后调用 $app->start()
来执行当前请求的路由。
<?php
// app.php
require_once __DIR__ . '/vendor/autoload.php';
$app = \Dapr\App::create(configure: fn(\DI\ContainerBuilder $builder) => $builder->addDefinitions('config.php'));
// add a controller for GET /test/{id} that returns the id
$app->get('/test/{id}', fn(string $id) => $id);
$app->start();
从控制器中返回
从控制器返回任何数据都会被序列化为json 对象。 您也可以要求Psr Response对象并返回该对象,允许您自定义headers并控制整个响应:
<?php
$app = \Dapr\App::create(configure: fn(\DI\ContainerBuilder $builder) => $builder->addDefinitions('config.php'));
// add a controller for GET /test/{id} that returns the id
$app->get('/test/{id}',
fn(
string $id,
\Psr\Http\Message\ResponseInterface $response,
\Nyholm\Psr7\Factory\Psr17Factory $factory) => $response->withBody($factory->createStream($id)));
$app->start();
将应用程序作为客户端
当你只想使用Dapr作为客户端,例如在现有代码中,你可以调用 $app->run()
。 通常情况下,特别是在生产中 不需要自定义配置,但您可能想使用编译的DI 容器:
<?php
// app.php
require_once __DIR__ . '/vendor/autoload.php';
$app = \Dapr\App::create(configure: fn(\DI\ContainerBuilder $builder) => $builder->enableCompilation(__DIR__));
$result = $app->run(fn(\Dapr\DaprClient $client) => $client->get('/invoke/other-app/method/my-method'));