0

内部に以下のコードを追加しましたzfc_rbac.global.php

return [
'zfc_rbac' => [
   'assertion_map' => [
        'isAuthorizedToAddUser' => 'Application\Assertions\WhoCanAddUser',
        'isBranchOrOrgIdPresentIfNotAdmin' => 'Application\Assertions\BranchOrOrgIdPresentIfNotAdmin'
    ]
]]

そして、以下のようにコントローラー内で使用しました:

if (! $this->authorizationService->isGranted('isBranchOrOrgIdPresentIfNotAdmin')) {
    throw new UnauthorizedException('You are not authorized to add this aaa!');
}

return trueしかし、メソッドをアサートしても例外がスローされます。しかし、 に置き換えるisBranchOrOrgIdPresentIfNotAdminisAuthorizedToAddUser、正常に動作します。ここで何が間違っている可能性があります。2 番目のアサーション クラスBranchOrOrgIdPresentIfNotAdminは、クラスの単なるレプリカですWhoCanAddUser。以下は私のWhoCanAddUserアサーションクラスです。

namespace Application\Assertions;

use ZfcRbac\Assertion\AssertionInterface;
use ZfcRbac\Service\AuthorizationService;
use ZfcRbac\Exception\UnauthorizedException;
use Zend\Session\Container;

class WhoCanAddUser implements AssertionInterface
{
    protected $notAuthorizedMessage = 'You are not authorized to add this user!';

    public function __construct()
    {
        $this->org_session = new Container('org');
    }

    /**
     * Check if this assertion is true
     *
     * @param AuthorizationService $authorization            
     * @param mixed $role            
     *
     * @return bool
     */
    public function assert(AuthorizationService $authorization, $role = null)
    {
        return true; //added this for testing if true is working and it worked, but second assertion is not working!
        switch($authorization->getIdentity()->getRole()->getName()){
            case 'admin':
                return true;
            break;
            case 'owner':
               if($role != 'member'){
                   throw new UnauthorizedException($this->notAuthorizedMessage);
               }
               return true;
            break;
            default:
                throw new UnauthorizedException($this->notAuthorizedMessage);
            break;
        }

        if($authorization->getIdentity()->getRole()->getName() != 'admin' && !$this->org_session->offsetExists('branchId')){
            throw new \Zend\Session\Exception\RuntimeException('You need to be connected to an Organisation's branch before you can add members. Contact your Organisation Owner.');
        }
    }
}

2番目のアサーションがまったく機能していないという何かが欠けていますか?

4

1 に答える 1