Opened 16 years ago

Closed 10 years ago

#7220 closed Cleanup/optimization (fixed)

django.contrib.auth.models.AbstractBaseUser.last_login should allow null=True

Reported by: veena Owned by: anonymous
Component: contrib.auth Version: dev
Severity: Normal Keywords: schemamigration
Cc: simon@…, martin.paquette@…, Tim Graham Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

I think attribute last_login in model User in django.contrib.auth should has property null=True.
Now it has only default=datetime.datetime.now

So, when you create new user the last_login is set to now datetime.

But when you create new user it doesn't mean that user has been logged in. For example in django-registration there is first user created and link to activation is sended to his email. After user activates his account he can login.

Change History (17)

comment:1 by Simon Greenhill, 16 years ago

Triage Stage: UnreviewedDesign decision needed

comment:2 by sven.hoffmann@…, 14 years ago

We would like to use the field last_login to determine if a user has ever logged in.
now we need to check if last_login == date_joined to do that but that's pretty weird,
as the user actually has not logged in yet, but has a date for last_login set.
why no just have the field null until first login as suggested in this ticket?

comment:3 by Gabriel Hurley, 13 years ago

Component: Contrib appscontrib.auth

comment:4 by Luke Plant, 13 years ago

Severity: Normal
Type: Bug

comment:5 by Chris Beaven, 13 years ago

Easy pickings: unset
Triage Stage: Design decision neededSomeday/Maybe

The problem is that it leaves any User model created previously in an indeterminate state, since we have no way to provide migrations in core.

For that reason, I'm shunting this to a 'someday' issue.

comment:6 by Aymeric Augustin, 13 years ago

UI/UX: unset

Change UI/UX from NULL to False.

comment:7 by mohitbagga, 11 years ago

Owner: changed from nobody to anonymous
Status: newassigned

comment:8 by Tim Graham, 11 years ago

Keywords: schemamigration added; auth last login user removed
Summary: Last_login in django.contrib.auth should has null=Truedjango.contrib.auth.models.AbstractBaseUser.last_login should allow null=True
Type: BugCleanup/optimization

comment:9 by Simon Litchfield, 11 years ago

Cc: simon@… added

comment:10 by Martin Paquette, 10 years ago

Cc: martin.paquette@… added

comment:11 by Tim Graham, 10 years ago

Cc: Tim Graham added
Has patch: set
Triage Stage: Someday/MaybeAccepted

One problem that came up when I tried to implement this is that user.last_login is used in PasswordResetTokenGenerator. Can we substitute a fixed date if last_login is None without losing security?

I'm also interested in opinions about including a data migration that sets last_login to null for any users where last_login == date_created. This would make the field on existing users consistent with new users.

PR

in reply to:  11 comment:12 by Simon Charette, 10 years ago

Replying to timo:

One problem that came up when I tried to implement this is that user.last_login is used in PasswordResetTokenGenerator. Can we substitute a fixed date if last_login is None without losing security?

What about not using the last_login date to generate the hash it's None?

I'm also interested in opinions about including a data migration that sets last_login to null for any users where last_login == date_created. This would make the field on existing users consistent with new users.

It makes sense to me. Makes me wonder if we have any ways of testing a data migration yet?

comment:13 by Tim Graham, 10 years ago

  1. I think your suggestion is okay; PR updated with it.
  1. I added a data migration to the PR. I am not sure if it's a good idea, especially because User is swappable. It may be better to put that code in the release notes and ask them to run it if they'd like. For testing, I would probably just test the function in the migration outside of the migrations framework itself.

in reply to:  13 comment:14 by Simon Charette, 10 years ago

Replying to timo:

  1. I think your suggestion is okay; PR updated with it.

The changes LGTM.

  1. I added a data migration to the PR. I am not sure if it's a good idea, especially because User is swappable. It may be better to put that code in the release notes and ask them to run it if they'd like. For testing, I would probably just test the function in the migration outside of the migrations framework itself.

I won't strongly oppose to a mention in the release notes instead but it should be pretty safe to rely on the User model if it's retrieved from the provided apps based on the AUTH_USER_MODEL setting.

comment:15 by Tim Graham, 10 years ago

I removed the data migration and added a mention in the release notes. It seems safer and is less code for us to maintain.

comment:16 by Simon Charette, 10 years ago

Triage Stage: AcceptedReady for checkin

Except for the test comment it looks good to me.

comment:17 by Tim Graham <timograham@…>, 10 years ago

Resolution: fixed
Status: assignedclosed

In a2479f46f3d05b37254ad701b6b76f84624d3cb5:

Fixed #7220 -- Allowed AbstractBaseUser.last_login to be null.

Thanks veena for the suggestion and Simon Charette and Kévin Etienne for reviews.

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