* $credentials = new ezcAuthenticationPasswordCredentials( 'jan.modaal', 'b1b3773a05c0ed0176787a4f1574ff0075f7521e' ); * $authentication = new ezcAuthentication( $credentials ); * $authentication->session = new ezcAuthenticationSession(); * $authentication->addFilter( new ezcAuthenticationHtpasswdFilter( '/etc/htpasswd' ) ); * // add other filters if needed * if ( !$authentication->run() ) * { * // authentication did not succeed, so inform the user * $status = $authentication->getStatus(); * $err = array( * 'ezcAuthenticationHtpasswdFilter' => array( * ezcAuthenticationHtpasswdFilter::STATUS_USERNAME_INCORRECT => 'Incorrect username', * ezcAuthenticationHtpasswdFilter::STATUS_PASSWORD_INCORRECT => 'Incorrect password' * ) * ); * foreach ( $status as $line ) * { * list( $key, $value ) = each( $line ); * echo $err[$key][$value] . "\n"; * } * } * else * { * // authentication succeeded, so allow the user to see his content * } * * * @property ezcAuthenticationSession $session * The session object to use during authentication to store the * authentication information between requests. * @property ezcAuthenticationStatus $status * The status object which holds the status of the run filters. * @property ezcAuthenticationCredentials $credentials * The user credentials to pass to the authentication filters. * * @package Authentication * @version 1.2.1 * @mainclass */ class ezcAuthentication { /** * The filter queue of the authentication process. * * @var array(ezcAuthenticationFilter) */ protected $filters = array(); /** * Options for the Authentication object. * * @var ezcAuthenticationOptions */ protected $options; /** * The properties of this class. * * @var array(string=>mixed) */ private $properties = array(); /** * Creates a new object of this class. * * @param ezcAuthenticationCredentials $credentials Authentication credentials * @param ezcAuthenticationOptions $options Options for this class */ public function __construct( ezcAuthenticationCredentials $credentials, ezcAuthenticationOptions $options = null ) { $this->credentials = $credentials; $this->status = new ezcAuthenticationStatus(); $this->options = ( $options === null ) ? new ezcAuthenticationOptions() : $options; } /** * Sets the property $name to $value. * * @throws ezcBasePropertyNotFoundException * if the property $name does not exist * @throws ezcBaseValueException * if $value is not correct for the property $name * @param string $name The name of the property to set * @param mixed $value The new value of the property * @ignore */ public function __set( $name, $value ) { switch ( $name ) { case 'session': if ( $value instanceof ezcAuthenticationSession ) { $this->properties[$name] = $value; } else { throw new ezcBaseValueException( $name, $value, 'ezcAuthenticationSession' ); } break; case 'status': if ( $value instanceof ezcAuthenticationStatus ) { $this->properties[$name] = $value; } else { throw new ezcBaseValueException( $name, $value, 'ezcAuthenticationStatus' ); } break; case 'credentials': if ( $value instanceof ezcAuthenticationCredentials ) { $this->properties[$name] = $value; } else { throw new ezcBaseValueException( $name, $value, 'ezcAuthenticationCredentials' ); } break; default: throw new ezcBasePropertyNotFoundException( $name ); } } /** * Returns the value of the property $name. * * @throws ezcBasePropertyNotFoundException * if the property $name does not exist * @param string $name The name of the property for which to return the value * @return mixed * @ignore */ public function __get( $name ) { switch ( $name ) { case 'session': case 'status': case 'credentials': return $this->properties[$name]; default: throw new ezcBasePropertyNotFoundException( $name ); } } /** * Returns true if the property $name is set, otherwise false. * * @param string $name The name of the property to test if it is set * @return bool * @ignore */ public function __isset( $name ) { switch ( $name ) { case 'session': case 'status': case 'credentials': return isset( $this->properties[$name] ); default: return false; } } /** * Sets the options of this class to $options. * * @param ezcAuthenticationOptions $options Options for this class */ public function setOptions( ezcAuthenticationOptions $options ) { $this->options = $options; } /** * Returns the options of this class. * * @return ezcAuthenticationOptions */ public function getOptions() { return $this->options; } /** * Runs through all the filters in the filter list. * * @return bool */ public function run() { $code = ezcAuthenticationFilter::STATUS_OK; $credentials = $this->credentials; if ( isset( $this->session ) ) { $code = $this->session->run( $credentials ); $this->status->append( get_class( $this->session ), $code ); } if ( !isset( $this->session ) || $code === ezcAuthenticationSession::STATUS_EMPTY ) { foreach ( $this->filters as $filter ) { $code = $filter[0]->run( $credentials ); if ( $filter[0] instanceof ezcAuthenticationGroupFilter ) { $statuses = $filter[0]->status->get(); // append the statuses from the filters in the group to the // status of the Authentication object foreach ( $statuses as $status ) { list( $key, $value ) = each( $status ); $this->status->append( $key, $value ); } } else { $this->status->append( get_class( $filter[0] ), $code ); } if ( ( $filter[1] === true && $code !== ezcAuthenticationFilter::STATUS_OK ) ) { return false; } if ( $filter[1] === true && $code === ezcAuthenticationFilter::STATUS_OK ) { break; } } } elseif ( $code === ezcAuthenticationSession::STATUS_EXPIRED ) { return false; } if ( $code !== ezcAuthenticationFilter::STATUS_OK ) { return false; } if ( isset( $this->session ) ) { $this->session->save( $credentials->__toString() ); } return true; } /** * Adds an authentication filter at the end of the filter list. * * By specifying the second parameter as true, the authentication process * (triggered by calling the run() method) will stop after processing this * filter regardless of its success. * * @param ezcAuthenticationFilter $filter The authentication filter to add * @param bool $stop If authentication should continue past this filter */ public function addFilter( ezcAuthenticationFilter $filter, $stop = false ) { $this->filters[] = array( $filter, $stop ); } /** * Returns the status of authentication. * * The format of the returned array is array( array( class => code ) ). * * Example: * * array( * array( 'ezcAuthenticationSession' => ezcAuthenticationSession::STATUS_EMPTY ), * array( 'ezcAuthenticationDatabaseFilter' => ezcAuthenticationDatabaseFilter::STATUS_PASSWORD_INCORRECT ) * ); * * * @return array(string=>mixed) */ public function getStatus() { return $this->status->get(); } } ?>