Don't redirect good but unauthorized users (fixes #571)

This commit is contained in:
Guillaume Ayoub 2011-08-21 14:59:43 +02:00
parent 4c85e730b3
commit 5137709801

View File

@ -219,17 +219,18 @@ class Application(object):
last_allowed = False
if calendars:
# Calendars found
status, headers, answer = function(
environ, calendars, content, user)
elif user and self.acl.has_right(user, user, password):
# Check if the user/password couple matches,
# redirect user to his principal home in this case
elif user and last_allowed:
# Good user and no calendars found, redirect user to home
location = "/%s/" % str(quote(user))
log.LOGGER.info("redirecting to %s" % location)
status = client.FOUND
headers = {"Location": location}
answer = "Redirecting to %s" % location
else:
# Unknown or unauthorized user
status = client.UNAUTHORIZED
headers = {
"WWW-Authenticate":