— y2sunlight 2020-05-15
関連記事
ユーザ登録画面にトランザクションの機能を追加します。トランザクションを作るか否かはアクション毎に設定できるようにします。また、トランザクション機能を追加することによりアクションでスローされる ApplicationException をキャッチして(エラー画面に遷移することなく)入力画面でエラーメッセージを表示できるようになります。アクションでスローされるApplicationException には以下のものがあります。
Exception
Error
は対象外です )通常、トランザクションは更新系の処理で設定するするので、参照系で発生した全ての例外は集約エラーハンドラで処理されエラー画面が表示されます。この状況を避けたい場合は、次の何れかの選択になるでしょう。
コントローラのベースクラス(Controller)に以下のprotectedメソッドを追加します。
メソッド | 機能 |
---|---|
transactional (array|string $actionName):void | トランザクションを開始するアクションの指定 |
callAction (string $actionName, array $params):Response | アクションの起動 |
callAction() はコアのBaseControllerクラスのオーバーライドです。この関数はApplicationクラスが実際にアクションを呼びだす時に使用されます。
以下にControllerクラスのソースコードを示します。
/apricot/app/Foundation
<?php namespace App\Foundation; use App\Exceptions\ApplicationException; use Core\Foundation\BaseController; use Core\Foundation\ErrorBag; use ORM; /** * コントローラ */ class Controller extends BaseController { /** * Transactional Actions * @var array */ protected $transactionalActions = []; /** * Register transactional action on the controller. * @param array|string $actionName */ protected function transactional($actionName) { $actions = is_array($actionName) ? $actionName : func_get_args(); $this->transactionalActions = array_merge($this->transactionalActions , $actions); } /** * {@inheritDoc} * @see \Core\Foundation\BaseController::callAction() */ protected function callAction($actionName, $params) { if (!in_array($actionName, $this->transactionalActions)) { // Non transactional action return parent::callAction($actionName, $params); } // Transactional action if (!ORM::getDb()->beginTransaction()) { // Redirect $errorBag = new ErrorBag(__('messages.error.db.access')); return redirect(back())->withInputs()->withErrors($errorBag); } try { $response = parent::callAction($actionName, $params); ORM::getDb()->commit(); return $response; } catch(ApplicationException $e) { ORM::getDb()->rollBack(); \Core\Log::exception('error',$e); \Core\Debug::error($e); // Redirect $errorBag = new ErrorBag($e->getUserMessage()); return redirect(back())->withInputs()->withErrors($errorBag); } } }
$transactionalActions
)に追加します$transactionalActions
に追加されていないアクションの場合
$transactionalActions
に追加されてるアクションの場合
アクションのトランザクション処理を有効にしたい場合は、コントローラのコンストラクタの中でControllerクラスのtransactional()メソッドを使って、以下のようにします。
/apricot/app/Controllers
<?php namespace App\Controllers; use App\Exceptions\ApplicationException; use App\Foundation\Controller; use App\Models\User; use Core\Input; /** * ユーザコントローラ */ class UserController extends Controller { ... /** * ユーザコントローラの生成 */ public function __construct() { // モデル $this->user = new User(); // トランザクションアクション登録 $this->transactional('insert','update','delete'); } ... }
insert()
, update()
, delete()
)のトランザクション処理が有効になるように設定しています。
楽観的ロック例外を使って、トランザクション機能をテストしてみましょう。
2つのApricot画面を開きます:
前もって 画面A,B共にrootユーザの編集画面を表示しておきます。
■ 備考を変更して[保存]ボタンを押します。
■ 正常に保存できます。
■ 備考を変更して[保存]ボタンを押します。
■ 画面表示時点のデータが変更されているので楽観的ロック例外が発生します。