-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
Copy pathmodels.py
209 lines (158 loc) · 6.95 KB
/
models.py
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
"""This file and its contents are licensed under the Apache License 2.0. Please see the included NOTICE for copyright information and LICENSE for a copy of the license.
"""
import datetime
from typing import Optional
from core.utils.common import load_func
from core.utils.db import fast_first
from django.conf import settings
from django.contrib.auth.base_user import AbstractBaseUser, BaseUserManager
from django.contrib.auth.models import PermissionsMixin
from django.db import models
from django.db.models.signals import post_save
from django.dispatch import receiver
from django.utils import timezone
from django.utils.translation import gettext_lazy as _
from organizations.models import Organization
from rest_framework.authtoken.models import Token
from users.functions import hash_upload
YEAR_START = 1980
YEAR_CHOICES = []
for r in range(YEAR_START, (datetime.datetime.now().year + 1)):
YEAR_CHOICES.append((r, r))
year = models.IntegerField(_('year'), choices=YEAR_CHOICES, default=datetime.datetime.now().year)
class UserManager(BaseUserManager):
use_in_migrations = True
def _create_user(self, email, password, **extra_fields):
"""
Create and save a user with the given email and password.
"""
if not email:
raise ValueError('Must specify an email address')
email = self.normalize_email(email)
user = self.model(email=email, **extra_fields)
user.set_password(password)
user.save(using=self._db)
return user
def create_user(self, email, password=None, **extra_fields):
extra_fields.setdefault('is_staff', False)
extra_fields.setdefault('is_superuser', False)
return self._create_user(email, password, **extra_fields)
def create_superuser(self, email, password, **extra_fields):
extra_fields.setdefault('is_staff', True)
extra_fields.setdefault('is_superuser', True)
if extra_fields.get('is_staff') is not True:
raise ValueError('Superuser must have is_staff=True.')
if extra_fields.get('is_superuser') is not True:
raise ValueError('Superuser must have is_superuser=True.')
return self._create_user(email, password, **extra_fields)
class UserLastActivityMixin(models.Model):
last_activity = models.DateTimeField(_('last activity'), default=timezone.now, editable=False)
def update_last_activity(self):
self.last_activity = timezone.now()
self.save(update_fields=['last_activity'])
class Meta:
abstract = True
UserMixin = load_func(settings.USER_MIXIN)
class User(UserMixin, AbstractBaseUser, PermissionsMixin, UserLastActivityMixin):
"""
An abstract base class implementing a fully featured User model with
admin-compliant permissions.
Username and password are required. Other fields are optional.
"""
username = models.CharField(_('username'), max_length=256)
email = models.EmailField(_('email address'), unique=True, blank=True)
first_name = models.CharField(_('first name'), max_length=256, blank=True)
last_name = models.CharField(_('last name'), max_length=256, blank=True)
phone = models.CharField(_('phone'), max_length=256, blank=True)
avatar = models.ImageField(upload_to=hash_upload, blank=True)
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 to treat this user as active. Unselect this instead of deleting accounts.'),
)
date_joined = models.DateTimeField(_('date joined'), default=timezone.now)
activity_at = models.DateTimeField(_('last annotation activity'), auto_now=True)
active_organization = models.ForeignKey(
'organizations.Organization', null=True, on_delete=models.SET_NULL, related_name='active_users'
)
allow_newsletters = models.BooleanField(
_('allow newsletters'), null=True, default=None, help_text=_('Allow sending newsletters to user')
)
objects = UserManager()
EMAIL_FIELD = 'email'
USERNAME_FIELD = 'email'
REQUIRED_FIELDS = ()
class Meta:
db_table = 'htx_user'
verbose_name = _('user')
verbose_name_plural = _('users')
indexes = [
models.Index(fields=['username']),
models.Index(fields=['email']),
models.Index(fields=['first_name']),
models.Index(fields=['last_name']),
models.Index(fields=['date_joined']),
]
@property
def avatar_url(self):
if self.avatar:
if settings.CLOUD_FILE_STORAGE_ENABLED:
return self.avatar.url
else:
return settings.HOSTNAME + self.avatar.url
def is_organization_admin(self, org_pk):
return True
def active_organization_annotations(self):
return self.annotations.filter(project__organization=self.active_organization)
def active_organization_contributed_project_number(self):
annotations = self.active_organization_annotations()
return annotations.values_list('project').distinct().count()
@property
def own_organization(self) -> Optional[Organization]:
return fast_first(Organization.objects.filter(created_by=self))
@property
def has_organization(self):
return Organization.objects.filter(created_by=self).exists()
def clean(self):
super().clean()
self.email = self.__class__.objects.normalize_email(self.email)
def name_or_email(self):
name = self.get_full_name()
if len(name) == 0:
name = self.email
return name
def get_full_name(self):
"""
Return the first_name and the last_name for a given user with a space in between.
"""
full_name = '%s %s' % (self.first_name, self.last_name)
return full_name.strip()
def get_short_name(self):
"""Return the short name for the user."""
return self.first_name
def get_token(self) -> Token:
return Token.objects.filter(user=self).first()
def reset_token(self) -> Token:
Token.objects.filter(user=self).delete()
return Token.objects.create(user=self)
def get_initials(self, is_deleted=False):
initials = '?'
if is_deleted:
return 'DU'
if not self.first_name and not self.last_name:
initials = self.email[0:2]
elif self.first_name and not self.last_name:
initials = self.first_name[0:1]
elif self.last_name and not self.first_name:
initials = self.last_name[0:1]
elif self.first_name and self.last_name:
initials = self.first_name[0:1] + self.last_name[0:1]
return initials
@receiver(post_save, sender=User)
def init_user(sender, instance=None, created=False, **kwargs):
if created:
# create token for user
Token.objects.create(user=instance)