HTTP Authentication AdapterIntroductionZend_Auth_Adapter_Http provides a mostly-compliant implementation of » RFC-2617, » Basic and » Digest HTTP Authentication. Digest authentication is a method of HTTP authentication that improves upon Basic authentication by providing a way to authenticate without having to transmit the password in clear text across the network. Major Features:
There are a few notable features of RFC-2617 that are not implemented yet:
Design OverviewThis adapter consists of two sub-components, the HTTP authentication class itself, and the so-called "Resolvers." The HTTP authentication class encapsulates the logic for carrying out both Basic and Digest authentication. It uses a Resolver to look up a client's identity in some data store (text file by default), and retrieve the credentials from the data store. The "resolved" credentials are then compared to the values submitted by the client to determine whether authentication is successful. Configuration OptionsThe Zend_Auth_Adapter_Http class requires a configuration array passed to its constructor. There are several configuration options available, and some are required:
ResolversThe resolver's job is to take a username and realm, and return some kind of credential value. Basic authentication expects to receive the Base64 encoded version of the user's password. Digest authentication expects to receive a hash of the user's username, the realm, and their password (each separated by colons). Currently, the only supported hash algorithm is MD5. Zend_Auth_Adapter_Http relies on objects implementing Zend_Auth_Adapter_Http_Resolver_Interface. A text file resolver class is included with this adapter, but any other kind of resolver can be created simply by implementing the resolver interface. File ResolverThe file resolver is a very simple class. It has a single property specifying a filename, which can also be passed to the constructor. Its resolve() method walks through the text file, searching for a line with a matching username and realm. The text file format similar to Apache htpasswd files:
Each line consists of three fields - username, realm, and credentials - each separated by a colon. The credentials field is opaque to the file resolver; it simply returns that value as-is to the caller. Therefore, this same file format serves both Basic and Digest authentication. In Basic authentication, the credentials field should be written in clear text. In Digest authentication, it should be the MD5 hash described above. There are two equally easy ways to create a File resolver:
or
If the given path is empty or not readable, an exception is thrown. Basic UsageFirst, set up an array with the required configuration values:
This array will cause the adapter to accept either Basic or Digest authentication, and will require authenticated access to all the areas of the site under /members_only and /my_account. The realm value is usually displayed by the browser in the password dialog box. The nonce_timeout, of course, behaves as described above. Next, create the Zend_Auth_Adapter_Http object: Since we're supporting both Basic and Digest authentication, we need two different resolver objects. Note that this could just as easily be two different classes:
Finally, we perform the authentication. The adapter needs a reference to both the Request and Response objects in order to do its job:
|