models.py 14.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
# Copyright 2014 Budapest University of Technology and Economics (BME IK)
#
# This file is part of CIRCLE Cloud.
#
# CIRCLE is free software: you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free
# Software Foundation, either version 3 of the License, or (at your option)
# any later version.
#
# CIRCLE is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along
# with CIRCLE.  If not, see <http://www.gnu.org/licenses/>.

18 19
from __future__ import absolute_import

20
from itertools import chain
21
from hashlib import md5
22 23
from logging import getLogger

24
from django.conf import settings
25
from django.contrib.auth.models import User, Group
26
from django.contrib.auth.signals import user_logged_in
27
from django.core.urlresolvers import reverse
28
from django.db.models import (
29
    Model, ForeignKey, OneToOneField, CharField, IntegerField, TextField,
30
    DateTimeField, permalink, BooleanField
31
)
32
from django.db.models.signals import post_save, pre_delete, post_delete
33
from django.templatetags.static import static
34
from django.utils.translation import ugettext_lazy as _
35
from django_sshkey.models import UserKey
Guba Sándor committed
36
from django.core.exceptions import ObjectDoesNotExist
37

38 39
from sizefield.models import FileSizeField

40
from jsonfield import JSONField
41 42 43
from model_utils.models import TimeStampedModel
from model_utils.fields import StatusField
from model_utils import Choices
44

45
from acl.models import AclBase
46
from common.models import HumanReadableObject, create_readable, Encoder
47

48
from vm.tasks.agent_tasks import add_keys, del_keys
49
from vm.models.instance import ACCESS_METHODS
50

51
from .store_api import Store, NoStoreException, NotOkException, Timeout
52
from .validators import connect_command_template_validator
53

54 55
logger = getLogger(__name__)

56 57
pwgen = User.objects.make_random_password

58

59
class Favourite(Model):
60
    instance = ForeignKey("vm.Instance")
61
    user = ForeignKey(User)
62 63


64 65 66 67 68 69 70
class Notification(TimeStampedModel):
    STATUS = Choices(('new', _('new')),
                     ('delivered', _('delivered')),
                     ('read', _('read')))

    status = StatusField()
    to = ForeignKey(User)
71 72
    subject_data = JSONField(null=True, dump_kwargs={"cls": Encoder})
    message_data = JSONField(null=True, dump_kwargs={"cls": Encoder})
73
    valid_until = DateTimeField(null=True, default=None)
74 75 76 77 78

    class Meta:
        ordering = ['-created']

    @classmethod
79 80 81
    def send(cls, user, subject, template, context,
             valid_until=None, subject_context=None):
        hro = create_readable(template, user=user, **context)
82
        subject = create_readable(subject, **(subject_context or context))
83 84 85
        return cls.objects.create(to=user,
                                  subject_data=subject.to_dict(),
                                  message_data=hro.to_dict(),
86
                                  valid_until=valid_until)
87

88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
    @property
    def subject(self):
        return HumanReadableObject.from_dict(self.subject_data)

    @subject.setter
    def subject(self, value):
        self.subject_data = None if value is None else value.to_dict()

    @property
    def message(self):
        return HumanReadableObject.from_dict(self.message_data)

    @message.setter
    def message(self, value):
        self.message_data = None if value is None else value.to_dict()

104

105 106 107 108
class ConnectCommand(Model):
    user = ForeignKey(User, related_name='command_set')
    access_method = CharField(max_length=10, choices=ACCESS_METHODS,
                              verbose_name=_('access method'),
109
                              help_text=_('Type of the remote access method.'))
110 111
    name = CharField(max_length="128", verbose_name=_('name'), blank=False,
                     help_text=_("Name of your custom command."))
112
    template = CharField(blank=True, null=True, max_length=256,
113 114 115 116
                         verbose_name=_('command template'),
                         help_text=_('Template for connection command string. '
                                     'Available parameters are: '
                                     'username, password, '
117 118
                                     'host, port.'),
                         validators=[connect_command_template_validator])
119 120 121

    def __unicode__(self):
        return self.template
122 123


124 125 126 127 128 129 130 131 132
class Profile(Model):
    user = OneToOneField(User)
    preferred_language = CharField(verbose_name=_('preferred language'),
                                   choices=settings.LANGUAGES,
                                   max_length=32,
                                   default=settings.LANGUAGE_CODE, blank=False)
    org_id = CharField(  # may be populated from eduPersonOrgId field
        unique=True, blank=True, null=True, max_length=64,
        help_text=_('Unique identifier of the person, e.g. a student number.'))
133
    instance_limit = IntegerField(default=5)
134
    use_gravatar = BooleanField(
135
        verbose_name=_("Use Gravatar"), default=True,
136
        help_text=_("Whether to use email address as Gravatar profile image"))
137 138
    email_notifications = BooleanField(
        verbose_name=_("Email notifications"), default=True,
139
        help_text=_('Whether user wants to get digested email notifications.'))
