models.py 14.5 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.html import escape
35
from django.utils.translation import ugettext_lazy as _
36
from django_sshkey.models import UserKey
Guba Sándor committed
37
from django.core.exceptions import ObjectDoesNotExist
38

39 40
from sizefield.models import FileSizeField

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

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

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

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

55 56
logger = getLogger(__name__)

Bach Dániel committed
57 58 59

def pwgen():
    return User.objects.make_random_password()
60

61

62
class Favourite(Model):
63
    instance = ForeignKey("vm.Instance")
64
    user = ForeignKey(User)
65 66


67 68 69 70 71 72 73
class Notification(TimeStampedModel):
    STATUS = Choices(('new', _('new')),
                     ('delivered', _('delivered')),
                     ('read', _('read')))

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

    class Meta:
        ordering = ['-created']

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

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

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

    @property
    def message(self):
102 103 104 105 106 107 108 109
        return HumanReadableObject.from_dict(
            self.escape_dict(self.message_data))

    def escape_dict(self, data):
        for k, v in data['params'].items():
            if isinstance(v, basestring):
                data['params'][k] = escape(v)
        return data
110 111 112 113 114

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

115

116 117 118 119
class ConnectCommand(Model):
    user = ForeignKey(User, related_name='command_set')
    access_method = CharField(max_length=10, choices=ACCESS_METHODS,
                              verbose_name=_('access method'),
120
                              help_text=_('Type of the remote access method.'))
121 122
    name = CharField(max_length="128", verbose_name=_('name'), blank=False,
                     help_text=_("Name of your custom command."))
123
    template = CharField(blank=True, null=True, max_length=256,
124 125 126 127
                         verbose_name=_('command template'),
                         help_text=_('Template for connection command string. '
                                     'Available parameters are: '
                                     'username, password, '
128 129
                                     'host, port.'),
                         validators=[connect_command_template_validator])
130 131 132

    def __unicode__(self):
        return self.template
133 134


135 136 137 138 139 140 141 142 143
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.'))
144
    instance_limit = IntegerField(default=5)
145
    use_gravatar = BooleanField(
146
        verbose_name=_("Use Gravatar"), default=True,
147
        help_text=_("Whether to use email address as Gravatar profile image"))
148 149
    email_notifications = BooleanField(
        verbose_name=_("Email notifications"), default=True,
150
        help_text=_('Whether user wants to get digested email notifications.'))
151 152 153 154 155
    smb_password = CharField(
        max_length=20,
        verbose_name=_('Samba password'),
        help_text=_(
            'Generated password for accessing store from '
Kálmán Viktor committed
156
            'virtual machines.'),
157 158
        default=pwgen,
    )
159
    disk_quota = FileSizeField(
160
        verbose_name=_('disk quota'),
161
        default=2048 * 1024 * 1024,
162
        help_text=_('Disk quota in mebibytes.'))
163

164
    def get_connect_commands(self, instance, use_ipv6=False):
165
        """ Generate connection command based on template."""
166 167 168
        single_command = instance.get_connect_command(use_ipv6)
        if single_command:  # can we even connect to that VM
            commands = self.user.command_set.filter(
169
                access_method=instance.access_method)
170 171 172 173 174 175 176 177 178 179
            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]
180
        else:
181
            return []
182

183 184 185 186 187
    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,
188
                                 valid_until)
189

190
    def get_absolute_url(self):
Kálmán Viktor committed
191 192
        return reverse("dashboard.views.profile",
                       kwargs={'username': self.user.username})
193

194 195 196 197 198 199 200 201
    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")

202 203 204 205 206 207 208 209 210 211 212 213 214
    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()

215 216 217 218 219
    def save(self, *args, **kwargs):
        if self.org_id == "":
            self.org_id = None
        super(Profile, self).save(*args, **kwargs)

220 221 222 223 224
    class Meta:
        permissions = (
            ('use_autocomplete', _('Can use autocomplete.')),
        )

Őry Máté committed
225

