⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dbtable.php

📁 Bug tracker, and reporter.
💻 PHP
📖 第 1 页 / 共 2 页
字号:
     * @param  string|array $omitColumns     * @return stdClass|boolean     */    public function getResultRowObject($returnColumns = null, $omitColumns = null)    {        if (!$this->_resultRow) {            return false;        }                $returnObject = new stdClass();        if (null !== $returnColumns) {            $availableColumns = array_keys($this->_resultRow);            foreach ( (array) $returnColumns as $returnColumn) {                if (in_array($returnColumn, $availableColumns)) {                    $returnObject->{$returnColumn} = $this->_resultRow[$returnColumn];                }            }            return $returnObject;        } elseif (null !== $omitColumns) {            $omitColumns = (array) $omitColumns;            foreach ($this->_resultRow as $resultColumn => $resultValue) {                if (!in_array($resultColumn, $omitColumns)) {                    $returnObject->{$resultColumn} = $resultValue;                }            }            return $returnObject;        } else {            foreach ($this->_resultRow as $resultColumn => $resultValue) {                $returnObject->{$resultColumn} = $resultValue;            }            return $returnObject;        }    }    /**     * authenticate() - defined by Zend_Auth_Adapter_Interface.  This method is called to      * attempt an authenication.  Previous to this call, this adapter would have already     * been configured with all nessissary 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;    }    /**     * _authenticateSetup() - This method abstracts the steps involved with making sure     * that this adapter was indeed setup properly with all required peices of information.     *     * @throws Zend_Auth_Adapter_Exception - in the event that setup was not done properly     * @return true     */    protected function _authenticateSetup()    {        $exception = null;        if ($this->_tableName == '') {            $exception = 'A table must be supplied for the Zend_Auth_Adapter_DbTable authentication adapter.';        } elseif ($this->_identityColumn == '') {            $exception = 'An identity column must be supplied for the Zend_Auth_Adapter_DbTable authentication adapter.';        } elseif ($this->_credentialColumn == '') {            $exception = 'A credential column must be supplied for the Zend_Auth_Adapter_DbTable authentication adapter.';        } elseif ($this->_identity == '') {            $exception = 'A value for the identity was not provided prior to authentication with Zend_Auth_Adapter_DbTable.';        } elseif ($this->_credential === null) {            $exception = 'A credential value was not provided prior to authentication with Zend_Auth_Adapter_DbTable.';        }        if (null !== $exception) {            /**             * @see Zend_Auth_Adapter_Exception             */            require_once 'Zend/Auth/Adapter/Exception.php';            throw new Zend_Auth_Adapter_Exception($exception);        }                $this->_authenticateResultInfo = array(            'code'     => Zend_Auth_Result::FAILURE,            'identity' => $this->_identity,            'messages' => array()            );                    return true;    }    /**     * _authenticateCreateSelect() - This method creates a Zend_Db_Select object that     * is completely configured to be queried against the database.     *     * @return Zend_Db_Select     */    protected function _authenticateCreateSelect()    {        // build credential expression        if (empty($this->_credentialTreatment) || (strpos($this->_credentialTreatment, "?") === false)) {            $this->_credentialTreatment = '?';        }        $credentialExpression = new Zend_Db_Expr(            '(CASE WHEN ' .             $this->_zendDb->quoteInto(                $this->_zendDb->quoteIdentifier($this->_credentialColumn, true)                . ' = ' . $this->_credentialTreatment, $this->_credential                )            . ' THEN 1 ELSE 0 END) AS '            . $this->_zendDb->quoteIdentifier('zend_auth_credential_match')            );        // get select        $dbSelect = $this->_zendDb->select();        $dbSelect->from($this->_tableName, array('*', $credentialExpression))                 ->where($this->_zendDb->quoteIdentifier($this->_identityColumn, true) . ' = ?', $this->_identity);        return $dbSelect;    }    /**     * _authenticateQuerySelect() - This method accepts a Zend_Db_Select object and     * performs a query against the database with that object.     *     * @param Zend_Db_Select $dbSelect     * @throws Zend_Auth_Adapter_Exception - when a invalid select object is encoutered     * @return array     */    protected function _authenticateQuerySelect(Zend_Db_Select $dbSelect)    {        try {            if ($this->_zendDb->getFetchMode() != Zend_DB::FETCH_ASSOC) {                $origDbFetchMode = $this->_zendDb->getFetchMode();                $this->_zendDb->setFetchMode(Zend_DB::FETCH_ASSOC);            }            $resultIdentities = $this->_zendDb->fetchAll($dbSelect->__toString());            if (isset($origDbFetchMode)) {                $this->_zendDb->setFetchMode($origDbFetchMode);                unset($origDbFetchMode);            }        } catch (Exception $e) {            /**             * @see Zend_Auth_Adapter_Exception             */            require_once 'Zend/Auth/Adapter/Exception.php';            throw new Zend_Auth_Adapter_Exception('The supplied parameters to Zend_Auth_Adapter_DbTable failed to '                                                . 'produce a valid sql statement, please check table and column names '                                                . 'for validity.');        }        return $resultIdentities;    }    /**     * _authenticateValidateResultSet() - This method attempts to make certian that only one     * record was returned in the result set     *     * @param array $resultIdentities     * @return true|Zend_Auth_Result     */    protected function _authenticateValidateResultSet(array $resultIdentities)    {        if (count($resultIdentities) < 1) {            $this->_authenticateResultInfo['code'] = Zend_Auth_Result::FAILURE_IDENTITY_NOT_FOUND;            $this->_authenticateResultInfo['messages'][] = 'A record with the supplied identity could not be found.';            return $this->_authenticateCreateAuthResult();        } elseif (count($resultIdentities) > 1) {            $this->_authenticateResultInfo['code'] = Zend_Auth_Result::FAILURE_IDENTITY_AMBIGUOUS;            $this->_authenticateResultInfo['messages'][] = 'More than one record matches the supplied identity.';            return $this->_authenticateCreateAuthResult();        }        return true;    }    /**     * _authenticateValidateResult() - This method attempts to validate that the record in the      * result set is indeed a record that matched the identity provided to this adapter.     *     * @param array $resultIdentity     * @return Zend_Auth_Result     */    protected function _authenticateValidateResult($resultIdentity)    {        if ($resultIdentity['zend_auth_credential_match'] != '1') {            $this->_authenticateResultInfo['code'] = Zend_Auth_Result::FAILURE_CREDENTIAL_INVALID;            $this->_authenticateResultInfo['messages'][] = 'Supplied credential is invalid.';            return $this->_authenticateCreateAuthResult();        }        unset($resultIdentity['zend_auth_credential_match']);        $this->_resultRow = $resultIdentity;        $this->_authenticateResultInfo['code'] = Zend_Auth_Result::SUCCESS;        $this->_authenticateResultInfo['messages'][] = 'Authentication successful.';        return $this->_authenticateCreateAuthResult();    }        /**     * _authenticateCreateAuthResult() - This method creates a Zend_Auth_Result object     * from the information that has been collected during the authenticate() attempt.     *     * @return Zend_Auth_Result     */    protected function _authenticateCreateAuthResult()    {        return new Zend_Auth_Result(            $this->_authenticateResultInfo['code'],            $this->_authenticateResultInfo['identity'],            $this->_authenticateResultInfo['messages']            );    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -