pavelmics/yii-tactician
Composer 安装命令:
composer require pavelmics/yii-tactician
包简介
Yii adapter for league/tactician command bus pattern implimentation
README 文档
README
#Yii-Tactician Yii-Tactician is yii addapter for Tactician command bus library. It provides an easy way to use the command bus pattern in Yii-based apps.
##Installation
You can install Yii-Tactician via composer by running
composer require pavelmics/yii-tactician
or just add
"pavelmics/yii-tactician": "0.1.1"
to your composer.json file.
##Configuration Once the library is installed, modify your application configuration as follows:
return [
...
'components' => [
...
'commandBus' => [
'class' => 'YiiTactician\YiiTacticianCommandBus',
],
],
...
];
By default Yii Tactician uses bus_commands directory for storing command handlers, you can change this by configuring handlersPath with array of yii-aliases as follow:
return [
...
'components' => [
...
'commandBus' => [
'class' => 'YiiTactician\YiiTacticianCommandBus',
'handlersPath' => [
'application.command_bus.handlers',
'appliction.modules.command_bus',
],
],
],
...
];
NOTE: don't use * aliases, your aliases must point to a dirrectory but not a file!
NOTE2: Also you have to use psr-4 autoload system to use Yii-Tactician (just add require('path/to/vendor/autoload.php'); to your index.php and console.php).
##Usage
###Basic Define a command class somewhere in your application, for example:
class TestCommand
{
public $someParam;
public $someOtherParam;
public function __construct($someParam, $someOtherParam = 'defaultValue')
{
$this->someParam = $someParam;
$this->someOtherParam = $someOtherParam;
}
}
Then, define a handler class under one of your handlers path (see configuration section of this readme). The name of handler class must be the same as the name of command class suffixed with "Handler". For example for class TestCommand we need to define TestCommandHandler class:
class TestCommandHandler
{
public function handle(TestCommand $command)
{
// do command stuff hire!
// we can use $command->someParam and $this->someOtherParam
}
}
Now we can use this command in controllers (or wherever you want):
...
public function actionCreateSomething()
{
$someParam = Yii::app()->request->getPost('some_param');
$command = new TestCommand($someParam);
$result = Yii::app()->commandBus->handle($command);
if ($result) {
$this->redirect(
Yii::app()->createUrl('something/show', ['id' => $result->id])
);
} else {
$this->render('errorSomething');
}
}
###Controller based handlers Sometimes we need handle one command in several different ways. Let's say we need to register users. Sometimes users register by email and sometimes by phone number. We need to handle register command almost the same but at the same time a bit different. To achive this we can define several handler-functions in handler class (like in standart Yii controller). For example:
class RegisterCommandHandler
{
public function byPhone($command)
{/* code to register by phone */}
public function byEmail($command)
{/* code to register by email */}
}
And then use YiiTactician\ControllerBaseCommand to define your command class:
class RegisterCommand extends YiiTactician\ControllerBaseCommand
{}
Now you can do something like this:
$params = ['email' => 'test@test.com', 'password' => 'pass'];
$command = new RegisterCommand($params, 'byEmail');
\Yii::app()->commandBus->handle($command);
// or
$params = ['phone' => '99-99-99-99'];
$command = new RegisterCommand($params);
$command->setHandlerMethod('byPhone');
\Yii::app()->commandBus->handle($command);
pavelmics/yii-tactician 适用场景与选型建议
pavelmics/yii-tactician 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 5.66k 次下载、GitHub Stars 达 8, 最近一次更新时间为 2015 年 09 月 21 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 pavelmics/yii-tactician 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 pavelmics/yii-tactician 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 5.66k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 8
- 点击次数: 20
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-09-21