blob: a3b82d864b0181540d7d9b2cab5fe3eaa4d88baa [file] [log] [blame]
Siobhan Tully53437282013-04-26 19:30:27 -04001import os
2import datetime
Tony Mackc14de8f2013-05-09 21:44:17 -04003from collections import defaultdict
Siobhan Tully53437282013-04-26 19:30:27 -04004from django.db import models
Siobhan Tullybfd11dc2013-09-03 12:59:24 -04005from core.models import PlCoreBase,Site
Siobhan Tully30fd4292013-05-10 08:59:56 -04006from django.contrib.auth.models import AbstractBaseUser, BaseUserManager
Scott Baker9266e6b2013-05-19 15:54:48 -07007from timezones.fields import TimeZoneField
Siobhan Tully53437282013-04-26 19:30:27 -04008
9# Create your models here.
Siobhan Tully30fd4292013-05-10 08:59:56 -040010class UserManager(BaseUserManager):
Siobhan Tully53437282013-04-26 19:30:27 -040011 def create_user(self, email, firstname, lastname, password=None):
12 """
13 Creates and saves a User with the given email, date of
14 birth and password.
15 """
16 if not email:
17 raise ValueError('Users must have an email address')
18
19 user = self.model(
Siobhan Tully30fd4292013-05-10 08:59:56 -040020 email=UserManager.normalize_email(email),
Siobhan Tully53437282013-04-26 19:30:27 -040021 firstname=firstname,
Siobhan Tully30fd4292013-05-10 08:59:56 -040022 lastname=lastname,
23 password=password
Siobhan Tully53437282013-04-26 19:30:27 -040024 )
Siobhan Tully30fd4292013-05-10 08:59:56 -040025 #user.set_password(password)
Siobhan Tully53437282013-04-26 19:30:27 -040026 user.is_admin = True
27 user.save(using=self._db)
28 return user
29
30 def create_superuser(self, email, firstname, lastname, password):
31 """
32 Creates and saves a superuser with the given email, date of
33 birth and password.
34 """
35 user = self.create_user(email,
36 password=password,
37 firstname=firstname,
38 lastname=lastname
39 )
40 user.is_admin = True
41 user.save(using=self._db)
42 return user
43
44
Siobhan Tully30fd4292013-05-10 08:59:56 -040045class User(AbstractBaseUser):
Siobhan Tully53437282013-04-26 19:30:27 -040046
47 class Meta:
48 app_label = "core"
49
50 email = models.EmailField(
51 verbose_name='email address',
52 max_length=255,
53 unique=True,
54 db_index=True,
55 )
Siobhan Tullyfece0d52013-09-06 12:57:05 -040056
57 username = models.CharField(max_length=255, default="Something" )
58
Siobhan Tully53437282013-04-26 19:30:27 -040059
Siobhan Tully73291342013-05-10 10:50:08 -040060 kuser_id = models.CharField(null=True, blank=True, help_text="keystone user id", max_length=200)
Siobhan Tully53437282013-04-26 19:30:27 -040061 firstname = models.CharField(help_text="person's given name", max_length=200)
62 lastname = models.CharField(help_text="person's surname", max_length=200)
63
64 phone = models.CharField(null=True, blank=True, help_text="phone number contact", max_length=100)
65 user_url = models.URLField(null=True, blank=True)
Siobhan Tullybfd11dc2013-09-03 12:59:24 -040066 site = models.ForeignKey(Site, related_name='users', help_text="Site this user will be homed too", null=True)
Tony Mack5cbadf82013-06-10 13:56:07 -040067 public_key = models.TextField(null=True, blank=True, max_length=1024, help_text="Public key string")
Siobhan Tully53437282013-04-26 19:30:27 -040068
69 is_active = models.BooleanField(default=True)
70 is_admin = models.BooleanField(default=True)
71 is_staff = models.BooleanField(default=True)
Siobhan Tullycf04fb62014-01-11 11:25:57 -050072 is_readonly = models.BooleanField(default=False)
Siobhan Tully53437282013-04-26 19:30:27 -040073
Tony Mack0553f282013-06-10 22:54:50 -040074 created = models.DateTimeField(auto_now_add=True)
75 updated = models.DateTimeField(auto_now=True)
76 enacted = models.DateTimeField(null=True, default=None)
77
Scott Baker9266e6b2013-05-19 15:54:48 -070078 timezone = TimeZoneField()
79
Siobhan Tully30fd4292013-05-10 08:59:56 -040080 objects = UserManager()
Siobhan Tully53437282013-04-26 19:30:27 -040081
82 USERNAME_FIELD = 'email'
83 REQUIRED_FIELDS = ['firstname', 'lastname']
84
Siobhan Tullycf04fb62014-01-11 11:25:57 -050085 def isReadOnlyUser(self):
86 return self.is_readonly
87
Siobhan Tully53437282013-04-26 19:30:27 -040088 def get_full_name(self):
89 # The user is identified by their email address
90 return self.email
91
92 def get_short_name(self):
93 # The user is identified by their email address
94 return self.email
95
Tony Mackb0d97422013-06-10 09:57:45 -040096 @property
97 def keyname(self):
98 return self.email[:self.email.find('@')]
99
Siobhan Tully53437282013-04-26 19:30:27 -0400100 def __unicode__(self):
101 return self.email
102
103 def has_perm(self, perm, obj=None):
104 "Does the user have a specific permission?"
105 # Simplest possible answer: Yes, always
106 return True
107
108 def has_module_perms(self, app_label):
109 "Does the user have permissions to view the app `app_label`?"
110 # Simplest possible answer: Yes, always
111 return True
112
Siobhan Tullybfd11dc2013-09-03 12:59:24 -0400113 def is_superuser(self):
114 return False
Siobhan Tully53437282013-04-26 19:30:27 -0400115
Siobhan Tullybfd11dc2013-09-03 12:59:24 -0400116# def get_roles(self):
117# from core.models.site import SitePrivilege
118# from core.models.slice import SliceMembership
119#
120# site_privileges = SitePrivilege.objects.filter(user=self)
121# slice_memberships = SliceMembership.objects.filter(user=self)
122# roles = defaultdict(list)
123# for site_privilege in site_privileges:
124# roles[site_privilege.role.role_type].append(site_privilege.site.login_base)
125# for slice_membership in slice_memberships:
126# roles[slice_membership.role.role_type].append(slice_membership.slice.name)
127# return roles
Siobhan Tully53437282013-04-26 19:30:27 -0400128
Tony Mack53106f32013-04-27 16:43:01 -0400129 def save(self, *args, **kwds):
Siobhan Tully30fd4292013-05-10 08:59:56 -0400130 if not self.id:
131 self.set_password(self.password)
Siobhan Tullyfece0d52013-09-06 12:57:05 -0400132 self.username = self.email
Siobhan Tully30fd4292013-05-10 08:59:56 -0400133 super(User, self).save(*args, **kwds)