140 141 142 143 144
    smb_password = CharField(
        max_length=20,
        verbose_name=_('Samba password'),
        help_text=_(
            'Generated password for accessing store from '
Kálmán Viktor committed
145
            'virtual machines.'),
146 147
        default=pwgen,
    )
148
    disk_quota = FileSizeField(
149
        verbose_name=_('disk quota'),
150
        default=2048 * 1024 * 1024,
151
        help_text=_('Disk quota in mebibytes.'))
152

153
    def get_connect_commands(self, instance, use_ipv6=False):
154
        """ Generate connection command based on template."""
155 156 157
        single_command = instance.get_connect_command(use_ipv6)
        if single_command:  # can we even connect to that VM
            commands = self.user.command_set.filter(
158
                access_method=instance.access_method)
159 160 161 162 163 164 165 166 167 168
            if commands.count() < 1:
                return [single_command]
            else:
                return [
                    command.template % {
                        'port': instance.get_connect_port(use_ipv6=use_ipv6),
                        'host':  instance.get_connect_host(use_ipv6=use_ipv6),
                        'password': instance.pw,
                        'username': 'cloud',
                    } for command in commands]
169
        else:
170
            return []
171

172 173 174 175 176
    def notify(self, subject, template, context=None, valid_until=None,
               **kwargs):
        if context is not None:
            kwargs.update(context)
        return Notification.send(self.user, subject, template, kwargs,
177
                                 valid_until)
178

179
    def get_absolute_url(self):
Kálmán Viktor committed
180 181
        return reverse("dashboard.views.profile",
                       kwargs={'username': self.user.username})
182

183 184 185 186 187 188 189 190
    def get_avatar_url(self):
        if self.use_gravatar:
            gravatar_hash = md5(self.user.email).hexdigest()
            return ("https://secure.gravatar.com/avatar/%s"
                    "?s=200" % gravatar_hash)
        else:
            return static("dashboard/img/avatar.png")

191 192 193 194 195 196 197 198 199 200 201 202 203
    def get_display_name(self):
        if self.user.get_full_name():
            name = self.user.get_full_name()
        else:
            name = self.user.username

        if self.org_id:
            name = "%s (%s)" % (name, self.org_id)
        return name

    def __unicode__(self):
        return self.get_display_name()

204 205 206 207 208
    def save(self, *args, **kwargs):
        if self.org_id == "":
            self.org_id = None
        super(Profile, self).save(*args, **kwargs)

209 210 211 212 213
    class Meta:
        permissions = (
            ('use_autocomplete', _('Can use autocomplete.')),
        )

Őry Máté committed
214

215 216 217 218 219 220 221 222 223 224 225
class FutureMember(Model):
    org_id = CharField(max_length=64, help_text=_(
        'Unique identifier of the person, e.g. a student number.'))
    group = ForeignKey(Group)

    class Meta:
        unique_together = ('org_id', 'group')

    def __unicode__(self):
        return u"%s (%s)" % (self.org_id, self.group)

Őry Máté committed
226

227 228 229 230 231 232 233 234 235 236
class GroupProfile(AclBase):
    ACL_LEVELS = (
        ('operator', _('operator')),
        ('owner', _('owner')),
    )

    group = OneToOneField(Group)
    org_id = CharField(
        unique=True, blank=True, null=True, max_length=64,
        help_text=_('Unique identifier of the group at the organization.'))
237 238
    description = TextField(blank=True)

239 240 241
    def __unicode__(self):
        return self.group.name

242 243 244 245
    def save(self, *args, **kwargs):
        if not self.org_id:
            self.org_id = None
        super(GroupProfile, self).save(*args, **kwargs)
246 247 248 249 250 251 252 253

    @classmethod
    def search(cls, name):
        try:
            return cls.objects.get(org_id=name).group
        except cls.DoesNotExist:
            return Group.objects.get(name=name)

254 255 256 257 258
    @permalink
    def get_absolute_url(self):
        return ('dashboard.views.group-detail', None,
                {'pk': self.group.pk})

259 260

def get_or_create_profile(self):
261
    obj, created = GroupProfile.objects.get_or_create(group_id=self.pk)
262 263 264 265 266
    return obj

Group.profile = property(get_or_create_profile)


267
def create_profile(user):
268 269
    if not user.pk:
        return False
270
    profile, created = Profile.objects.get_or_create(user=user)
271

Őry Máté committed
272 273 274 275
    try:
        Store(user).create_user(profile.smb_password, None, profile.disk_quota)
    except:
        logger.exception("Can't create user %s", unicode(user))
276 277
    return created

278 279 280 281 282

def create_profile_hook(sender, user, request, **kwargs):
    return create_profile(user)

user_logged_in.connect(create_profile_hook)
283

284
if hasattr(settings, 'SAML_ORG_ID_ATTRIBUTE'):
285
    logger.debug("Register save_org_id to djangosaml2 pre_user_save")
