定制 janmuran/laravel-command-bus 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

janmuran/laravel-command-bus

最新稳定版本:1.0.10

Composer 安装命令:

composer require janmuran/laravel-command-bus

包简介

Laravel command bus with automatic build command object from json request

README 文档

README

Simple command bus for laravel. Use jms serializer for build command.

Install

composer require janmuran/laravel-command-bus

Example

Create Command

Command is object that implement Janmuran\LaravelCommandBus\Model\Command interface.

<?php

declare(strict_types=1);

namespace Janmuran\LaravelCommandBus\Example\Command;

use Janmuran\LaravelCommandBus\Model\Command;

final class ChangePersonAge implements Command
{
    public function __construct(
        public readonly string $name,
        public readonly int $age,
    ) {
    }
}

Create Command Handler

<?php

declare(strict_types=1);

namespace Janmuran\LaravelCommandBus\Example\Handler;

use Janmuran\LaravelCommandBus\Example\Command\ChangePersonAge;
use Janmuran\LaravelCommandBus\Model\CommandHandler;
use Janmuran\LaravelCommandBus\Response\ResponseStorageInterface;

final class ChangePersonAgeHandler implements CommandHandler
{
    public const NUMBER = 10;

    public function __construct(
        private ResponseStorageInterface $responseStorage,
    ) {
    }

    public function handle(ChangePersonAge $command): void
    {
        $newAge = $command->age + self::NUMBER;

        $this->responseStorage->setResponse([
            'newAge' => $newAge,
            'commad' => $command,
        ]);
    }
}

Register command

Add this lines to AppServiceProvider.php

    $commandBus = resolve(CommandBus::class);

    $commandBus->map([
        CommandExample::class => CommandExampleHandler::class,
        ChangePersonAge::class => ChangePersonAgeHandler::class,
    ]);

Usage

Endpoint for command request: /command/run

example json request:

{
    "command": "ChangePersonAge",
    "params": {
        "name": "Test Name",
        "age": 24
    }
}

POST request is automaticaly build to command object and handled by Command handler.

Validation data

request can be validated in Command handler.
If you require all errors in response array use ValidationException

    $validation = \Illuminate\Support\Facades\Validator::make(
            $data,
            [
                'age' => 'require|min:20',
            ],
    ); 

    if ($validation->fails()) {
        throw ValidationException::create($validation->errors()->toArray());
    }

统计信息

  • 总下载量: 259
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 0
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-04-09