226 227 228 229 230 231 232 233 234 235 236
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
237

238 239 240 241 242 243 244 245 246 247
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.'))
248 249
    description = TextField(blank=True)

250 251 252
    def __unicode__(self):
        return self.group.name

253 254 255 256
    def save(self, *args, **kwargs):
        if not self.org_id:
            self.org_id = None
        super(GroupProfile, self).save(*args, **kwargs)
257 258 259 260 261 262 263 264

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

265 266 267 268 269
    @permalink
    def get_absolute_url(self):
        return ('dashboard.views.group-detail', None,
                {'pk': self.group.pk})

270 271

def get_or_create_profile(self):
272
    obj, created = GroupProfile.objects.get_or_create(group_id=self.pk)
273 274 275 276 277
    return obj

Group.profile = property(get_or_create_profile)


278
def create_profile(user):
279 280
    if not user.pk:
        return False
281
    profile, created = Profile.objects.get_or_create(user=user)
282

Őry Máté committed
283 284 285 286
    try:
        Store(user).create_user(profile.smb_password, None, profile.disk_quota)
    except:
        logger.exception("Can't create user %s", unicode(user))
287 288
    return created

289 290 291 292 293

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

user_logged_in.connect(create_profile_hook)
294

295
if hasattr(settings, 'SAML_ORG_ID_ATTRIBUTE'):
296
    logger.debug("Register save_org_id to djangosaml2 pre_user_save")
297 298
    from djangosaml2.signals import pre_user_save

299
    def save_org_id(sender, **kwargs):
300
        logger.debug("save_org_id called by %s", sender.username)
301
        attributes = kwargs.pop('attributes')
302
        atr = settings.SAML_ORG_ID_ATTRIBUTE
303 304 305 306 307 308
        try:
            value = attributes[atr][0]
        except Exception as e:
            value = None
            logger.info("save_org_id couldn't find attribute. %s", unicode(e))

309 310 311 312
        if sender.pk is None:
            sender.save()
            logger.debug("save_org_id saved user %s", unicode(sender))

313 314
        profile, created = Profile.objects.get_or_create(user=sender)
        if created or profile.org_id != value:
315 316
            logger.info("org_id of %s added to user %s's profile",
                        value, sender.username)
317 318
            profile.org_id = value
            profile.save()
319 320 321
        else:
            logger.debug("org_id of %s already added to user %s's profile",
                         value, sender.username)
322
        memberatrs = getattr(settings, 'SAML_GROUP_ATTRIBUTES', [])
323 324
        for group in chain(*[attributes[i]
                             for i in memberatrs if i in attributes]):
325 326 327 328 329 330 331 332 333
            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)

334 335 336 337
        for i in FutureMember.objects.filter(org_id=value):
            i.group.user_set.add(sender)
            i.delete()

338
        owneratrs = getattr(settings, 'SAML_GROUP_OWNER_ATTRIBUTES', [])
339 340
        for group in chain(*[attributes[i]
                             for i in owneratrs if i in attributes]):
341 342 343 344 345 346 347 348 349 350
            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
351

352 353
    pre_user_save.connect(save_org_id)

354 355
else:
    logger.debug("Do not register save_org_id to djangosaml2 pre_user_save")
356 357


358 359 360
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
361 362 363 364 365 366
    try:
        s = Store(profile.user)
        s.create_user(profile.smb_password, keys,
                      profile.disk_quota)
    except NoStoreException:
        logger.debug("Store is not available.")
367
    except (NotOkException, Timeout):
368
        logger.critical("Store is not accepting connections.")
Guba Sándor committed
369

370 371 372 373 374 375

post_save.connect(update_store_profile, sender=Profile)


def update_store_keys(sender, **kwargs):
    userkey = kwargs.get('instance')
Guba Sándor committed
376
    try:
Guba Sándor committed
377 378 379 380 381 382 383 384 385 386 387
        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.")
388 389
        except NotOkException:
            logger.critical("Store is not accepting connections.")
390 391 392 393 394 395


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


396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
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)