addons-server/apps/users/models.py

151 строка
5.2 KiB
Python
Исходник Обычный вид История

2010-01-05 00:41:32 +03:00
from datetime import datetime
2010-01-13 04:22:26 +03:00
import hashlib
import random
2010-02-12 21:46:44 +03:00
import re
2010-01-13 04:22:26 +03:00
import string
import time
2010-01-05 00:41:32 +03:00
2010-02-12 21:46:44 +03:00
from django.conf import settings
from django.contrib.auth.models import User as DjangoUser
from django.db import models
2009-10-23 02:37:15 +04:00
import amo
import amo.models
2010-02-24 02:26:11 +03:00
from amo.urlresolvers import reverse
from translations.fields import PurifiedField
2009-10-23 02:37:15 +04:00
2010-01-13 04:22:26 +03:00
def get_hexdigest(algorithm, salt, raw_password):
return hashlib.new(algorithm, salt + raw_password).hexdigest()
def rand_string(length):
return ''.join(random.choice(string.letters) for i in xrange(length))
def create_password(algorithm, raw_password):
salt = get_hexdigest(algorithm, rand_string(12), rand_string(12))[:64]
hsh = get_hexdigest(algorithm, salt, raw_password)
return '$'.join([algorithm, salt, hsh])
class UserProfile(amo.models.ModelBase):
2009-10-23 02:37:15 +04:00
nickname = models.CharField(max_length=255, unique=True, default='')
2010-01-05 00:41:32 +03:00
firstname = models.CharField(max_length=255, default='')
lastname = models.CharField(max_length=255, default='')
password = models.CharField(max_length=255, default='')
email = models.EmailField(unique=True)
2010-01-05 00:41:32 +03:00
averagerating = models.CharField(max_length=255, blank=True)
bio = PurifiedField()
confirmationcode = models.CharField(max_length=255, default='',
blank=True)
deleted = models.BooleanField(default=True)
2010-01-05 00:41:32 +03:00
display_collections = models.BooleanField(default=False)
display_collections_fav = models.BooleanField(default=False)
emailhidden = models.BooleanField(default=False)
homepage = models.CharField(max_length=765, blank=True, default='')
location = models.CharField(max_length=765, blank=True, default='')
notes = models.TextField(blank=True)
2010-01-05 00:41:32 +03:00
notifycompat = models.BooleanField(default=True)
notifyevents = models.BooleanField(default=True)
occupation = models.CharField(max_length=765, default='', blank=True)
picture_type = models.CharField(max_length=75, default='', blank=True)
resetcode = models.CharField(max_length=255, default='', blank=True)
resetcode_expires = models.DateTimeField(default=datetime.now,
blank=True)
sandboxshown = models.BooleanField(default=False)
2010-01-05 00:41:32 +03:00
user = models.ForeignKey(DjangoUser, null=True, editable=False, blank=True)
2009-10-23 02:37:15 +04:00
class Meta:
db_table = 'users'
2010-01-05 00:41:32 +03:00
def __unicode__(self):
return '%s: %s' % (self.id, self.display_name)
def get_url_path(self):
return reverse('users.profile', args=[self.id])
2009-10-23 02:37:15 +04:00
2010-02-12 21:46:44 +03:00
@amo.cached_property
def addons_listed(self):
"""public add-ons this user is listed as author of"""
return self.addons.valid().filter(addonuser__listed=True)
@property
def picture_url(self):
split_id = re.match(r'((\d*?)(\d{0,3}?))\d{1,3}$', str(self.id))
if not self.picture_type:
return settings.MEDIA_URL + '/img/zamboni/anon_user.png'
else:
return settings.USER_PIC_URL % (
split_id.group(2) or 0, split_id.group(1) or 0, self.id,
int(time.mktime(self.modified.timetuple())))
2010-02-12 21:46:44 +03:00
@amo.cached_property
def is_developer(self):
return bool(self.addons.filter(authors=self,
addonuser__listed=True)[:1])
2010-02-12 21:46:44 +03:00
2009-10-23 02:37:15 +04:00
@property
def display_name(self):
if not self.nickname:
return '%s %s' % (self.firstname, self.lastname)
else:
return self.nickname
@property
def welcome_name(self):
if self.firstname:
return self.firstname
elif self.nickname:
return self.nickname
elif self.lastname:
return self.lastname
return ''
def save(self, force_insert=False, force_update=False, using=None):
# we have to fix stupid things that we defined poorly in remora
if self.resetcode_expires is None:
self.resetcode_expires = datetime.now()
super(UserProfile, self).save(force_insert, force_update, using)
2010-01-13 04:22:26 +03:00
def check_password(self, raw_password):
if '$' not in self.password:
valid = (get_hexdigest('md5', '', raw_password) == self.password)
if valid:
# Upgrade an old password.
self.set_password(raw_password)
self.save()
return valid
algo, salt, hsh = self.password.split('$')
return hsh == get_hexdigest(algo, salt, raw_password)
def set_password(self, raw_password, algorithm='sha512'):
self.password = create_password(algorithm, raw_password)
def create_django_user(self):
"""Make a django.contrib.auth.User for this UserProfile."""
# Reusing the id will make our life easier, because we can use the
# OneToOneField as pk for Profile linked back to the auth.user
# in the future.
self.user = DjangoUser(id=self.pk)
self.user.first_name = self.firstname
self.user.last_name = self.lastname
self.user.username = self.email
self.user.email = self.email
self.user.password = self.password
self.user.date_joined = self.created
if self.group_set.filter(rules='*:*').count():
self.user.is_superuser = self.user.is_staff = True
self.user.save()
self.save()
return self.user