2008-10-06 13:14:17 +08:00
import datetime
import urllib
2006-07-19 20:48:30 +08:00
from django . core . exceptions import ImproperlyConfigured
2011-06-27 00:51:12 +08:00
from django . core . mail import send_mail
2010-01-22 22:30:06 +08:00
from django . db import models
2007-09-16 02:01:29 +08:00
from django . db . models . manager import EmptyManager
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
from django . utils . encoding import smart_str
from django . utils . translation import ugettext_lazy as _
2011-06-27 00:51:12 +08:00
2011-06-27 00:51:46 +08:00
from django . contrib import auth
from django . contrib . auth . signals import user_logged_in
from django . contrib . auth . utils import ( get_hexdigest , make_password ,
check_password , is_password_usable ,
get_random_string , UNUSABLE_PASSWORD )
from django . contrib . contenttypes . models import ContentType
2006-05-02 09:31:56 +08:00
2010-11-26 21:33:27 +08:00
def update_last_login ( sender , user , * * kwargs ) :
"""
A signal receiver which updates the last_login date for
the user logging in .
"""
user . last_login = datetime . datetime . now ( )
user . save ( )
user_logged_in . connect ( update_last_login )
2006-05-02 09:31:56 +08:00
class SiteProfileNotAvailable ( Exception ) :
pass
2009-12-14 20:39:20 +08:00
class PermissionManager ( models . Manager ) :
def get_by_natural_key ( self , codename , app_label , model ) :
return self . get (
codename = codename ,
content_type = ContentType . objects . get_by_natural_key ( app_label , model )
)
2006-05-02 09:31:56 +08:00
class Permission ( models . Model ) :
2006-06-20 12:07:32 +08:00
""" The permissions system provides a way to assign permissions to specific users and groups of users.
The permission system is used by the Django admin site , but may also be useful in your own code . The Django admin site uses permissions as follows :
- The " add " permission limits the user ' s ability to view the " add " form and add an object.
- The " change " permission limits a user ' s ability to view the change list, view the " change " form and change an object.
- The " delete " permission limits the ability to delete an object .
2006-06-20 12:14:10 +08:00
2006-06-20 12:07:32 +08:00
Permissions are set globally per type of object , not per specific object instance . It is possible to say " Mary may change news stories, " but it ' s not currently possible to say " Mary may change news stories, but only the ones she created herself " or " Mary may only change news stories that have a certain status or publication date. "
2006-08-31 00:39:18 +08:00
Three basic permissions - - add , change and delete - - are automatically created for each Django model .
2006-06-20 12:07:32 +08:00
"""
2007-08-05 13:14:46 +08:00
name = models . CharField ( _ ( ' name ' ) , max_length = 50 )
2006-05-02 09:31:56 +08:00
content_type = models . ForeignKey ( ContentType )
2007-08-05 13:14:46 +08:00
codename = models . CharField ( _ ( ' codename ' ) , max_length = 100 )
2009-12-14 20:39:20 +08:00
objects = PermissionManager ( )
2007-04-07 12:21:31 +08:00
2006-05-02 09:31:56 +08:00
class Meta :
verbose_name = _ ( ' permission ' )
verbose_name_plural = _ ( ' permissions ' )
unique_together = ( ( ' content_type ' , ' codename ' ) , )
2010-01-13 07:35:54 +08:00
ordering = ( ' content_type__app_label ' , ' content_type__model ' , ' codename ' )
2006-05-02 09:31:56 +08:00
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
def __unicode__ ( self ) :
2008-08-11 23:13:00 +08:00
return u " %s | %s | %s " % (
unicode ( self . content_type . app_label ) ,
unicode ( self . content_type ) ,
unicode ( self . name ) )
2006-05-02 09:31:56 +08:00
2009-12-14 20:39:20 +08:00
def natural_key ( self ) :
return ( self . codename , ) + self . content_type . natural_key ( )
natural_key . dependencies = [ ' contenttypes.contenttype ' ]
2006-05-02 09:31:56 +08:00
class Group ( models . Model ) :
2006-06-20 12:07:32 +08:00
""" Groups are a generic way of categorizing users to apply permissions, or some other label, to those users. A user can belong to any number of groups.
A user in a group automatically has all the permissions granted to that group . For example , if the group Site editors has the permission can_edit_home_page , any user in that group will have that permission .
2011-04-02 00:10:22 +08:00
Beyond permissions , groups are a convenient way to categorize users to apply some label , or extended functionality , to them . For example , you could create a group ' Special users ' , and you could write code that would do special things to those users - - such as giving them access to a members - only portion of your site , or sending them members - only email messages .
2006-06-20 12:07:32 +08:00
"""
2007-08-05 13:14:46 +08:00
name = models . CharField ( _ ( ' name ' ) , max_length = 80 , unique = True )
2008-07-19 07:54:34 +08:00
permissions = models . ManyToManyField ( Permission , verbose_name = _ ( ' permissions ' ) , blank = True )
2007-04-07 12:21:31 +08:00
2006-05-02 09:31:56 +08:00
class Meta :
verbose_name = _ ( ' group ' )
verbose_name_plural = _ ( ' groups ' )
2008-08-11 23:13:00 +08:00
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
def __unicode__ ( self ) :
2006-05-02 09:31:56 +08:00
return self . name
class UserManager ( models . Manager ) :
2011-06-28 12:29:48 +08:00
def create_user ( self , username , email = None , password = None ) :
2010-03-02 04:30:44 +08:00
"""
2011-04-02 00:10:22 +08:00
Creates and saves a User with the given username , email and password .
2010-03-02 04:30:44 +08:00
"""
2006-05-02 09:31:56 +08:00
now = datetime . datetime . now ( )
2010-10-11 20:20:07 +08:00
2010-03-02 04:30:44 +08:00
# Normalize the address by lowercasing the domain part of the email
# address.
2011-06-28 12:29:48 +08:00
email = email or ' '
2010-03-02 04:30:44 +08:00
try :
email_name , domain_part = email . strip ( ) . split ( ' @ ' , 1 )
except ValueError :
pass
else :
email = ' @ ' . join ( [ email_name , domain_part . lower ( ) ] )
user = self . model ( username = username , email = email , is_staff = False ,
is_active = True , is_superuser = False , last_login = now ,
date_joined = now )
2010-10-09 11:34:08 +08:00
user . set_password ( password )
2010-02-22 21:09:02 +08:00
user . save ( using = self . _db )
2006-05-02 09:31:56 +08:00
return user
2008-06-08 13:31:16 +08:00
def create_superuser ( self , username , email , password ) :
u = self . create_user ( username , email , password )
u . is_staff = True
u . is_active = True
u . is_superuser = True
2010-02-22 21:09:02 +08:00
u . save ( using = self . _db )
2009-03-31 06:00:07 +08:00
return u
2008-06-08 13:31:16 +08:00
2006-05-02 09:31:56 +08:00
def make_random_password ( self , length = 10 , allowed_chars = ' abcdefghjkmnpqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ23456789 ' ) :
2011-06-27 00:51:12 +08:00
"""
Generates a random password with the given length
and given allowed_chars
"""
2006-05-02 09:31:56 +08:00
# Note that default value of allowed_chars does not have "I" or letters
# that look like it -- just to avoid confusion.
2011-06-27 00:51:12 +08:00
return get_random_string ( length , allowed_chars )
2006-05-02 09:31:56 +08:00
2010-01-28 09:47:23 +08:00
# A few helper functions for common logic between User and AnonymousUser.
def _user_get_all_permissions ( user , obj ) :
permissions = set ( )
anon = user . is_anonymous ( )
for backend in auth . get_backends ( ) :
if not anon or backend . supports_anonymous_user :
if hasattr ( backend , " get_all_permissions " ) :
if obj is not None :
if backend . supports_object_permissions :
permissions . update (
backend . get_all_permissions ( user , obj )
)
else :
permissions . update ( backend . get_all_permissions ( user ) )
return permissions
def _user_has_perm ( user , perm , obj ) :
anon = user . is_anonymous ( )
2010-12-22 03:18:12 +08:00
active = user . is_active
2010-01-28 09:47:23 +08:00
for backend in auth . get_backends ( ) :
2010-12-22 03:18:12 +08:00
if ( not active and not anon and backend . supports_inactive_user ) or \
( not anon or backend . supports_anonymous_user ) :
2010-01-28 09:47:23 +08:00
if hasattr ( backend , " has_perm " ) :
if obj is not None :
if ( backend . supports_object_permissions and
backend . has_perm ( user , perm , obj ) ) :
return True
else :
if backend . has_perm ( user , perm ) :
return True
return False
def _user_has_module_perms ( user , app_label ) :
anon = user . is_anonymous ( )
2010-12-22 03:18:12 +08:00
active = user . is_active
2010-01-28 09:47:23 +08:00
for backend in auth . get_backends ( ) :
2010-12-22 03:18:12 +08:00
if ( not active and not anon and backend . supports_inactive_user ) or \
( not anon or backend . supports_anonymous_user ) :
2010-01-28 09:47:23 +08:00
if hasattr ( backend , " has_module_perms " ) :
if backend . has_module_perms ( user , app_label ) :
return True
return False
2006-05-02 09:31:56 +08:00
class User ( models . Model ) :
2009-12-10 09:05:35 +08:00
"""
Users within the Django authentication system are represented by this model .
2006-06-20 12:07:32 +08:00
2006-06-20 12:14:10 +08:00
Username and password are required . Other fields are optional .
2006-06-20 12:07:32 +08:00
"""
2010-03-02 03:49:05 +08:00
username = models . CharField ( _ ( ' username ' ) , max_length = 30 , unique = True , help_text = _ ( " Required. 30 characters or fewer. Letters, numbers and @/./+/-/_ characters " ) )
2007-08-05 13:14:46 +08:00
first_name = models . CharField ( _ ( ' first name ' ) , max_length = 30 , blank = True )
last_name = models . CharField ( _ ( ' last name ' ) , max_length = 30 , blank = True )
2006-05-02 09:31:56 +08:00
email = models . EmailField ( _ ( ' e-mail address ' ) , blank = True )
2007-08-05 13:14:46 +08:00
password = models . CharField ( _ ( ' password ' ) , max_length = 128 , help_text = _ ( " Use ' [algo]$[salt]$[hexdigest] ' or use the <a href= \" password/ \" >change password form</a>. " ) )
2006-10-25 04:45:28 +08:00
is_staff = models . BooleanField ( _ ( ' staff status ' ) , default = False , help_text = _ ( " Designates whether the user can log into this admin site. " ) )
2008-04-13 09:50:29 +08:00
is_active = models . BooleanField ( _ ( ' active ' ) , default = True , help_text = _ ( " Designates whether this user should be treated as active. Unselect this instead of deleting accounts. " ) )
2006-10-25 04:45:28 +08:00
is_superuser = models . BooleanField ( _ ( ' superuser status ' ) , default = False , help_text = _ ( " Designates that this user has all permissions without explicitly assigning them. " ) )
2007-04-09 21:28:09 +08:00
last_login = models . DateTimeField ( _ ( ' last login ' ) , default = datetime . datetime . now )
date_joined = models . DateTimeField ( _ ( ' date joined ' ) , default = datetime . datetime . now )
2006-05-02 09:31:56 +08:00
groups = models . ManyToManyField ( Group , verbose_name = _ ( ' groups ' ) , blank = True ,
help_text = _ ( " In addition to the permissions manually assigned, this user will also get all permissions granted to each group he/she is in. " ) )
2008-07-19 07:54:34 +08:00
user_permissions = models . ManyToManyField ( Permission , verbose_name = _ ( ' user permissions ' ) , blank = True )
2006-05-02 09:31:56 +08:00
objects = UserManager ( )
2007-04-07 12:21:31 +08:00
2006-05-02 09:31:56 +08:00
class Meta :
verbose_name = _ ( ' user ' )
verbose_name_plural = _ ( ' users ' )
2008-08-11 23:13:00 +08:00
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
def __unicode__ ( self ) :
2006-05-02 09:31:56 +08:00
return self . username
def get_absolute_url ( self ) :
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
return " /users/ %s / " % urllib . quote ( smart_str ( self . username ) )
2006-05-02 09:31:56 +08:00
def is_anonymous ( self ) :
2009-12-10 09:05:35 +08:00
"""
Always returns False . This is a way of comparing User objects to
anonymous users .
"""
2006-05-02 09:31:56 +08:00
return False
2006-10-25 00:42:03 +08:00
2006-07-19 10:09:26 +08:00
def is_authenticated ( self ) :
2009-12-10 09:05:35 +08:00
"""
Always return True . This is a way to tell if the user has been
authenticated in templates .
2006-07-19 10:09:26 +08:00
"""
return True
2006-05-02 09:31:56 +08:00
def get_full_name ( self ) :
2011-06-27 00:51:12 +08:00
"""
Returns the first_name plus the last_name , with a space in between .
"""
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
full_name = u ' %s %s ' % ( self . first_name , self . last_name )
2006-05-02 09:31:56 +08:00
return full_name . strip ( )
def set_password ( self , raw_password ) :
2011-06-27 00:51:46 +08:00
self . password = make_password ( ' sha1 ' , raw_password )
2006-05-02 09:31:56 +08:00
def check_password ( self , raw_password ) :
"""
Returns a boolean of whether the raw_password was correct . Handles
encryption formats behind the scenes .
"""
# Backwards-compatibility check. Older passwords won't include the
# algorithm or salt.
if ' $ ' not in self . password :
2007-09-16 03:45:33 +08:00
is_correct = ( self . password == get_hexdigest ( ' md5 ' , ' ' , raw_password ) )
2006-05-02 09:31:56 +08:00
if is_correct :
# Convert the password to the new, more secure format.
self . set_password ( raw_password )
self . save ( )
return is_correct
2006-06-29 00:37:02 +08:00
return check_password ( raw_password , self . password )
2006-05-02 09:31:56 +08:00
2007-07-29 02:30:40 +08:00
def set_unusable_password ( self ) :
# Sets a value that will never be a valid hash
2011-06-27 00:51:46 +08:00
self . password = make_password ( ' sha1 ' , None )
2007-07-29 02:30:40 +08:00
def has_usable_password ( self ) :
2011-06-27 00:51:46 +08:00
return is_password_usable ( self . password )
2007-07-29 02:30:40 +08:00
2009-12-10 09:05:35 +08:00
def get_group_permissions ( self , obj = None ) :
2007-09-20 00:50:30 +08:00
"""
Returns a list of permission strings that this user has through
his / her groups . This method queries all available auth backends .
2009-12-10 09:05:35 +08:00
If an object is passed in , only permissions matching this object
are returned .
2007-09-20 00:50:30 +08:00
"""
permissions = set ( )
for backend in auth . get_backends ( ) :
if hasattr ( backend , " get_group_permissions " ) :
2009-12-31 06:12:57 +08:00
if obj is not None :
if backend . supports_object_permissions :
permissions . update (
backend . get_group_permissions ( self , obj )
)
2009-12-10 09:05:35 +08:00
else :
2009-12-31 06:12:57 +08:00
permissions . update ( backend . get_group_permissions ( self ) )
2007-09-20 00:50:30 +08:00
return permissions
2006-05-02 09:31:56 +08:00
2009-12-10 09:05:35 +08:00
def get_all_permissions ( self , obj = None ) :
2010-01-28 09:47:23 +08:00
return _user_get_all_permissions ( self , obj )
2006-05-02 09:31:56 +08:00
2009-12-10 09:05:35 +08:00
def has_perm ( self , perm , obj = None ) :
2007-09-20 00:50:30 +08:00
"""
Returns True if the user has the specified permission . This method
queries all available auth backends , but returns immediately if any
backend returns True . Thus , a user who has permission from a single
2009-12-10 09:05:35 +08:00
auth backend is assumed to have permission in general . If an object
is provided , permissions for this specific object are checked .
2007-09-20 00:50:30 +08:00
"""
2008-04-13 09:50:29 +08:00
2010-12-22 03:18:12 +08:00
# Active superusers have all permissions.
if self . is_active and self . is_superuser :
2006-05-02 09:31:56 +08:00
return True
2008-04-13 09:50:29 +08:00
2007-09-20 00:50:30 +08:00
# Otherwise we need to check the backends.
2010-01-28 09:47:23 +08:00
return _user_has_perm ( self , perm , obj )
2006-05-02 09:31:56 +08:00
2009-12-10 09:05:35 +08:00
def has_perms ( self , perm_list , obj = None ) :
"""
Returns True if the user has each of the specified permissions .
If object is passed , it checks if the user has all required perms
for this object .
"""
2006-05-02 09:31:56 +08:00
for perm in perm_list :
2009-12-10 09:05:35 +08:00
if not self . has_perm ( perm , obj ) :
2006-05-02 09:31:56 +08:00
return False
return True
def has_module_perms ( self , app_label ) :
2007-09-20 00:50:30 +08:00
"""
Returns True if the user has any permissions in the given app
label . Uses pretty much the same logic as has_perm , above .
"""
2010-12-22 03:18:12 +08:00
# Active superusers have all permissions.
if self . is_active and self . is_superuser :
2006-05-02 09:31:56 +08:00
return True
2007-09-20 00:50:30 +08:00
2010-01-28 09:47:23 +08:00
return _user_has_module_perms ( self , app_label )
2006-05-02 09:31:56 +08:00
def email_user ( self , subject , message , from_email = None ) :
2011-06-27 00:51:12 +08:00
"""
Sends an email to this User .
"""
2006-05-02 09:31:56 +08:00
send_mail ( subject , message , from_email , [ self . email ] )
def get_profile ( self ) :
"""
Returns site - specific profile for this user . Raises
SiteProfileNotAvailable if this site does not allow profiles .
"""
if not hasattr ( self , ' _profile_cache ' ) :
from django . conf import settings
2008-08-26 00:56:59 +08:00
if not getattr ( settings , ' AUTH_PROFILE_MODULE ' , False ) :
2010-02-23 13:52:37 +08:00
raise SiteProfileNotAvailable ( ' You need to set AUTH_PROFILE_MO '
' DULE in your project settings ' )
2006-05-02 09:31:56 +08:00
try :
app_label , model_name = settings . AUTH_PROFILE_MODULE . split ( ' . ' )
2010-02-23 13:52:37 +08:00
except ValueError :
raise SiteProfileNotAvailable ( ' app_label and model_name should '
' be separated by a dot in the AUTH_PROFILE_MODULE set '
' ting ' )
try :
2006-05-02 09:31:56 +08:00
model = models . get_model ( app_label , model_name )
2010-02-23 13:52:37 +08:00
if model is None :
raise SiteProfileNotAvailable ( ' Unable to load the profile '
' model, check AUTH_PROFILE_MODULE in your project sett '
' ings ' )
2009-12-22 23:18:51 +08:00
self . _profile_cache = model . _default_manager . using ( self . _state . db ) . get ( user__id__exact = self . id )
2008-10-05 20:07:10 +08:00
self . _profile_cache . user = self
2006-07-11 22:03:24 +08:00
except ( ImportError , ImproperlyConfigured ) :
2006-05-02 09:31:56 +08:00
raise SiteProfileNotAvailable
return self . _profile_cache
2009-12-10 00:57:23 +08:00
2006-05-02 09:31:56 +08:00
class AnonymousUser ( object ) :
id = None
username = ' '
2007-09-16 02:01:29 +08:00
is_staff = False
2007-12-11 14:37:07 +08:00
is_active = False
2007-09-16 02:01:29 +08:00
is_superuser = False
_groups = EmptyManager ( )
_user_permissions = EmptyManager ( )
2006-05-02 09:31:56 +08:00
def __init__ ( self ) :
pass
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
def __unicode__ ( self ) :
2007-07-03 20:24:46 +08:00
return ' AnonymousUser '
2006-05-02 09:31:56 +08:00
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
def __str__ ( self ) :
return unicode ( self ) . encode ( ' utf-8 ' )
2006-10-25 00:42:03 +08:00
def __eq__ ( self , other ) :
return isinstance ( other , self . __class__ )
def __ne__ ( self , other ) :
return not self . __eq__ ( other )
def __hash__ ( self ) :
return 1 # instances always return the same hash value
2006-05-02 09:31:56 +08:00
def save ( self ) :
raise NotImplementedError
def delete ( self ) :
raise NotImplementedError
def set_password ( self , raw_password ) :
raise NotImplementedError
def check_password ( self , raw_password ) :
raise NotImplementedError
def _get_groups ( self ) :
2007-09-16 02:01:29 +08:00
return self . _groups
2006-05-02 09:31:56 +08:00
groups = property ( _get_groups )
def _get_user_permissions ( self ) :
2007-09-16 02:01:29 +08:00
return self . _user_permissions
2006-05-02 09:31:56 +08:00
user_permissions = property ( _get_user_permissions )
2010-01-28 09:47:23 +08:00
def get_group_permissions ( self , obj = None ) :
return set ( )
def get_all_permissions ( self , obj = None ) :
return _user_get_all_permissions ( self , obj = obj )
2009-12-10 09:05:35 +08:00
def has_perm ( self , perm , obj = None ) :
2010-01-28 09:47:23 +08:00
return _user_has_perm ( self , perm , obj = obj )
2006-05-02 09:31:56 +08:00
2009-12-10 09:05:35 +08:00
def has_perms ( self , perm_list , obj = None ) :
2010-01-28 09:47:23 +08:00
for perm in perm_list :
if not self . has_perm ( perm , obj ) :
return False
return True
2008-07-22 11:05:40 +08:00
2006-05-02 09:31:56 +08:00
def has_module_perms ( self , module ) :
2010-01-28 09:47:23 +08:00
return _user_has_module_perms ( self , module )
2006-05-02 09:31:56 +08:00
def is_anonymous ( self ) :
return True
2006-10-25 00:42:03 +08:00
2006-07-19 10:09:26 +08:00
def is_authenticated ( self ) :
return False