Opened 13 years ago

Closed 13 years ago

#15755 closed New feature (wontfix)

Admin should allow for configurable login handling support

Reported by: Matt McDonald Owned by: nobody
Component: contrib.admin Version: dev
Severity: Normal Keywords:
Cc: Matt McDonald Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

In its current implementation, the contrib.admin application attempts to handle user authentication by displaying a login form for any request where the user does not have permission to view (either because they are unauthenticated, or their user account fails the is_active and is_staff test).

In cases where authentication is being handled by an external system (e.g., Apache .htaccess or Google Accounts auth on App Engine), it can be confusing for users to see this login form when their account does not have permission to access the admin, as in some cases, the credentials they use might not correspond to what is stored in the Django auth table.

I'd like to propose a configuration knob to allow the choice for whether the admin app attempts to perform user authentication at all, and instead just relies on all users to be pre-authenticated.

Attachments (1)

admin.diff (1.5 KB ) - added by Matt McDonald 13 years ago.

Download all attachments as: .zip

Change History (5)

by Matt McDonald, 13 years ago

Attachment: admin.diff added

comment:1 by Matt McDonald, 13 years ago

Summary: Admin should allow for configurable support login handlingAdmin should allow for configurable login handling support

comment:2 by Łukasz Rekucki, 13 years ago

A global settings is not an option (you can have more then one admin instance). You can achieve exactly the same by overriding login() and/or admin_view() methods using a subclass of AdminSite.

comment:3 by Matt McDonald, 13 years ago

This is actually the approach I'm currently taking in my project, but was interested in achieving the result in a bit of simpler way. In the common case of using the default admin site, it would be nice to just be able to change 1 settings.py configuration without worrying about subclassing.

Since the current patch preserves backward compatibility, I viewed the fact that it applies globally to all admin site instances as a desired effect. Selectively choosing individual admin site instance to have login handling enabled could then be achieved through sub-classing.

However, I do understand if there is resistance to this idea.

comment:4 by Jannis Leidel, 13 years ago

Resolution: wontfix
Status: newclosed

This is already possible, closing as wontfix.

Note: See TracTickets for help on using tickets.
Back to Top