Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / auth_providers.py @ bd0f516a

History | View | Annotate | Download (9.8 kB)

1
# Copyright 2011 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

    
35
from django.core.urlresolvers import reverse
36
from django.utils.translation import ugettext as _
37
from django.utils.datastructures import SortedDict
38

    
39
from django.conf import settings
40

    
41
from astakos.im import settings as astakos_settings
42
from astakos.im import messages as astakos_messages
43

    
44
import logging
45
import urllib
46

    
47
logger = logging.getLogger(__name__)
48

    
49
# providers registry
50
PROVIDERS = {}
51
REQUIRED_PROVIDERS = {}
52

    
53
class AuthProviderBase(type):
54

    
55
    def __new__(cls, name, bases, dct):
56
        include = False
57
        if [b for b in bases if isinstance(b, AuthProviderBase)]:
58
            type_id = dct.get('module')
59
            if type_id:
60
                include = True
61
            if type_id in astakos_settings.IM_MODULES:
62
                dct['module_enabled'] = True
63

    
64
        newcls = super(AuthProviderBase, cls).__new__(cls, name, bases, dct)
65
        if include:
66
            PROVIDERS[type_id] = newcls
67
            if newcls().is_required():
68
                REQUIRED_PROVIDERS[type_id] = newcls
69
        return newcls
70

    
71

    
72
class AuthProvider(object):
73

    
74
    __metaclass__ = AuthProviderBase
75

    
76
    module = None
77
    module_active = False
78
    module_enabled = False
79
    one_per_user = False
80
    login_prompt = _('Login using ')
81
    primary_login_prompt = _('Login using ')
82
    login_message = None
83
    logout_message = 'You may still be logged in %(provider)s though. Consider logging out from there too.'
84
    remote_authenticate = True
85
    remote_logout_url = None
86
    logout_from_provider_text = None
87
    icon_url = None
88

    
89
    def get_message(self, msg, **kwargs):
90
        params = kwargs
91
        params.update({'provider': self.get_title_display})
92

    
93
        override_msg = getattr(self, 'get_%s_message_display' % msg.lower(), None)
94
        msg = 'AUTH_PROVIDER_%s' % msg
95
        return override_msg or getattr(astakos_messages, msg, msg) % params
96

    
97
    @property
98
    def add_url(self):
99
        return reverse(self.login_view)
100

    
101
    def __init__(self, user=None):
102
        self.user = user
103
        for tpl in ['login_prompt', 'login', 'signup_prompt']:
104
            tpl_name = '%s_%s' % (tpl, 'template')
105
            override = self.get_setting(tpl_name)
106
            if override:
107
                setattr(self, tpl_name, override)
108

    
109
        for key in ['one_per_user']:
110
            override = self.get_setting(key)
111
            if override != None:
112
                setattr(self, key, override)
113

    
114
        self.login_message = self.login_message or self.get_title_display
115
        if self.logout_message and "%" in self.logout_message:
116
            logout_text_display = self.logout_from_provider_text or 'at %s' % self.get_title_display
117
            self.logout_message = self.logout_message % {'provider':
118
                                                         logout_text_display}
119
        else:
120
            self.logout_message = self.logout_message or ''
121

    
122
        if not self.icon_url:
123
            self.icon_url = '%s%s' % (settings.MEDIA_URL, 'im/auth/icons/%s.png' %
124
                                       self.get_title_display.lower())
125

    
126
    def __getattr__(self, key):
127
        if not key.startswith('get_'):
128
            return super(AuthProvider, self).__getattribute__(key)
129

    
130
        if key.endswith('_display') or key.endswith('template'):
131
            attr = key.replace('_display', '').replace('get_','')
132
            settings_attr = self.get_setting(attr.upper())
133
            if not settings_attr:
134
                return getattr(self, attr)
135
            return _(settings_attr)
136
        else:
137
            return super(AuthProvider, self).__getattr__(key)
138

    
139
    def get_logout_message(self):
140
        content = ''
141
        if self.remote_logout_url:
142
            content = '<a href="%s" title="Logout from %%s"></a>' % self.remote_logou_url
143
        return content % (self.get_logout_message_display % self.get_title_display)
144

    
145
    def get_setting(self, name, default=None):
146
        attr = 'ASTAKOS_AUTH_PROVIDER_%s_%s' % (self.module.upper(), name.upper())
147
        attr_sec = 'ASTAKOS_%s_%s' % (self.module.upper(), name.upper())
148
        if not hasattr(settings, attr):
149
            return getattr(settings, attr_sec, default)
150

    
151
        return getattr(settings, attr, default)
152

    
153
    def is_available_for_login(self):