286 287
    from djangosaml2.signals import pre_user_save

288
    def save_org_id(sender, **kwargs):
289
        logger.debug("save_org_id called by %s", sender.username)
290
        attributes = kwargs.pop('attributes')
291
        atr = settings.SAML_ORG_ID_ATTRIBUTE
292 293 294 295 296 297
        try:
            value = attributes[atr][0]
        except Exception as e:
            value = None
            logger.info("save_org_id couldn't find attribute. %s", unicode(e))

298 299 300 301
        if sender.pk is None:
            sender.save()
            logger.debug("save_org_id saved user %s", unicode(sender))

302 303
        profile, created = Profile.objects.get_or_create(user=sender)
        if created or profile.org_id != value:
304 305
            logger.info("org_id of %s added to user %s's profile",
                        value, sender.username)
306 307
            profile.org_id = value
            profile.save()
308 309 310
        else:
            logger.debug("org_id of %s already added to user %s's profile",
                         value, sender.username)
311
        memberatrs = getattr(settings, 'SAML_GROUP_ATTRIBUTES', [])
312 313
        for group in chain(*[attributes[i]
                             for i in memberatrs if i in attributes]):
314 315 316 317 318 319 320 321 322
            try:
                g = GroupProfile.search(group)
            except Group.DoesNotExist:
                logger.debug('cant find membergroup %s', group)
            else:
                logger.debug('could find membergroup %s (%s)',
                             group, unicode(g))
                g.user_set.add(sender)

323 324 325 326
        for i in FutureMember.objects.filter(org_id=value):
            i.group.user_set.add(sender)
            i.delete()

327
        owneratrs = getattr(settings, 'SAML_GROUP_OWNER_ATTRIBUTES', [])
328 329
        for group in chain(*[attributes[i]
                             for i in owneratrs if i in attributes]):
330 331 332 333 334 335 336 337 338 339
            try:
                g = GroupProfile.search(group)
            except Group.DoesNotExist:
                logger.debug('cant find ownergroup %s', group)
            else:
                logger.debug('could find ownergroup %s (%s)',
                             group, unicode(g))
                g.profile.set_level(sender, 'owner')

        return False  # User did not change
340

341 342
    pre_user_save.connect(save_org_id)

343 344
else:
    logger.debug("Do not register save_org_id to djangosaml2 pre_user_save")
345 346


347 348 349
def update_store_profile(sender, **kwargs):
    profile = kwargs.get('instance')
    keys = [i.key for i in profile.user.userkey_set.all()]
Guba Sándor committed
350 351 352 353 354 355
    try:
        s = Store(profile.user)
        s.create_user(profile.smb_password, keys,
                      profile.disk_quota)
    except NoStoreException:
        logger.debug("Store is not available.")
356
    except (NotOkException, Timeout):
357
        logger.critical("Store is not accepting connections.")
Guba Sándor committed
358

359 360 361 362 363 364

post_save.connect(update_store_profile, sender=Profile)


def update_store_keys(sender, **kwargs):
    userkey = kwargs.get('instance')
Guba Sándor committed
365
    try:
Guba Sándor committed
366 367 368 369 370 371 372 373 374 375 376
        profile = userkey.user.profile
    except ObjectDoesNotExist:
        pass  # If there is no profile the user is deleted
    else:
        keys = [i.key for i in profile.user.userkey_set.all()]
        try:
            s = Store(userkey.user)
            s.create_user(profile.smb_password, keys,
                          profile.disk_quota)
        except NoStoreException:
            logger.debug("Store is not available.")
377 378
        except NotOkException:
            logger.critical("Store is not accepting connections.")
379 380 381 382 383 384


post_save.connect(update_store_keys, sender=UserKey)
post_delete.connect(update_store_keys, sender=UserKey)


385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412
def add_ssh_keys(sender, **kwargs):
    from vm.models import Instance

    userkey = kwargs.get('instance')
    instances = Instance.get_objects_with_level(
        'user', userkey.user).filter(status='RUNNING')
    for i in instances:
        logger.info('called add_keys(%s, %s)', i, userkey)
        queue = i.get_remote_queue_name("agent")
        add_keys.apply_async(args=(i.vm_name, [userkey.key]),
                             queue=queue)


def del_ssh_keys(sender, **kwargs):
    from vm.models import Instance

    userkey = kwargs.get('instance')
    instances = Instance.get_objects_with_level(
        'user', userkey.user).filter(status='RUNNING')
    for i in instances:
        logger.info('called del_keys(%s, %s)', i, userkey)
        queue = i.get_remote_queue_name("agent")
        del_keys.apply_async(args=(i.vm_name, [userkey.key]),
                             queue=queue)


post_save.connect(add_ssh_keys, sender=UserKey)
pre_delete.connect(del_ssh_keys, sender=UserKey)