vote up 0 vote down star

Hi all,

I've a web application that accesses multiple controller classes based on the parameters it is passed. For some of the controllers, I want users to authenticate themselves (by simple HTTP authentication), and for some I want public access.

Is there a way to make this happen? In my .htaccess file, I now have

AddHandler mod_python .py
PythonHandler handler
PythonAuthenHandler handler
PythonDebug On

AuthType Basic
AuthName "My Realm"
AuthBasicAuthoritative Off
require valid-user

The authenhandler is called correctly, but even when I just do

def authenhandler(req): 
    return apache.OK

the user is asked for a password (though any password that is entered is accepted)

I tried removing the Auth* stuff (and the require directive) from the .htaccess entirely, and just did the following in the normal handler for those cases where I do want authentication (and it was not found):

request.err_headers_out.add('WWW-Authenticate', 'Basic realm="My Realm")
return apache.HTTP_UNAUTHORIZED

which is what I understand what the server should do when not receiving correct authentication. That did not work either, however.

I come from a PHP background and I know that the latter is how it's done in PHP - but PHP sometimes does extra little pieces of undocumented magic to make this stuff actually work. Is this one of those cases?

Is there any way to optionally request authentication, depending on the URL passed, from the same handler?

flag
In what way did the Unauthorized response not work? Did it pass the 401 back but then fail to read the submitted password, or did it not even get that far? I'm not that familiar with mod_python; certainly this approach works in WSGI/mod_wsgi, which would be preferable today. – bobince Sep 24 at 14:02
In that case I get a 200 OK, but with the WWW-Authenticate header set.. Rather weird behaviour, since I really do return apache.HTTP_UNAUTHORIZED – skrebbel Sep 24 at 14:20
I can't go to WSGI for business reasons - in essence, the customer does not want to upgrade and I can't convince him otherwise – skrebbel Sep 24 at 14:29

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.