0

我对 zfcrbac 有一个我无法弄清楚的问题。

我想我可能错过了配置中的某些内容,但我已经阅读了几次文档而没有任何线索。

每当我尝试使用它时,我都会得到

“传递给 ZfcRbac\Service\RoleService::__construct() 的参数 1 必须是 ZfcRbac\Identity\IdentityProviderInterface 的实例,给定 Zend\Authentication\AuthenticationService 的实例”

我有

'identity_provider' => 'AuthService',

AuthService 是 Zend\Authentication\AuthenticationService 的别名

我把它配置成这样

'factories' => array(
            'Auth\Model\AuthStorage' => function($sm){
                return new \Auth\Model\AuthStorage('auth_user');  
            },

            'AuthService' => function($sm) {
                $dbAdapter      = $sm->get('Zend\Db\Adapter\Adapter');
                $dbTableAuthAdapter  = new DbTableAuthAdapter($dbAdapter, 'user','username','password', 'md5(concat("' . $staticSalt . '" ,?,passwordSalt)) and active=1');

                $authService = new AuthenticationService();
                $authService->setAdapter($dbTableAuthAdapter);
                $authService->setStorage($sm->get('Auth\Model\AuthStorage'));


                return $authService;
            },
        ),

所以我不知道我错过了什么?

4

1 回答 1

3

正如文档中所说:https ://github.com/ZF-Commons/zfc-rbac/blob/master/config/zfc_rbac.global.php.dist#L28

identity_provider选项的服务名称必须返回一个实现 ZfcRbac\Identity\IdentityProviderInterface 的实例。我们提供了一个使用 AuthenticationService 的内置服务:https ://github.com/ZF-Commons/zfc-rbac/blob/master/config/zfc_rbac.global.php.dist#L31

我建议您使用默认值。为了构造ZfcRbac\Identity\AuthenticationIdentityProvider, ZfcRbacZend\Authentication\AuthenticationService从其工厂获取。因此,您实际上需要的是用“Zend\Authentication\AuthenticationService”替换配置中的 AuthService。

于 2014-03-24T15:49:48.710 回答