2014-10-02 15:58:27 +00:00
|
|
|
import os
|
|
|
|
|
2014-09-30 09:49:07 +00:00
|
|
|
from django.contrib.auth.hashers import make_password
|
2014-11-14 22:19:58 +00:00
|
|
|
from django.core.exceptions import ValidationError
|
2014-09-30 09:49:07 +00:00
|
|
|
from django.core.mail import send_mail
|
|
|
|
from django.db import models
|
2014-10-01 16:42:40 +00:00
|
|
|
from django.utils.functional import cached_property
|
2014-09-30 09:49:07 +00:00
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
2014-11-20 15:34:59 +00:00
|
|
|
from orchestra.core import services, validators
|
2014-09-30 09:49:07 +00:00
|
|
|
|
|
|
|
from . import settings
|
|
|
|
|
|
|
|
|
|
|
|
class SystemUserQuerySet(models.QuerySet):
|
|
|
|
def create_user(self, username, password='', **kwargs):
|
|
|
|
user = super(SystemUserQuerySet, self).create(username=username, **kwargs)
|
|
|
|
user.set_password(password)
|
2014-09-30 16:06:42 +00:00
|
|
|
user.save(update_fields=['password'])
|
2014-10-01 21:03:16 +00:00
|
|
|
return user
|
2014-09-30 09:49:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
class SystemUser(models.Model):
|
2015-02-24 09:34:26 +00:00
|
|
|
"""
|
|
|
|
System users
|
|
|
|
|
2015-03-02 12:07:27 +00:00
|
|
|
Username max_length determined by LINUX system user lentgh: 32
|
2015-02-24 09:34:26 +00:00
|
|
|
"""
|
|
|
|
username = models.CharField(_("username"), max_length=32, unique=True,
|
2014-10-30 16:34:02 +00:00
|
|
|
help_text=_("Required. 64 characters or fewer. Letters, digits and ./-/_ only."),
|
2014-11-20 15:34:59 +00:00
|
|
|
validators=[validators.validate_username])
|
2014-09-30 09:49:07 +00:00
|
|
|
password = models.CharField(_("password"), max_length=128)
|
|
|
|
account = models.ForeignKey('accounts.Account', verbose_name=_("Account"),
|
|
|
|
related_name='systemusers')
|
2014-11-14 22:19:58 +00:00
|
|
|
home = models.CharField(_("home"), max_length=256, blank=True,
|
2014-11-14 14:38:06 +00:00
|
|
|
help_text=_("Starting location when login with this no-shell user."))
|
|
|
|
directory = models.CharField(_("directory"), max_length=256, blank=True,
|
|
|
|
help_text=_("Optional directory relative to user's home."))
|
|
|
|
shell = models.CharField(_("shell"), max_length=32, choices=settings.SYSTEMUSERS_SHELLS,
|
|
|
|
default=settings.SYSTEMUSERS_DEFAULT_SHELL)
|
2014-10-27 17:34:14 +00:00
|
|
|
groups = models.ManyToManyField('self', blank=True, symmetrical=False,
|
2014-09-30 09:49:07 +00:00
|
|
|
help_text=_("A new group will be created for the user. "
|
|
|
|
"Which additional groups would you like them to be a member of?"))
|
2014-10-23 15:38:46 +00:00
|
|
|
# is_main = models.BooleanField(_("is main"), default=False)
|
2014-09-30 09:49:07 +00:00
|
|
|
is_active = models.BooleanField(_("active"), default=True,
|
|
|
|
help_text=_("Designates whether this account should be treated as active. "
|
|
|
|
"Unselect this instead of deleting accounts."))
|
|
|
|
|
|
|
|
objects = SystemUserQuerySet.as_manager()
|
|
|
|
|
|
|
|
def __unicode__(self):
|
|
|
|
return self.username
|
|
|
|
|
2014-10-01 16:42:40 +00:00
|
|
|
@cached_property
|
|
|
|
def active(self):
|
2014-10-02 15:58:27 +00:00
|
|
|
try:
|
|
|
|
return self.is_active and self.account.is_active
|
|
|
|
except type(self).account.field.rel.to.DoesNotExist:
|
|
|
|
return self.is_active
|
|
|
|
|
2014-10-23 21:25:44 +00:00
|
|
|
@cached_property
|
2014-10-23 15:38:46 +00:00
|
|
|
def is_main(self):
|
2014-10-23 21:25:44 +00:00
|
|
|
# TODO on account delete
|
2014-10-23 15:38:46 +00:00
|
|
|
# On account creation main_systemuser_id is still None
|
|
|
|
if self.account.main_systemuser_id:
|
|
|
|
return self.account.main_systemuser_id == self.pk
|
|
|
|
return self.account.username == self.username
|
|
|
|
|
2014-11-14 14:38:06 +00:00
|
|
|
@property
|
|
|
|
def has_shell(self):
|
|
|
|
return self.shell not in settings.SYSTEMUSERS_DISABLED_SHELLS
|
|
|
|
|
2014-11-27 19:17:26 +00:00
|
|
|
def get_description(self):
|
|
|
|
return self.get_shell_display()
|
|
|
|
|
2014-11-14 22:19:58 +00:00
|
|
|
def save(self, *args, **kwargs):
|
|
|
|
if not self.home:
|
2014-11-14 14:38:06 +00:00
|
|
|
self.home = self.get_base_home()
|
2014-11-14 22:19:58 +00:00
|
|
|
super(SystemUser, self).save(*args, **kwargs)
|
|
|
|
|
|
|
|
def clean(self):
|
2014-11-27 19:17:26 +00:00
|
|
|
if self.home:
|
|
|
|
self.home = os.path.normpath(self.home)
|
2014-11-14 22:23:20 +00:00
|
|
|
if self.directory:
|
|
|
|
directory_error = None
|
|
|
|
if self.has_shell:
|
|
|
|
directory_error = _("Directory with shell users can not be specified.")
|
2014-11-14 23:06:14 +00:00
|
|
|
elif self.account_id and self.is_main:
|
2014-11-14 22:23:20 +00:00
|
|
|
directory_error = _("Directory with main system users can not be specified.")
|
|
|
|
elif self.home == self.get_base_home():
|
|
|
|
directory_error = _("Directory on the user's base home is not allowed.")
|
|
|
|
if directory_error:
|
|
|
|
raise ValidationError({
|
|
|
|
'directory': directory_error,
|
|
|
|
})
|
2014-11-14 14:38:06 +00:00
|
|
|
|
2014-11-14 23:50:06 +00:00
|
|
|
def validate_home(self, data, account):
|
|
|
|
""" validates home based on account and data['shell'] """
|
|
|
|
if not 'username' in data and not self.pk:
|
2015-02-25 13:24:11 +00:00
|
|
|
# other validation will have been raised for required username
|
2014-11-14 23:50:06 +00:00
|
|
|
return
|
|
|
|
user = type(self)(
|
|
|
|
username=data.get('username') or self.username,
|
|
|
|
shell=data.get('shell') or self.shell,
|
|
|
|
)
|
|
|
|
if 'home' in data and data['home']:
|
2015-03-02 10:37:25 +00:00
|
|
|
home = os.path.normpath(data['home'])
|
|
|
|
user_home = user.get_base_home()
|
|
|
|
account_home = account.main_systemuser.get_home()
|
2014-11-14 23:50:06 +00:00
|
|
|
if user.has_shell:
|
|
|
|
if home != user_home:
|
|
|
|
raise ValidationError({
|
|
|
|
'home': _("Not a valid home directory.")
|
|
|
|
})
|
|
|
|
elif home not in (user_home, account_home):
|
|
|
|
raise ValidationError({
|
|
|
|
'home': _("Not a valid home directory.")
|
|
|
|
})
|
|
|
|
|
2014-10-06 14:57:02 +00:00
|
|
|
def set_password(self, raw_password):
|
|
|
|
self.password = make_password(raw_password)
|
|
|
|
|
2014-11-14 14:38:06 +00:00
|
|
|
def get_base_home(self):
|
|
|
|
context = {
|
2015-03-10 21:51:10 +00:00
|
|
|
'user': self.username,
|
2014-11-14 14:38:06 +00:00
|
|
|
'username': self.username,
|
|
|
|
}
|
2014-11-18 17:47:26 +00:00
|
|
|
return os.path.normpath(settings.SYSTEMUSERS_HOME % context)
|
2014-11-14 14:38:06 +00:00
|
|
|
|
2014-10-02 15:58:27 +00:00
|
|
|
def get_home(self):
|
2015-03-02 10:37:25 +00:00
|
|
|
return os.path.normpath(os.path.join(self.home, self.directory))
|
2014-09-30 09:49:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
services.register(SystemUser)
|