1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
| from django.db import models
from django.db import models from django.utils import timezone from django.utils.http import urlquote from django.utils.translation import ugettext_lazy as _ from django.core.mail import send_mail from django.contrib.auth.models import AbstractBaseUser, PermissionsMixin from django.core import validators
from django.contrib.auth.models import BaseUserManager
class CustomUserManager(BaseUserManager):
def _create_user(self, email, password, is_staff, is_superuser, **extra_fields): """ Creates and saves a User with the given email and password. """ now = timezone.now() if not email: raise ValueError('The given email must be set') email = self.normalize_email(email) user = self.model(email=email, is_staff=is_staff, is_active=True, is_superuser=is_superuser, last_login=now, date_joined=now, **extra_fields) user.set_password(password) user.save(using=self._db) return user
def create_user(self, email, password=None, **extra_fields): return self._create_user(email, password, False, False, **extra_fields)
def create_superuser(self, email, password, **extra_fields): return self._create_user(email, password, True, True, **extra_fields)
class CustomUser(AbstractBaseUser, PermissionsMixin): """ A fully featured User model with admin-compliant permissions that uses a full-length email field as the username.
Email and password are required. Other fields are optional. """ email = models.EmailField(_('email address'), max_length=254, unique=True) first_name = models.CharField(_('first name'), max_length=30, blank=False) last_name = models.CharField(_('last name'), max_length=30, blank=False) phone_number = models.CharField(_('home phone number'), max_length=30, blank=False, help_text=_('Required. digits and +-() only.'), validators=[validators.RegexValidator(r'^[0-9+()-]+$', _('Enter a valid phone number.'), 'invalid')]) mobile_number = models.CharField(_('mobile number'), max_length=30, blank=False, help_text=_('Required. digits and +-() only.'), validators=[validators.RegexValidator(r'^[0-9+()-]+$', _('Enter a valid mobile number.'), 'invalid')]) zip_code = models.CharField(_('zip code'), max_length=5, blank=False, help_text=_('Required. digits only.'), validators=[validators.RegexValidator(r'^[0-9]+$', _('Enter a valid bank number.'), 'invalid')]) home_address = models.CharField(_('home address'), max_length=60, blank=False) bank_id_first = models.CharField(_('bank number'), max_length=3, blank=False, help_text=_('Required. digits only.'), validators=[validators.RegexValidator(r'^[0-9]+$', _('Enter a valid bank id number.'), 'invalid')]) bank_id_last = models.CharField(_('bank account'), max_length=3, blank=False, help_text=_('Required. digits only.'), validators=[validators.RegexValidator(r'^[0-9]+$', _('Enter a valid bank account id number.'), 'invalid')])
is_staff = models.BooleanField(_('staff status'), default=False, help_text=_('Designates whether the user can log into this admin ' 'site.')) is_active = models.BooleanField(_('active'), default=True, help_text=_('Designates whether this user should be treated as ' 'active. Unselect this instead of deleting accounts.')) date_joined = models.DateTimeField(_('date joined'), default=timezone.now) objects = CustomUserManager()
USERNAME_FIELD = 'email' REQUIRED_FIELDS = []
class Meta: verbose_name = _('user') verbose_name_plural = _('users')
def get_full_name(self): """ Returns the first_name plus the last_name, with a space in between. """ full_name = '%s %s' % (self.first_name, self.last_name) return full_name.strip()
def get_short_name(self): "Returns the short name for the user." return self.first_name
def email_user(self, subject, message, from_email=None): """ Sends an email to this User. """ send_mail(subject, message, from_email, [self.email])
|