[Zope3-checkins] CVS: Zope3/src/zope/app/services/pluggableauth - README.txt:1.1

Jim Fulton jim@zope.com
Thu, 26 Jun 2003 10:52:06 -0400


Update of /cvs-repository/Zope3/src/zope/app/services/pluggableauth
In directory cvs.zope.org:/tmp/cvs-serv21727/src/zope/app/services/pluggableauth

Added Files:
	README.txt 
Log Message:
Moved the original design doc for the pluggable auth service to the
README.txt for the pluggable auth service.


=== Added File Zope3/src/zope/app/services/pluggableauth/README.txt ===
$Id: README.txt,v 1.1 2003/06/26 14:52:04 jim Exp $

The current implementation will be replaced. Following is design
I came up with together with Jim Fulton.
   -- itamar

Note that this design is implemented (in some form) by the pluggable
auth service. This document needs to be updated to reflect the final
implementation. 


Design notes for new AuthenticationService
==========================================

The service contains a list of user sources. They implement interfaces,
starting with:


 class IUserPassUserSource:
     """Authenticate using username and password."""
     def authenticate(username, password):
         "Returns boolean saying if such username/password pair exists"


 class IDigestSupportingUserSource(IUserPassUserSource):
     """Allow fetching password, which is required by digest auth methods"""
     def getPassword(username):
         "Return password for username"


etc.. Probably there will be others as well, for dealing with certificate
authentication and what not. Probably we need to expand above interfaces
to deal with principal titles and descriptions, and so on.

A login method - cookie auth, HTTP basic auth, digest auth, FTP auth,
is registered as a view on one of the above interfaces. 


  class ILoginMethodView:
        def authenticate():
             """Return principal for request, or None."""
        def unauthorized():
             """Tell request that a login is required."""


The authentication service is then implemented something like this:


 class AuthenticationService:
     def authenticate(self, request):
         for us in self.userSources:
              loginView = getView(self, us, "login", request)
              principal = loginView.authenticate()
              if principal is not None:
                  return principal
     def unauthorized(self, request):
         loginView = getView(self, self.userSources[0], request)
         loginView.unauthorized()