Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / models.py @ 6c736ed7

History | View | Annotate | Download (7.3 kB)

1
# Copyright 2011-2012 GRNET S.A. All rights reserved.
2
#
3
# Redistribution and use in source and binary forms, with or
4
# without modification, are permitted provided that the following
5
# conditions are met:
6
#
7
#   1. Redistributions of source code must retain the above
8
#      copyright notice, this list of conditions and the following
9
#      disclaimer.
10
#
11
#   2. Redistributions in binary form must reproduce the above
12
#      copyright notice, this list of conditions and the following
13
#      disclaimer in the documentation and/or other materials
14
#      provided with the distribution.
15
#
16
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27
# POSSIBILITY OF SUCH DAMAGE.
28
#
29
# The views and conclusions contained in the software and
30
# documentation are those of the authors and should not be
31
# interpreted as representing official policies, either expressed
32
# or implied, of GRNET S.A.
33

    
34
import hashlib
35
import uuid
36

    
37
from time import asctime
38
from datetime import datetime, timedelta
39
from base64 import b64encode
40
from urlparse import urlparse
41

    
42
from django.db import models
43
from django.contrib.auth.models import User, UserManager
44

    
45
from astakos.im.settings import DEFAULT_USER_LEVEL, INVITATIONS_PER_LEVEL, AUTH_TOKEN_DURATION, BILLING_FIELDS, QUEUE_CONNECTION
46

    
47
QUEUE_CLIENT_ID = 3 # Astakos.
48

    
49
class AstakosUser(User):
50
    """
51
    Extends ``django.contrib.auth.models.User`` by defining additional fields.
52
    """
53
    # Use UserManager to get the create_user method, etc.
54
    objects = UserManager()
55

    
56
    affiliation = models.CharField('Affiliation', max_length=255, blank=True)
57
    provider = models.CharField('Provider', max_length=255, blank=True)
58

    
59
    #for invitations
60
    user_level = DEFAULT_USER_LEVEL
61
    level = models.IntegerField('Inviter level', default=user_level)
62
    invitations = models.IntegerField('Invitations left', default=INVITATIONS_PER_LEVEL.get(user_level, 0))
63

    
64
    auth_token = models.CharField('Authentication Token', max_length=32,
65
                                  null=True, blank=True)
66
    auth_token_created = models.DateTimeField('Token creation date', null=True)
67
    auth_token_expires = models.DateTimeField('Token expiration date', null=True)
68

    
69
    updated = models.DateTimeField('Update date')
70
    is_verified = models.BooleanField('Is verified?', default=False)
71

    
72
    # ex. screen_name for twitter, eppn for shibboleth
73
    third_party_identifier = models.CharField('Third-party identifier', max_length=255, null=True, blank=True)
74

    
75
    email_verified = models.BooleanField('Email verified?', default=False)
76

    
77
    has_credits = models.BooleanField('Has credits?', default=False)
78
    has_signed_terms = models.BooleanField('Agree with the terms?', default=False)
79
    date_signed_terms = models.DateTimeField('Signed terms date', null=True)
80

    
81
    @property
82
    def realname(self):
83
        return '%s %s' %(self.first_name, self.last_name)
84

    
85
    @realname.setter
86
    def realname(self, value):
87
        parts = value.split(' ')
88
        if len(parts) == 2:
89
            self.first_name = parts[0]
90
            self.last_name = parts[1]
91
        else:
92
            self.last_name = parts[0]
93

    
94
    @property
95
    def invitation(self):
96
        try:
97
            return Invitation.objects.get(username=self.email)
98
        except Invitation.DoesNotExist:
99
            return None
100

    
101
    def save(self, update_timestamps=True, **kwargs):
102
        if update_timestamps:
103
            if not self.id:
104
                self.date_joined = datetime.now()
105
            self.updated = datetime.now()
106
        if not self.id:
107
            # set username
108
            while not self.username:
109
                username =  uuid.uuid4().hex[:30]
110
                try:
111
                    AstakosUser.objects.get(username = username)
112
                except AstakosUser.DoesNotExist, e:
113
                    self.username = username
114
            self.is_active = False
115
            if not self.provider:
116
                self.provider = 'local'
117
        report_user_event(self)
118
        super(AstakosUser, self).save(**kwargs)
119

    
120
    def renew_token(self):
121
        md5 = hashlib.md5()
122
        md5.update(self.username)
123
        md5.update(self.realname.encode('ascii', 'ignore'))
124
        md5.update(asctime())
125

    
126
        self.auth_token = b64encode(md5.digest())
127
        self.auth_token_created = datetime.now()
128
        self.auth_token_expires = self.auth_token_created + \
129
                                  timedelta(hours=AUTH_TOKEN_DURATION)
130

    
131
    def __unicode__(self):
132
        return self.username
133

    
134
class ApprovalTerms(models.Model):
135
    """
136
    Model for approval terms
137
    """
138

    
139
    date = models.DateTimeField('Issue date', db_index=True, default=datetime.now())
140
    location = models.CharField('Terms location', max_length=255)
141

    
142
class Invitation(models.Model):
143
    """
144
    Model for registring invitations
145
    """
146
    inviter = models.ForeignKey(AstakosUser, related_name='invitations_sent',
147
                                null=True)
148
    realname = models.CharField('Real name', max_length=255)
149
    username = models.CharField('Unique ID', max_length=255, unique=True)
150
    code = models.BigIntegerField('Invitation code', db_index=True)
151
    #obsolete: we keep it just for transfering the data
152
    is_accepted = models.BooleanField('Accepted?', default=False)
153
    is_consumed = models.BooleanField('Consumed?', default=False)
154
    created = models.DateTimeField('Creation date', auto_now_add=True)
155
    #obsolete: we keep it just for transfering the data
156
    accepted = models.DateTimeField('Acceptance date', null=True, blank=True)
157
    consumed = models.DateTimeField('Consumption date', null=True, blank=True)
158

    
159
    def consume(self):
160
        self.is_consumed = True
161
        self.consumed = datetime.now()
162
        self.save()
163

    
164
    def __unicode__(self):
165
        return '%s -> %s [%d]' % (self.inviter, self.username, self.code)
166

    
167
def report_user_event(user):
168
    def should_send(user):
169
        # report event incase of new user instance
170
        # or if specific fields are modified
171
        if not user.id:
172
            return True
173
        db_instance = AstakosUser.objects.get(id = user.id)
174
        for f in BILLING_FIELDS:
175
            if (db_instance.__getattribute__(f) != user.__getattribute__(f)):
176
                return True
177
        return False
178

    
179
    if QUEUE_CONNECTION and should_send(user):
180

    
181
        from astakos.im.queue.userevent import UserEvent
182
        from synnefo.lib.queue import exchange_connect, exchange_send, \
183
                exchange_close
184

    
185
        eventType = 'create' if not user.id else 'modify'
186
        body = UserEvent(QUEUE_CLIENT_ID, user, eventType, {}).format()
187
        conn = exchange_connect(QUEUE_CONNECTION)
188
        parts = urlparse(QUEUE_CONNECTION)
189
        exchange = parts.path[1:]
190
        routing_key = '%s.user' % exchange
191
        exchange_send(conn, routing_key, body)
192
        exchange_close(conn)
193