154
        """ A user can login using authentication provider"""
155
        return self.is_active() and self.get_setting('CAN_LOGIN',
156
                                                     self.is_active())
157

    
158
    def is_available_for_create(self):
159
        """ A user can create an account using this provider"""
160
        return self.is_active() and self.get_setting('CAN_CREATE',
161
                                                   self.is_active())
162

    
163
    def is_available_for_add(self):
164
        """ A user can assign provider authentication method"""
165
        return self.is_active() and self.get_setting('CAN_ADD',
166
                                                   self.is_active())
167

    
168
    def is_required(self):
169
        """Provider required (user cannot remove the last one)"""
170
        return self.is_active() and self.get_setting('REQUIRED', False)
171

    
172
    def is_active(self):
173
        return self.module in astakos_settings.IM_MODULES
174

    
175

    
176
class LocalAuthProvider(AuthProvider):
177
    module = 'local'
178
    title = _('Local password')
179
    description = _('Create a local password for your account')
180
    add_prompt =  _('Create a local password for your account')
181
    login_prompt = _('if you already have a username and password')
182
    signup_prompt = _('New to ~okeanos ?')
183
    signup_link_prompt = _('create an account now')
184
    login_view = 'password_change'
185
    remote_authenticate = False
186
    logout_message = ''
187

    
188
    one_per_user = True
189

    
190
    login_template = 'im/auth/local_login_form.html'
191
    login_prompt_template = 'im/auth/local_login_prompt.html'
192
    signup_prompt_template = 'im/auth/local_signup_prompt.html'
193
    details_tpl = _('You can login to your account using your'
194
                    ' %(auth_backend)s password.')
195

    
196
    @property
197
    def extra_actions(self):
198
        return [(_('Change password'), reverse('password_change')), ]
199

    
200

    
201
class ShibbolethAuthProvider(AuthProvider):
202
    module = 'shibboleth'
203
    title = _('Academic account (Shibboleth)')
204
    add_prompt = _('Allows you to login to your account using your academic '
205
                    'account')
206
    details_tpl = _('Shibboleth account \'%(identifier)s\' is connected to your '
207
                    ' account.')
208
    user_title = _('Academic credentials (%(identifier)s)')
209
    primary_login_prompt = _('If you are a student/researcher/faculty you can'
210
                             ' login using your university-credentials in'
211
                             ' the following page')
212
    login_view = 'astakos.im.target.shibboleth.login'
213

    
214
    login_template = 'im/auth/shibboleth_login.html'
215
    login_prompt_template = 'im/auth/third_party_provider_generic_login_prompt.html'
216
    logout_from_provider_text = ' at your Academic account (shibboleth)'
217

    
218

    
219
class TwitterAuthProvider(AuthProvider):
220
    module = 'twitter'
221
    title = _('Twitter')
222
    add_prompt = _('Allows you to login to your account using Twitter')
223
    details_tpl = _('Twitter screen name: %(info_screen_name)s')
224
    user_title = _('Twitter (%(info_screen_name)s)')
225
    login_view = 'astakos.im.target.twitter.login'
226

    
227
    login_template = 'im/auth/third_party_provider_generic_login.html'
228
    login_prompt_template = 'im/auth/third_party_provider_generic_login_prompt.html'
229

    
230

    
231
class GoogleAuthProvider(AuthProvider):
232
    module = 'google'
233
    title = _('Google')
234
    add_prompt = _('Allows you to login to your account using Google')
235
    details_tpl = _('Google account: %(info_email)s')
236
    user_title = _('Google (%(info_email)s)')
237
    login_view = 'astakos.im.target.google.login'
238

    
239
    login_template = 'im/auth/third_party_provider_generic_login.html'
240
    login_prompt_template = 'im/auth/third_party_provider_generic_login_prompt.html'
241

    
242

    
243
class LinkedInAuthProvider(AuthProvider):
244
    module = 'linkedin'
245
    title = _('LinkedIn')
246
    add_prompt = _('Allows you to login to your account using LinkedIn')
247
    user_title = _('LinkedIn (%(info_emailAddress)s)')
248
    details_tpl = _('LinkedIn account: %(info_emailAddress)s')
249
    login_view = 'astakos.im.target.linkedin.login'
250

    
251
    login_template = 'im/auth/third_party_provider_generic_login.html'
252
    login_prompt_template = 'im/auth/third_party_provider_generic_login_prompt.html'
253

    
254

    
255
def get_provider(id, user_obj=None, default=None):
256
    """
257
    Return a provider instance from the auth providers registry.
258
    """
259
    return PROVIDERS.get(id, default)(user_obj)
260