Zend_Auth: Allow user to be logged in to multiple tables/identities

前端 未结 4 1475
时光说笑
时光说笑 2021-02-06 02:23

I am using Zend_Auth for authentication in a web portal.

A normal mySQL \"users\" table with a login and password column gets quer

相关标签:
4条回答
  • 2021-02-06 03:08

    You should create your own Zend_Auth_Adapter. This adapter will try to authenticate against your three resources and will flag it in a private member variable, so you can know which of the logins attempts were sucefully authenticated.

    To create your Auth Adapter you can take as basis the Zend_Auth_Adapter_DbTable.

    So, in the __construct instead of pass just one DbTable adapter, you can pass the three adapters used in each resource. You'll do in that way only if each one use different resources, like LDAP for example, or even another database, if not, you can pass just one adapter and set three different table names in the configuration options.

    Here is the example from Zend_Auth_Adapter_DbTable:

        /**
         * __construct() - Sets configuration options
         *
         * @param  Zend_Db_Adapter_Abstract $zendDb
         * @param  string                   $tableName
         * @param  string                   $identityColumn
         * @param  string                   $credentialColumn
         * @param  string                   $credentialTreatment
         * @return void
         */
        public function __construct(Zend_Db_Adapter_Abstract $zendDb, $tableName = null, $identityColumn = null,
                                    $credentialColumn = null, $credentialTreatment = null)
        {
            $this->_zendDb = $zendDb;
    
            // Here you can set three table names instead of one
            if (null !== $tableName) {
                $this->setTableName($tableName);
            }
    
            if (null !== $identityColumn) {
                $this->setIdentityColumn($identityColumn);
            }
    
            if (null !== $credentialColumn) {
                $this->setCredentialColumn($credentialColumn);
            }
    
            if (null !== $credentialTreatment) {
                $this->setCredentialTreatment($credentialTreatment);
            }
        }
    

    The method bellow, from Zend_Auth_Adapter_DbTable, try to authenticate against one table, you can change it to try in three tables, and for each, when you get sucess, you set this as a flag in the private member variable. Something like $result['group1'] = 1; You'll set 1 for each sucessfully login attempt.

    /**
     * authenticate() - defined by Zend_Auth_Adapter_Interface.  This method is called to
     * attempt an authentication.  Previous to this call, this adapter would have already
     * been configured with all necessary information to successfully connect to a database
     * table and attempt to find a record matching the provided identity.
     *
     * @throws Zend_Auth_Adapter_Exception if answering the authentication query is impossible
     * @return Zend_Auth_Result
     */
    public function authenticate()
    {
        $this->_authenticateSetup();
        $dbSelect = $this->_authenticateCreateSelect();
        $resultIdentities = $this->_authenticateQuerySelect($dbSelect);
    
        if ( ($authResult = $this->_authenticateValidateResultset($resultIdentities)) instanceof Zend_Auth_Result) {
            return $authResult;
        }
    
        $authResult = $this->_authenticateValidateResult(array_shift($resultIdentities));
        return $authResult;
    }
    

    You will return a valid $authresult only if one of the three login attempts were sucessfully authenticated.

    Now, in your controller, after you try to login:

    public function loginAction()
    {
        $form = new Admin_Form_Login();
    
        if($this->getRequest()->isPost())
        {
            $formData = $this->_request->getPost();
    
            if($form->isValid($formData))
            {
    
                $authAdapter = $this->getAuthAdapter();
                    $authAdapter->setIdentity($form->getValue('user'))
                                ->setCredential($form->getValue('password'));
                    $result = $authAdapter->authenticate();
    
                    if($result->isValid()) 
                    {
                        $identity = $authAdapter->getResult();
                        Zend_Auth::getInstance()->getStorage()->write($identity);
    
                        // redirect here
                    }           
            }
    
        }
    
        $this->view->form = $form;
    
    }
    
    private function getAuthAdapter() 
    {   
        $authAdapter = new MyAuthAdapter(Zend_Db_Table::getDefaultAdapter());
        // Here the three tables
        $authAdapter->setTableName(array('users','users2','users3'))
                    ->setIdentityColumn('user')
                    ->setCredentialColumn('password')
                    ->setCredentialTreatment('MD5(?)');
        return $authAdapter;    
    } 
    

    The key here is the line bellow, that will be implemeted in your custom auth adapter:

    $identity = $authAdapter->getResult();
    

    You can take as basis this form Zend_Auth_Adapter_DbTable:

       /**
         * getResultRowObject() - Returns the result row as a stdClass object
         *
         * @param  string|array $returnColumns
         * @param  string|array $omitColumns
         * @return stdClass|boolean
         */
        public function getResultRowObject($returnColumns = null, $omitColumns = null)
        {
            // ...
        }
    

    This return the row matched in the login attempt when sucessfully authenticated. So, you'll create your getResult() method that can return this row and also the $this->result['groupX'] flags. Something like:

    public function authenticate() 
    {
        // Perform the query for table 1 here and if ok:
        $this->result = $row->toArrray(); // Here you can get the table result of just one table or even merge all in one array if necessary
        $this->result['group1'] = 1;
    
        // and so on...
        $this->result['group2'] = 1;
    
        // ...
        $this->result['group3'] = 1;
    
       // Else you will set all to 0 and return a fail result
    }
    
    public function getResult()
    {
        return $this->result;
    }
    

    After all you can use Zend_Acl to take control over your views and other actions. Since you will have the flags in the Zend Auth Storage, you can use than as roles:

    $this->addRole(new Zend_Acl_Role($row['group1']));
    

    Here is some resources:

    http://framework.zend.com/manual/en/zend.auth.introduction.html

    http://zendguru.wordpress.com/2008/11/06/zend-framework-auth-with-examples/

    http://alex-tech-adventures.com/development/zend-framework/61-zendauth-and-zendform.html

    http://alex-tech-adventures.com/development/zend-framework/62-allocation-resources-and-permissions-with-zendacl.html

    http://alex-tech-adventures.com/development/zend-framework/68-zendregistry-and-authentication-improvement.html

    0 讨论(0)
  • 2021-02-06 03:10

    I took some inspiration from the Zym_Auth_Adapter_Chain, but altered it slightly so it doesn't stop on the first adapter that returns successfully.

    require_once 'Zend/Auth/Adapter/Interface.php';
    require_once 'Zend/Auth/Result.php';
    
    class My_Auth_Adapter_Chain implements Zend_Auth_Adapter_Interface
    {
        private $_adapters = array();
    
        public function authenticate()
        {
            $adapters = $this->getAdapters();
    
            $results        = array();
            $resultMessages = array();
            foreach ($adapters as $adapter) {
                // Validate adapter
                if (!$adapter instanceof Zend_Auth_Adapter_Interface) {
                    require_once 'Zend/Auth/Adapter/Exception.php';
                    throw new Zend_Auth_Adapter_Exception(sprintf(
                        'Adapter "%s" is not an instance of Zend_Auth_Adapter_Interface',
                    get_class($adapter)));
                }
    
                $result = $adapter->authenticate();
    
                if ($result->isValid()) {
                    if ($adapter instanceof Zend_Auth_Adapter_DbTable) {
                        $results[] = $adapter->getResultRowObject();
                    }
                    else {
                        $results[] = $result->getIdentity();
                    }
                }
                else {
                    $resultMessages[] = $result->getMessages();
                }
            }
            if (!empty($results)) {
                // At least one adapter succeeded, return SUCCESS
                return new Zend_Auth_Result(Zend_Auth_Result::SUCCESS, $results, $resultMessages);
            }
    
            return new Zend_Auth_Result(Zend_Auth_Result::FAILURE, null, $resultMessages);
        }
    
        public function getAdapters()
        {
            return $this->_adapters;
        }
    
        public function addAdapter(Zend_Auth_Adapter_Interface $adapter)
        {
            $this->_adapters[] = $adapter;
            return $this;
        }
    
        public function setAdapters(array $adapters)
        {
            $this->_adapters = $adapters;
            return $this;
        }
    }
    

    To call it from a controller you simply create the chain, then the adapters you want to use (in your case this will probably be a DB adapter per entity table), and finally pass the adapters to the chain.

    $db = Zend_Db_Table::getDefaultAdapter();
    
    // Setup adapters
    $dbAdminsAdapter = new Zend_Auth_Adapter_DbTable($db, 'admins');    
    $dbAdminsAdapter->setIdentityColumn('login')
                    ->setCredentialColumn('password')
                    ->setIdentity($login)
                    ->setCredential($password);
    
    $dbUsersAdapter =  new Zend_Auth_Adapter_DbTable($db, 'users');
    $dbUsersAdapter->setIdentityColumn('login')
                   ->setCredentialColumn('password')
                   ->setIdentity($login)
                   ->setCredential($password);
    ...
    
    // Setup chain
    $chain = new My_Auth_Adapter_Chain();
    $chain->addAdapter($dbAdminsAdapter)
          ->addAdapter($dbUsersAdapter);
    
    // Do authentication
    $auth = Zend_Auth::getInstance();
    $result = $auth->authenticate($chain);
    if ($result->isValid()) {
        // succesfully logged in
    }
    

    This is just basic example code, you probably want to use setCredentialTreatment also on the DbTable adapters...

    The upside of this approach is that it will be trivial to add other existing adapters for other forms of authentication (ie. OpenID) to the chain later on...

    The downside : as is you will get an array as result from every call to Zend_Auth::getInstance()->getIdentity();. You could of course change this in the Chain adapter, but that's left to you :p.

    DISCLAIMER : I really don't think it's wise to do it this way. To make it work you have to share the same login and password accross the different tables, so if a user has more then 1 role (identity) changes his password you'll have to make sure this change is propagated to all identity tables where that user has an account. But I'll stop nagging now :p.

    0 讨论(0)
  • 2021-02-06 03:15

    Because Zend_Auth is a singleton, creating custom auth adapters for each authentication source only solves the first half of this issue. The second half of the issue is that you want to be able to log in simultaneously with multiple accounts: one of each authentication source.

    I asked a similar question recently. The solution was to extend Zend_Auth as shown in the accepted answer. I then initialize the different authentication types in my bootstrap.

    protected function _initAuth()
    {
        Zend_Registry::set('auth1', new My_Auth('auth1'));
        Zend_Registry::set('auth2', new My_Auth('auth2'));
        Zend_Registry::set('auth3', new My_Auth('auth3'));
    }
    

    So, instead of the singleton Zend_Auth::getInstance() you would use Zend_Registry::get('auth1'), etc.

    0 讨论(0)
  • 2021-02-06 03:15

    Why not just create a view that merge all 3 tables, then authenticate against that view?

    0 讨论(0)
提交回复
热议问题