zend framework 2 AuthenticationService

时间:2012-12-07 09:17:46

标签: php authentication zend-framework2

我的模块中有两个控制器,它们都需要查看用户是否已登录。 Login控制器使用DbTable对用户进行身份验证,并将标识写入存储。

我正在使用> Zend \ Authentication \ AuthenticationService; $ auth = new AuthenticationService();

在控制器函数内部,然后我在多个pageAction()

上实例化它的实例

为此我在Module.php中写了一个函数

如下

public function getServiceConfig()
    {
        return array(
            'factories' => array(
                'Application\Config\DbAdapter' => function ($sm) {
                    $dbAdapter = $sm->get('Zend\Db\Adapter\Adapter');
                    return $dbAdapter;
                },
                 'Admin\Model\PagesTable' => function($sm){
                     $dbAdapter = $sm->get('Zend\Db\Adapter\Adapter');
                     $pagesTable = new PagesTable(new TableGateway('pages',$dbAdapter) );
                    return $pagesTable;
                },
                'Admin\Authentication\Service' => function($sm){
                    return new AuthenticationService();

                }
            ),
        );
    }

正如你所看到的那样,每次我认为不好的时候我都会返回新的AuthenticationService()。我找不到如何获取已经实例化的服务实例或 我必须为此写一个单例类。请告知任何示例代码snipets更深入的解释将受到高度重视和赞赏谢谢。

1 个答案:

答案 0 :(得分:2)

请改为尝试:

public function getServiceConfig()
{
    return array(
        'aliases' => array(
            'Application\Config\DbAdapter' => 'Zend\Db\Adapter\Adapter',
            'Admin\Authentication\Service' => 'Zend\Authentication\AuthenticationService',
        ),
        'factories' => array(
            'Admin\Model\PagesTable' => function ($serviceManager) {
                 $dbAdapter    = $serviceManager->get('Application\Config\DbAdapter');
                 $tableGateway = new TableGateway('pages', $dbAdapter);
                 $pagesTable   = new PagesTable($tableGateway);
                 return $pagesTable;
             },
        ),
    );
}

请注意根数组的“别名”部分,任何其他更改都只是整容,您可能更喜欢按照建议的原始方式(例如使用工厂来检索Zend \ Db \ Adapter \ Adapter实例)别名也是。)

亲切的问候,

ISE