[ 'class' => AccessControl::class, 'rules' => [ [ 'actions' => ['index'], 'allow' => true, 'roles' => [P::OBTAIN_ACCOUNT_INFO], 'roleParams' => function(): array { /** @var \api\components\User\IdentityInterface $identity */ $identity = Yii::$app->user->getIdentity(); $account = $identity->getAccount(); if ($account === null) { Yii::$app->sentry->captureMessage('Unexpected lack of account', [ 'identityType' => get_class($identity), 'userId' => $identity->getId(), 'assignedPermissions' => $identity->getAssignedPermissions(), ], [ 'level' => 'warning', ]); return ['accountId' => 0]; } return ['accountId' => $account->id]; }, ], ], ], ]); } public function actionIndex(): array { /** @noinspection NullPointerExceptionInspection */ return (new IdentityInfo(Yii::$app->user->getIdentity()->getAccount()))->info(); } }