author | Lennard de Rijk <ljvderijk@gmail.com> |
Fri, 23 Jan 2009 11:36:55 +0000 | |
changeset 916 | f18c0a56da8b |
parent 914 | 6ec8dd2a73b3 |
child 927 | f790f77ba6b7 |
permissions | -rw-r--r-- |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
1 |
#!/usr/bin/python2.5 |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
2 |
# |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
3 |
# Copyright 2008 the Melange authors. |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
4 |
# |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
5 |
# Licensed under the Apache License, Version 2.0 (the "License"); |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
6 |
# you may not use this file except in compliance with the License. |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
7 |
# You may obtain a copy of the License at |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
8 |
# |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
9 |
# http://www.apache.org/licenses/LICENSE-2.0 |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
10 |
# |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
11 |
# Unless required by applicable law or agreed to in writing, software |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
12 |
# distributed under the License is distributed on an "AS IS" BASIS, |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
13 |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
14 |
# See the License for the specific language governing permissions and |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
15 |
# limitations under the License. |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
16 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
17 |
"""Access control helper. |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
18 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
19 |
The functions in this module can be used to check access control |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
20 |
related requirements. When the specified required conditions are not |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
21 |
met, an exception is raised. This exception contains a views that |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
22 |
either prompts for authentication, or informs the user that they |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
23 |
do not meet the required criteria. |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
24 |
""" |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
25 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
26 |
__authors__ = [ |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
27 |
'"Todd Larsen" <tlarsen@google.com>', |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
28 |
'"Sverre Rabbelier" <sverre@rabbelier.nl>', |
726 | 29 |
'"Lennard de Rijk" <ljvderijk@gmail.com>', |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
30 |
'"Pawel Solyga" <pawel.solyga@gmail.com>', |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
31 |
] |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
32 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
33 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
34 |
from google.appengine.api import users |
315
c4f1a07ee340
Add missing blank lines between imports in access.py module.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
309
diff
changeset
|
35 |
|
746
018efb9863dc
Fix import sorting in soc.views.helper.access module and rename 'host' to 'Program Administrator'.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
729
diff
changeset
|
36 |
from django.core import urlresolvers |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
37 |
from django.utils.translation import ugettext_lazy |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
38 |
|
481
94834a1e6c01
Attempt to rename User.id to User.account, in preparation for making User be
Todd Larsen <tlarsen@google.com>
parents:
448
diff
changeset
|
39 |
from soc.logic import accounts |
720
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
40 |
from soc.logic import dicts |
914
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
41 |
from soc.logic.models.club_admin import logic as club_admin_logic |
887
b8c1a6bc913e
Take advantage of new "from ... import ... as ..." rules in the style guide.
Todd Larsen <tlarsen@google.com>
parents:
884
diff
changeset
|
42 |
from soc.logic.models.host import logic as host_logic |
b8c1a6bc913e
Take advantage of new "from ... import ... as ..." rules in the style guide.
Todd Larsen <tlarsen@google.com>
parents:
884
diff
changeset
|
43 |
from soc.logic.models.notification import logic as notification_logic |
b8c1a6bc913e
Take advantage of new "from ... import ... as ..." rules in the style guide.
Todd Larsen <tlarsen@google.com>
parents:
884
diff
changeset
|
44 |
from soc.logic.models.request import logic as request_logic |
891
3d40190f35b6
Move getToSLink() to soc.views.helper.redirects.getToSRedirect().
Todd Larsen <tlarsen@google.com>
parents:
890
diff
changeset
|
45 |
from soc.logic.models.site import logic as site_logic |
887
b8c1a6bc913e
Take advantage of new "from ... import ... as ..." rules in the style guide.
Todd Larsen <tlarsen@google.com>
parents:
884
diff
changeset
|
46 |
from soc.logic.models.user import logic as user_logic |
508
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
47 |
from soc.views import helper |
543
280a1ac6bcc1
Merge soc/logic/out_of_band.py into soc/views/out_of_band.py. Merge
Todd Larsen <tlarsen@google.com>
parents:
525
diff
changeset
|
48 |
from soc.views import out_of_band |
891
3d40190f35b6
Move getToSLink() to soc.views.helper.redirects.getToSRedirect().
Todd Larsen <tlarsen@google.com>
parents:
890
diff
changeset
|
49 |
from soc.views.helper import redirects |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
50 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
51 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
52 |
DEF_NO_USER_LOGIN_MSG_FMT = ugettext_lazy( |
446
0b479d573a4c
Refactoring of {site/home}_settings to make them use base.View
Sverre Rabbelier <srabbelier@gmail.com>
parents:
389
diff
changeset
|
53 |
'Please create <a href="/user/edit">User Profile</a>' |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
54 |
' in order to view this page.') |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
55 |
|
888
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
56 |
DEF_AGREE_TO_TOS_MSG_FMT = ugettext_lazy( |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
57 |
'You must agree to the <a href="%(tos_link)s">site-wide Terms of' |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
58 |
' Service</a> in your <a href="/user/edit">User Profile</a>' |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
59 |
' in order to view this page.') |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
60 |
|
320
a0a86306e7f6
Some indentations fixes and ugettext_lazy() wrap up for DEF_DEV_LOGOUT_LOGIN_MSG_FMT in access.py.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
315
diff
changeset
|
61 |
DEF_DEV_LOGOUT_LOGIN_MSG_FMT = ugettext_lazy( |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
62 |
'Please <a href="%%(sign_out)s">sign out</a>' |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
63 |
' and <a href="%%(sign_in)s">sign in</a>' |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
64 |
' again as %(role)s to view this page.') |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
65 |
|
508
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
66 |
DEF_PAGE_DENIED_MSG = ugettext_lazy( |
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
67 |
'Access to this page has been restricted') |
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
68 |
|
590
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
69 |
DEF_LOGOUT_MSG_FMT = ugettext_lazy( |
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
70 |
'Please <a href="%(sign_out)s">sign out</a> in order to view this page') |
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
71 |
|
508
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
72 |
|
872
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
73 |
def checkAccess(access_type, request, rights, args=None, kwargs=None): |
639
1f92bd41b914
Some docstring fixes in few modules (soc.views.helper soc.views.models.base).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
633
diff
changeset
|
74 |
"""Runs all the defined checks for the specified type. |
612
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
75 |
|
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
76 |
Args: |
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
77 |
access_type: the type of request (such as 'list' or 'edit') |
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
78 |
request: the Django request object |
639
1f92bd41b914
Some docstring fixes in few modules (soc.views.helper soc.views.models.base).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
633
diff
changeset
|
79 |
rights: a dictionary containing access check functions |
612
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
80 |
|
639
1f92bd41b914
Some docstring fixes in few modules (soc.views.helper soc.views.models.base).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
633
diff
changeset
|
81 |
Rights usage: |
1f92bd41b914
Some docstring fixes in few modules (soc.views.helper soc.views.models.base).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
633
diff
changeset
|
82 |
The rights dictionary is used to check if the current user is allowed |
1f92bd41b914
Some docstring fixes in few modules (soc.views.helper soc.views.models.base).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
633
diff
changeset
|
83 |
to view the page specified. The functions defined in this dictionary |
1f92bd41b914
Some docstring fixes in few modules (soc.views.helper soc.views.models.base).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
633
diff
changeset
|
84 |
are always called with the django request object as argument. On any |
1f92bd41b914
Some docstring fixes in few modules (soc.views.helper soc.views.models.base).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
633
diff
changeset
|
85 |
request, regardless of what type, the functions in the 'any_access' value |
1f92bd41b914
Some docstring fixes in few modules (soc.views.helper soc.views.models.base).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
633
diff
changeset
|
86 |
are called. If the specified type is not in the rights dictionary, all |
1f92bd41b914
Some docstring fixes in few modules (soc.views.helper soc.views.models.base).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
633
diff
changeset
|
87 |
the functions in the 'unspecified' value are called. When the specified |
1f92bd41b914
Some docstring fixes in few modules (soc.views.helper soc.views.models.base).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
633
diff
changeset
|
88 |
type _is_ in the rights dictionary, all the functions in that access_type's |
1f92bd41b914
Some docstring fixes in few modules (soc.views.helper soc.views.models.base).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
633
diff
changeset
|
89 |
value are called. |
612
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
90 |
|
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
91 |
Returns: |
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
92 |
True: If all the required access checks have been made successfully |
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
93 |
False: If a check failed, in this case self._response will contain |
639
1f92bd41b914
Some docstring fixes in few modules (soc.views.helper soc.views.models.base).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
633
diff
changeset
|
94 |
the response provided by the failed access check. |
612
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
95 |
""" |
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
96 |
|
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
97 |
# Call each access checker |
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
98 |
for check in rights['any_access']: |
872
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
99 |
check(request, args, kwargs) |
612
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
100 |
|
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
101 |
if access_type not in rights: |
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
102 |
for check in rights['unspecified']: |
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
103 |
# No checks defined, so do the 'generic' checks and bail out |
872
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
104 |
check(request, args, kwargs) |
612
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
105 |
return |
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
106 |
|
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
107 |
for check in rights[access_type]: |
872
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
108 |
check(request, args, kwargs) |
612
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
109 |
|
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
110 |
|
872
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
111 |
def allow(request, args, kwargs): |
888
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
112 |
"""Never raises an alternate HTTP response. (an access no-op, basically) |
508
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
113 |
|
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
114 |
Args: |
543
280a1ac6bcc1
Merge soc/logic/out_of_band.py into soc/views/out_of_band.py. Merge
Todd Larsen <tlarsen@google.com>
parents:
525
diff
changeset
|
115 |
request: a Django HTTP request |
508
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
116 |
""" |
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
117 |
return |
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
118 |
|
872
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
119 |
|
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
120 |
def deny(request, args, kwargs): |
888
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
121 |
"""Always raises an alternate HTTP response. |
508
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
122 |
|
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
123 |
Args: |
543
280a1ac6bcc1
Merge soc/logic/out_of_band.py into soc/views/out_of_band.py. Merge
Todd Larsen <tlarsen@google.com>
parents:
525
diff
changeset
|
124 |
request: a Django HTTP request |
508
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
125 |
|
888
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
126 |
Raises: |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
127 |
always raises AccessViolationResponse if called |
508
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
128 |
""" |
709
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
129 |
context = {} |
543
280a1ac6bcc1
Merge soc/logic/out_of_band.py into soc/views/out_of_band.py. Merge
Todd Larsen <tlarsen@google.com>
parents:
525
diff
changeset
|
130 |
context['title'] = 'Access denied' |
508
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
131 |
|
543
280a1ac6bcc1
Merge soc/logic/out_of_band.py into soc/views/out_of_band.py. Merge
Todd Larsen <tlarsen@google.com>
parents:
525
diff
changeset
|
132 |
raise out_of_band.AccessViolation(DEF_PAGE_DENIED_MSG, context=context) |
508
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
133 |
|
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
134 |
|
872
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
135 |
def checkIsLoggedIn(request, args, kwargs): |
888
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
136 |
"""Raises an alternate HTTP response if Google Account is not logged in. |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
137 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
138 |
Args: |
543
280a1ac6bcc1
Merge soc/logic/out_of_band.py into soc/views/out_of_band.py. Merge
Todd Larsen <tlarsen@google.com>
parents:
525
diff
changeset
|
139 |
request: a Django HTTP request |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
140 |
|
888
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
141 |
Raises: |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
142 |
AccessViolationResponse: |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
143 |
* if no Google Account is even logged in |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
144 |
""" |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
145 |
if users.get_current_user(): |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
146 |
return |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
147 |
|
543
280a1ac6bcc1
Merge soc/logic/out_of_band.py into soc/views/out_of_band.py. Merge
Todd Larsen <tlarsen@google.com>
parents:
525
diff
changeset
|
148 |
raise out_of_band.LoginRequest() |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
149 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
150 |
|
872
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
151 |
def checkNotLoggedIn(request, args, kwargs): |
888
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
152 |
"""Raises an alternate HTTP response if Google Account is logged in. |
590
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
153 |
|
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
154 |
Args: |
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
155 |
request: a Django HTTP request |
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
156 |
|
888
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
157 |
Raises: |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
158 |
AccessViolationResponse: |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
159 |
* if a Google Account is currently logged in |
590
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
160 |
""" |
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
161 |
if not users.get_current_user(): |
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
162 |
return |
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
163 |
|
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
164 |
raise out_of_band.LoginRequest(message_fmt=DEF_LOGOUT_MSG_FMT) |
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
165 |
|
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
166 |
|
872
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
167 |
def checkIsUser(request, args, kwargs): |
888
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
168 |
"""Raises an alternate HTTP response if Google Account has no User entity. |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
169 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
170 |
Args: |
543
280a1ac6bcc1
Merge soc/logic/out_of_band.py into soc/views/out_of_band.py. Merge
Todd Larsen <tlarsen@google.com>
parents:
525
diff
changeset
|
171 |
request: a Django HTTP request |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
172 |
|
888
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
173 |
Raises: |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
174 |
AccessViolationResponse: |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
175 |
* if no User exists for the logged-in Google Account, or |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
176 |
* if no Google Account is logged in at all |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
177 |
""" |
872
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
178 |
checkIsLoggedIn(request, args, kwargs) |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
179 |
|
887
b8c1a6bc913e
Take advantage of new "from ... import ... as ..." rules in the style guide.
Todd Larsen <tlarsen@google.com>
parents:
884
diff
changeset
|
180 |
user = user_logic.getForFields({'account': users.get_current_user()}, |
b8c1a6bc913e
Take advantage of new "from ... import ... as ..." rules in the style guide.
Todd Larsen <tlarsen@google.com>
parents:
884
diff
changeset
|
181 |
unique=True) |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
182 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
183 |
if user: |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
184 |
return |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
185 |
|
543
280a1ac6bcc1
Merge soc/logic/out_of_band.py into soc/views/out_of_band.py. Merge
Todd Larsen <tlarsen@google.com>
parents:
525
diff
changeset
|
186 |
raise out_of_band.LoginRequest(message_fmt=DEF_NO_USER_LOGIN_MSG_FMT) |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
187 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
188 |
|
889
5f3136a5eb4c
Make checkAgreesToSiteToS() the default access check for many other checks.
Todd Larsen <tlarsen@google.com>
parents:
888
diff
changeset
|
189 |
def checkAgreesToSiteToS(request, args, kwargs): |
888
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
190 |
"""Raises an alternate HTTP response if User has not agreed to site-wide ToS. |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
191 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
192 |
Args: |
639
1f92bd41b914
Some docstring fixes in few modules (soc.views.helper soc.views.models.base).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
633
diff
changeset
|
193 |
request: a Django HTTP request |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
194 |
|
888
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
195 |
Raises: |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
196 |
AccessViolationResponse: |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
197 |
* if User has not agreed to the site-wide ToS, or |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
198 |
* if no User exists for the logged-in Google Account, or |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
199 |
* if no Google Account is logged in at all |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
200 |
""" |
889
5f3136a5eb4c
Make checkAgreesToSiteToS() the default access check for many other checks.
Todd Larsen <tlarsen@google.com>
parents:
888
diff
changeset
|
201 |
checkIsUser(request, args, kwargs) |
888
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
202 |
|
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
203 |
user = user_logic.getForFields({'account': users.get_current_user()}, |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
204 |
unique=True) |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
205 |
|
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
206 |
if user_logic.agreesToSiteToS(user): |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
207 |
return |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
208 |
|
888
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
209 |
# Would not reach this point of site-wide ToS did not exist, since |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
210 |
# agreesToSiteToS() call above always returns True if no ToS is in effect. |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
211 |
login_msg_fmt = DEF_AGREE_TO_TOS_MSG_FMT % { |
891
3d40190f35b6
Move getToSLink() to soc.views.helper.redirects.getToSRedirect().
Todd Larsen <tlarsen@google.com>
parents:
890
diff
changeset
|
212 |
'tos_link': redirects.getToSRedirect(site_logic.getSingleton())} |
888
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
213 |
|
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
214 |
raise out_of_band.LoginRequest(message_fmt=login_msg_fmt) |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
215 |
|
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
216 |
|
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
217 |
def checkIsDeveloper(request, args, kwargs): |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
218 |
"""Raises an alternate HTTP response if Google Account is not a Developer. |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
219 |
|
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
220 |
Args: |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
221 |
request: a Django HTTP request |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
222 |
|
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
223 |
Raises: |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
224 |
AccessViolationResponse: |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
225 |
* if User is not a Developer, or |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
226 |
* if no User exists for the logged-in Google Account, or |
a75ae24f04cb
Add checkAgreesToSiteToS() (partially implemented until circular import fixed).
Todd Larsen <tlarsen@google.com>
parents:
887
diff
changeset
|
227 |
* if no Google Account is logged in at all |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
228 |
""" |
895
e70ffd079438
Even developers need to agree to the terms of service for Melange
Sverre Rabbelier <srabbelier@gmail.com>
parents:
892
diff
changeset
|
229 |
|
e70ffd079438
Even developers need to agree to the terms of service for Melange
Sverre Rabbelier <srabbelier@gmail.com>
parents:
892
diff
changeset
|
230 |
checkAgreesToSiteToS(request, args, kwargs) |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
231 |
|
481
94834a1e6c01
Attempt to rename User.id to User.account, in preparation for making User be
Todd Larsen <tlarsen@google.com>
parents:
448
diff
changeset
|
232 |
if accounts.isDeveloper(account=users.get_current_user()): |
699
4e8eefe95748
Add and use a placeholder for checkIsDocumentPublic
Sverre Rabbelier <srabbelier@gmail.com>
parents:
639
diff
changeset
|
233 |
return |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
234 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
235 |
login_message_fmt = DEF_DEV_LOGOUT_LOGIN_MSG_FMT % { |
746
018efb9863dc
Fix import sorting in soc.views.helper.access module and rename 'host' to 'Program Administrator'.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
729
diff
changeset
|
236 |
'role': 'a Site Developer '} |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
237 |
|
543
280a1ac6bcc1
Merge soc/logic/out_of_band.py into soc/views/out_of_band.py. Merge
Todd Larsen <tlarsen@google.com>
parents:
525
diff
changeset
|
238 |
raise out_of_band.LoginRequest(message_fmt=login_message_fmt) |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
239 |
|
914
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
240 |
def checkCanCreateFromRequest(role_name): |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
241 |
"""Raises an alternate HTTP response if the specified invite does not exist |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
242 |
or if it has not been group_accepted. |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
243 |
""" |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
244 |
def wrapper(request, args, kwargs): |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
245 |
checkAgreesToSiteToS(request, args, kwargs) |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
246 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
247 |
user_entity = user_logic.getForCurrentAccount() |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
248 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
249 |
if user_entity.link_id != kwargs['link_id']: |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
250 |
deny(request, args, kwargs) |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
251 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
252 |
fields = {'link_id' : kwargs['link_id'], |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
253 |
'scope_path' : kwargs['scope_path'], |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
254 |
'role' : role_name} |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
255 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
256 |
request_entity = request_logic.getFromFieldsOr404(**fields) |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
257 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
258 |
if not request_entity.group_accepted: |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
259 |
# TODO tell the user that this request has not been accepted yet |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
260 |
deny(request, args, kwargs) |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
261 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
262 |
return |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
263 |
return wrapper |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
264 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
265 |
def checkIsMyUncompletedRequest(request, args, kwargs): |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
266 |
"""Raises an alternate HTTP response if the specified Request has been completed. |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
267 |
""" |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
268 |
checkAgreesToSiteToS(request, args, kwargs) |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
269 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
270 |
user_entity = user_logic.getForCurrentAccount() |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
271 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
272 |
if user_entity.link_id != kwargs['link_id']: |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
273 |
# not the current user's request |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
274 |
return deny(request, args, kwargs) |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
275 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
276 |
fields = {'link_id' : kwargs['link_id'], |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
277 |
'scope_path' : kwargs['scope_path'], |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
278 |
'role' : kwargs['role'], |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
279 |
'completed' : False} |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
280 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
281 |
request_entity = request_logic.getForFields(fields, unique=True) |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
282 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
283 |
if not request_entity: |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
284 |
# TODO return 404 |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
285 |
return deny(request, args, kwargs) |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
286 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
287 |
return |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
288 |
|
872
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
289 |
def checkIsHost(request, args, kwargs): |
914
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
290 |
"""Raises an alternate HTTP response if Google Account has no Host entity. |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
291 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
292 |
Args: |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
293 |
request: a Django HTTP request |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
294 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
295 |
Raises: |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
296 |
AccessViolationResponse: |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
297 |
* if User is not already a Host, or |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
298 |
* if User has not agreed to the site-wide ToS, or |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
299 |
* if no User exists for the logged-in Google Account, or |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
300 |
* if the user is not even logged in |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
301 |
""" |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
302 |
checkAgreesToSiteToS(request, args, kwargs) |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
303 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
304 |
user = user_logic.getForFields({'account': users.get_current_user()}, |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
305 |
unique=True) |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
306 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
307 |
fields = {'user' : user, |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
308 |
'active' : True} |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
309 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
310 |
host = host_logic.getForFields(fields, unique=True) |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
311 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
312 |
if host: |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
313 |
return |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
314 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
315 |
login_message_fmt = DEF_DEV_LOGOUT_LOGIN_MSG_FMT % { |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
316 |
'role': 'a Program Administrator '} |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
317 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
318 |
raise out_of_band.LoginRequest(message_fmt=login_message_fmt) |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
319 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
320 |
def checkIsHostForProgram(request, args, kwargs): |
890
b3bf833c4580
Tighten more checkIsUser() access to checkAgreesToSiteToS() instead.
Todd Larsen <tlarsen@google.com>
parents:
889
diff
changeset
|
321 |
"""Raises an alternate HTTP response if Google Account has no Host entity |
709
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
322 |
for the specified program. |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
323 |
|
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
324 |
Args: |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
325 |
request: a Django HTTP request |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
326 |
|
890
b3bf833c4580
Tighten more checkIsUser() access to checkAgreesToSiteToS() instead.
Todd Larsen <tlarsen@google.com>
parents:
889
diff
changeset
|
327 |
Raises: |
b3bf833c4580
Tighten more checkIsUser() access to checkAgreesToSiteToS() instead.
Todd Larsen <tlarsen@google.com>
parents:
889
diff
changeset
|
328 |
AccessViolationResponse: |
914
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
329 |
* if User is not already a Host for the specified program, or |
890
b3bf833c4580
Tighten more checkIsUser() access to checkAgreesToSiteToS() instead.
Todd Larsen <tlarsen@google.com>
parents:
889
diff
changeset
|
330 |
* if User has not agreed to the site-wide ToS, or |
b3bf833c4580
Tighten more checkIsUser() access to checkAgreesToSiteToS() instead.
Todd Larsen <tlarsen@google.com>
parents:
889
diff
changeset
|
331 |
* if no User exists for the logged-in Google Account, or |
b3bf833c4580
Tighten more checkIsUser() access to checkAgreesToSiteToS() instead.
Todd Larsen <tlarsen@google.com>
parents:
889
diff
changeset
|
332 |
* if the user is not even logged in |
709
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
333 |
""" |
890
b3bf833c4580
Tighten more checkIsUser() access to checkAgreesToSiteToS() instead.
Todd Larsen <tlarsen@google.com>
parents:
889
diff
changeset
|
334 |
checkAgreesToSiteToS(request, args, kwargs) |
709
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
335 |
|
887
b8c1a6bc913e
Take advantage of new "from ... import ... as ..." rules in the style guide.
Todd Larsen <tlarsen@google.com>
parents:
884
diff
changeset
|
336 |
user = user_logic.getForFields({'account': users.get_current_user()}, |
b8c1a6bc913e
Take advantage of new "from ... import ... as ..." rules in the style guide.
Todd Larsen <tlarsen@google.com>
parents:
884
diff
changeset
|
337 |
unique=True) |
709
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
338 |
|
914
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
339 |
fields = {'user' : user, |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
340 |
'scope_path' : kwargs['scope_path'], |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
341 |
'active' : True} |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
342 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
343 |
host = host_logic.getForFields(fields, unique=True) |
709
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
344 |
|
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
345 |
if host: |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
346 |
return |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
347 |
|
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
348 |
login_message_fmt = DEF_DEV_LOGOUT_LOGIN_MSG_FMT % { |
746
018efb9863dc
Fix import sorting in soc.views.helper.access module and rename 'host' to 'Program Administrator'.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
729
diff
changeset
|
349 |
'role': 'a Program Administrator '} |
709
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
350 |
|
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
351 |
raise out_of_band.LoginRequest(message_fmt=login_message_fmt) |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
352 |
|
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
353 |
|
872
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
354 |
def checkIsClubAdminForClub(request, args, kwargs): |
814
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
355 |
"""Returns an alternate HTTP response if Google Account has no Club Admin |
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
356 |
entity for the specified club. |
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
357 |
|
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
358 |
Args: |
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
359 |
request: a Django HTTP request |
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
360 |
|
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
361 |
Raises: |
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
362 |
AccessViolationResponse: if the required authorization is not met |
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
363 |
|
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
364 |
Returns: |
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
365 |
None if Club Admin exists for the specified club, or a subclass of |
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
366 |
django.http.HttpResponse which contains the alternate response |
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
367 |
should be returned by the calling view. |
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
368 |
""" |
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
369 |
|
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
370 |
try: |
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
371 |
# if the current user is invited to create a host profile we allow access |
872
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
372 |
checkIsDeveloper(request, args, kwargs) |
814
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
373 |
return |
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
374 |
except out_of_band.Error: |
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
375 |
pass |
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
376 |
|
889
5f3136a5eb4c
Make checkAgreesToSiteToS() the default access check for many other checks.
Todd Larsen <tlarsen@google.com>
parents:
888
diff
changeset
|
377 |
checkAgreesToSiteToS(request, args, kwargs) |
814
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
378 |
|
914
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
379 |
user = user_logic.getForCurrentAccount() |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
380 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
381 |
fields = {'user' : user, |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
382 |
'scope_path' : kwargs['link_id'], |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
383 |
'state' : 'active'} |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
384 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
385 |
club_admin_entity = club_admin_logic.getForFields(fields, unique=True) |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
386 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
387 |
if club_admin_entity: |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
388 |
return |
814
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
389 |
|
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
390 |
login_message_fmt = DEF_DEV_LOGOUT_LOGIN_MSG_FMT % { |
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
391 |
'role': 'a Club Admin for this Club'} |
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
392 |
|
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
393 |
raise out_of_band.LoginRequest(message_fmt=login_message_fmt) |
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
394 |
|
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
395 |
|
872
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
396 |
def checkIsInvited(request, args, kwargs): |
389
9b873166d7d5
Fix identions, too long lines, unused imports and some other mistakes.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
361
diff
changeset
|
397 |
"""Returns an alternate HTTP response if Google Account has no Host entity |
9b873166d7d5
Fix identions, too long lines, unused imports and some other mistakes.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
361
diff
changeset
|
398 |
for the specified program. |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
399 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
400 |
Args: |
639
1f92bd41b914
Some docstring fixes in few modules (soc.views.helper soc.views.models.base).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
633
diff
changeset
|
401 |
request: a Django HTTP request |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
402 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
403 |
Raises: |
639
1f92bd41b914
Some docstring fixes in few modules (soc.views.helper soc.views.models.base).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
633
diff
changeset
|
404 |
AccessViolationResponse: if the required authorization is not met |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
405 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
406 |
Returns: |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
407 |
None if Host exists for the specified program, or a subclass of |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
408 |
django.http.HttpResponse which contains the alternate response |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
409 |
should be returned by the calling view. |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
410 |
""" |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
411 |
|
633
899ec5d546bd
Allow developers access to anything that does a checkIsInvited.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
617
diff
changeset
|
412 |
try: |
899ec5d546bd
Allow developers access to anything that does a checkIsInvited.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
617
diff
changeset
|
413 |
# if the current user is a developer we allow access |
872
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
414 |
checkIsDeveloper(request, args, kwargs) |
633
899ec5d546bd
Allow developers access to anything that does a checkIsInvited.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
617
diff
changeset
|
415 |
return |
899ec5d546bd
Allow developers access to anything that does a checkIsInvited.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
617
diff
changeset
|
416 |
except out_of_band.Error: |
899ec5d546bd
Allow developers access to anything that does a checkIsInvited.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
617
diff
changeset
|
417 |
pass |
709
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
418 |
|
889
5f3136a5eb4c
Make checkAgreesToSiteToS() the default access check for many other checks.
Todd Larsen <tlarsen@google.com>
parents:
888
diff
changeset
|
419 |
checkAgreesToSiteToS(request, args, kwargs) |
709
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
420 |
|
617
9cc42981d40a
Now invited users can create a new Host profile
Sverre Rabbelier <srabbelier@gmail.com>
parents:
612
diff
changeset
|
421 |
login_message_fmt = DEF_DEV_LOGOUT_LOGIN_MSG_FMT % { |
746
018efb9863dc
Fix import sorting in soc.views.helper.access module and rename 'host' to 'Program Administrator'.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
729
diff
changeset
|
422 |
'role': 'a Program Administrator for this Program'} |
617
9cc42981d40a
Now invited users can create a new Host profile
Sverre Rabbelier <srabbelier@gmail.com>
parents:
612
diff
changeset
|
423 |
|
9cc42981d40a
Now invited users can create a new Host profile
Sverre Rabbelier <srabbelier@gmail.com>
parents:
612
diff
changeset
|
424 |
splitpath = request.path.split('/') |
713
bcd480745f44
Thinkofix in access.checkIsInvited
Sverre Rabbelier <srabbelier@gmail.com>
parents:
709
diff
changeset
|
425 |
splitpath = splitpath[1:] # cut off leading '' |
617
9cc42981d40a
Now invited users can create a new Host profile
Sverre Rabbelier <srabbelier@gmail.com>
parents:
612
diff
changeset
|
426 |
|
9cc42981d40a
Now invited users can create a new Host profile
Sverre Rabbelier <srabbelier@gmail.com>
parents:
612
diff
changeset
|
427 |
if len(splitpath) < 4: |
9cc42981d40a
Now invited users can create a new Host profile
Sverre Rabbelier <srabbelier@gmail.com>
parents:
612
diff
changeset
|
428 |
# TODO: perhaps this needs a better explanation? |
872
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
429 |
deny(request, args, kwargs) |
617
9cc42981d40a
Now invited users can create a new Host profile
Sverre Rabbelier <srabbelier@gmail.com>
parents:
612
diff
changeset
|
430 |
|
713
bcd480745f44
Thinkofix in access.checkIsInvited
Sverre Rabbelier <srabbelier@gmail.com>
parents:
709
diff
changeset
|
431 |
role = splitpath[0] |
bcd480745f44
Thinkofix in access.checkIsInvited
Sverre Rabbelier <srabbelier@gmail.com>
parents:
709
diff
changeset
|
432 |
group_id = splitpath[2] |
bcd480745f44
Thinkofix in access.checkIsInvited
Sverre Rabbelier <srabbelier@gmail.com>
parents:
709
diff
changeset
|
433 |
user_id = splitpath[3] |
617
9cc42981d40a
Now invited users can create a new Host profile
Sverre Rabbelier <srabbelier@gmail.com>
parents:
612
diff
changeset
|
434 |
|
887
b8c1a6bc913e
Take advantage of new "from ... import ... as ..." rules in the style guide.
Todd Larsen <tlarsen@google.com>
parents:
884
diff
changeset
|
435 |
user = user_logic.getForFields({'account': users.get_current_user()}, |
b8c1a6bc913e
Take advantage of new "from ... import ... as ..." rules in the style guide.
Todd Larsen <tlarsen@google.com>
parents:
884
diff
changeset
|
436 |
unique=True) |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
437 |
|
617
9cc42981d40a
Now invited users can create a new Host profile
Sverre Rabbelier <srabbelier@gmail.com>
parents:
612
diff
changeset
|
438 |
if user_id != user.link_id: |
9cc42981d40a
Now invited users can create a new Host profile
Sverre Rabbelier <srabbelier@gmail.com>
parents:
612
diff
changeset
|
439 |
# TODO: perhaps this needs a better explanation? |
872
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
440 |
deny(request, args, kwargs) |
617
9cc42981d40a
Now invited users can create a new Host profile
Sverre Rabbelier <srabbelier@gmail.com>
parents:
612
diff
changeset
|
441 |
|
525
1dc62d570eff
Created a checkIsInvited method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
508
diff
changeset
|
442 |
properties = { |
617
9cc42981d40a
Now invited users can create a new Host profile
Sverre Rabbelier <srabbelier@gmail.com>
parents:
612
diff
changeset
|
443 |
'link_id': user_id, |
525
1dc62d570eff
Created a checkIsInvited method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
508
diff
changeset
|
444 |
'role': role, |
617
9cc42981d40a
Now invited users can create a new Host profile
Sverre Rabbelier <srabbelier@gmail.com>
parents:
612
diff
changeset
|
445 |
'scope_path': group_id, |
9cc42981d40a
Now invited users can create a new Host profile
Sverre Rabbelier <srabbelier@gmail.com>
parents:
612
diff
changeset
|
446 |
'group_accepted': True, |
525
1dc62d570eff
Created a checkIsInvited method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
508
diff
changeset
|
447 |
} |
1dc62d570eff
Created a checkIsInvited method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
508
diff
changeset
|
448 |
|
887
b8c1a6bc913e
Take advantage of new "from ... import ... as ..." rules in the style guide.
Todd Larsen <tlarsen@google.com>
parents:
884
diff
changeset
|
449 |
request = request_logic.getForFields(properties, unique=True) |
525
1dc62d570eff
Created a checkIsInvited method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
508
diff
changeset
|
450 |
|
1dc62d570eff
Created a checkIsInvited method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
508
diff
changeset
|
451 |
if request: |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
452 |
return |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
453 |
|
543
280a1ac6bcc1
Merge soc/logic/out_of_band.py into soc/views/out_of_band.py. Merge
Todd Larsen <tlarsen@google.com>
parents:
525
diff
changeset
|
454 |
raise out_of_band.LoginRequest(message_fmt=login_message_fmt) |
699
4e8eefe95748
Add and use a placeholder for checkIsDocumentPublic
Sverre Rabbelier <srabbelier@gmail.com>
parents:
639
diff
changeset
|
455 |
|
814
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
456 |
|
884
ded4850776c8
Changed checkIsClubAppAccepted into a more generic checkIsApplicationAccepted.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
882
diff
changeset
|
457 |
def checkIsApplicationAccepted(app_logic): |
802
95c534d02e39
Added Club Admin model, logic, and view
Sverre Rabbelier <srabbelier@gmail.com>
parents:
796
diff
changeset
|
458 |
"""Returns an alternate HTTP response if Google Account has no Club App |
95c534d02e39
Added Club Admin model, logic, and view
Sverre Rabbelier <srabbelier@gmail.com>
parents:
796
diff
changeset
|
459 |
entity for the specified Club. |
95c534d02e39
Added Club Admin model, logic, and view
Sverre Rabbelier <srabbelier@gmail.com>
parents:
796
diff
changeset
|
460 |
|
95c534d02e39
Added Club Admin model, logic, and view
Sverre Rabbelier <srabbelier@gmail.com>
parents:
796
diff
changeset
|
461 |
Args: |
95c534d02e39
Added Club Admin model, logic, and view
Sverre Rabbelier <srabbelier@gmail.com>
parents:
796
diff
changeset
|
462 |
request: a Django HTTP request |
95c534d02e39
Added Club Admin model, logic, and view
Sverre Rabbelier <srabbelier@gmail.com>
parents:
796
diff
changeset
|
463 |
|
95c534d02e39
Added Club Admin model, logic, and view
Sverre Rabbelier <srabbelier@gmail.com>
parents:
796
diff
changeset
|
464 |
Raises: |
95c534d02e39
Added Club Admin model, logic, and view
Sverre Rabbelier <srabbelier@gmail.com>
parents:
796
diff
changeset
|
465 |
AccessViolationResponse: if the required authorization is not met |
95c534d02e39
Added Club Admin model, logic, and view
Sverre Rabbelier <srabbelier@gmail.com>
parents:
796
diff
changeset
|
466 |
|
95c534d02e39
Added Club Admin model, logic, and view
Sverre Rabbelier <srabbelier@gmail.com>
parents:
796
diff
changeset
|
467 |
Returns: |
95c534d02e39
Added Club Admin model, logic, and view
Sverre Rabbelier <srabbelier@gmail.com>
parents:
796
diff
changeset
|
468 |
None if Club App exists for the specified program, or a subclass |
95c534d02e39
Added Club Admin model, logic, and view
Sverre Rabbelier <srabbelier@gmail.com>
parents:
796
diff
changeset
|
469 |
of django.http.HttpResponse which contains the alternate response |
95c534d02e39
Added Club Admin model, logic, and view
Sverre Rabbelier <srabbelier@gmail.com>
parents:
796
diff
changeset
|
470 |
should be returned by the calling view. |
95c534d02e39
Added Club Admin model, logic, and view
Sverre Rabbelier <srabbelier@gmail.com>
parents:
796
diff
changeset
|
471 |
""" |
95c534d02e39
Added Club Admin model, logic, and view
Sverre Rabbelier <srabbelier@gmail.com>
parents:
796
diff
changeset
|
472 |
|
884
ded4850776c8
Changed checkIsClubAppAccepted into a more generic checkIsApplicationAccepted.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
882
diff
changeset
|
473 |
def wrapper(request, args, kwargs): |
ded4850776c8
Changed checkIsClubAppAccepted into a more generic checkIsApplicationAccepted.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
882
diff
changeset
|
474 |
try: |
ded4850776c8
Changed checkIsClubAppAccepted into a more generic checkIsApplicationAccepted.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
882
diff
changeset
|
475 |
# if the current user is a developer we allow access |
ded4850776c8
Changed checkIsClubAppAccepted into a more generic checkIsApplicationAccepted.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
882
diff
changeset
|
476 |
checkIsDeveloper(request, args, kwargs) |
ded4850776c8
Changed checkIsClubAppAccepted into a more generic checkIsApplicationAccepted.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
882
diff
changeset
|
477 |
return |
ded4850776c8
Changed checkIsClubAppAccepted into a more generic checkIsApplicationAccepted.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
882
diff
changeset
|
478 |
except out_of_band.Error: |
ded4850776c8
Changed checkIsClubAppAccepted into a more generic checkIsApplicationAccepted.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
882
diff
changeset
|
479 |
pass |
814
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
480 |
|
889
5f3136a5eb4c
Make checkAgreesToSiteToS() the default access check for many other checks.
Todd Larsen <tlarsen@google.com>
parents:
888
diff
changeset
|
481 |
checkAgreesToSiteToS(request, args, kwargs) |
814
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
482 |
|
887
b8c1a6bc913e
Take advantage of new "from ... import ... as ..." rules in the style guide.
Todd Larsen <tlarsen@google.com>
parents:
884
diff
changeset
|
483 |
user = user_logic.getForCurrentAccount() |
814
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
484 |
|
884
ded4850776c8
Changed checkIsClubAppAccepted into a more generic checkIsApplicationAccepted.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
882
diff
changeset
|
485 |
properties = { |
ded4850776c8
Changed checkIsClubAppAccepted into a more generic checkIsApplicationAccepted.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
882
diff
changeset
|
486 |
'applicant': user, |
892
c3cdb581ffd2
Replaced boolean properties in soc/models/group_app with status property.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
891
diff
changeset
|
487 |
'status': 'accepted' |
884
ded4850776c8
Changed checkIsClubAppAccepted into a more generic checkIsApplicationAccepted.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
882
diff
changeset
|
488 |
} |
814
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
489 |
|
884
ded4850776c8
Changed checkIsClubAppAccepted into a more generic checkIsApplicationAccepted.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
882
diff
changeset
|
490 |
application = app_logic.logic.getForFields(properties, unique=True) |
ded4850776c8
Changed checkIsClubAppAccepted into a more generic checkIsApplicationAccepted.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
882
diff
changeset
|
491 |
|
ded4850776c8
Changed checkIsClubAppAccepted into a more generic checkIsApplicationAccepted.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
882
diff
changeset
|
492 |
if application: |
ded4850776c8
Changed checkIsClubAppAccepted into a more generic checkIsApplicationAccepted.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
882
diff
changeset
|
493 |
return |
814
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
494 |
|
884
ded4850776c8
Changed checkIsClubAppAccepted into a more generic checkIsApplicationAccepted.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
882
diff
changeset
|
495 |
# TODO(srabbelier) Make this give a proper error message |
ded4850776c8
Changed checkIsClubAppAccepted into a more generic checkIsApplicationAccepted.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
882
diff
changeset
|
496 |
deny(request, args, kwargs) |
814
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
497 |
|
884
ded4850776c8
Changed checkIsClubAppAccepted into a more generic checkIsApplicationAccepted.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
882
diff
changeset
|
498 |
return wrapper |
814
25ffebd9fa8f
Implement the checkIsClubAppAccepted function
Sverre Rabbelier <srabbelier@gmail.com>
parents:
802
diff
changeset
|
499 |
|
802
95c534d02e39
Added Club Admin model, logic, and view
Sverre Rabbelier <srabbelier@gmail.com>
parents:
796
diff
changeset
|
500 |
|
872
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
501 |
def checkIsMyNotification(request, args, kwargs): |
726 | 502 |
"""Returns an alternate HTTP response if this request is for a Notification belonging |
503 |
to the current user. |
|
504 |
||
505 |
Args: |
|
506 |
request: a Django HTTP request |
|
507 |
||
508 |
Raises: |
|
509 |
AccessViolationResponse: if the required authorization is not met |
|
510 |
||
511 |
Returns: |
|
512 |
None if the current User is allowed to access this Notification. |
|
513 |
""" |
|
514 |
||
515 |
try: |
|
516 |
# if the current user is a developer we allow access |
|
872
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
517 |
checkIsDeveloper(request, args, kwargs) |
726 | 518 |
return |
519 |
except out_of_band.Error: |
|
520 |
pass |
|
521 |
||
889
5f3136a5eb4c
Make checkAgreesToSiteToS() the default access check for many other checks.
Todd Larsen <tlarsen@google.com>
parents:
888
diff
changeset
|
522 |
checkAgreesToSiteToS(request, args, kwargs) |
729
7fe218e3d359
Make checkIsMyInvitation use Django to parse the URL
Sverre Rabbelier <srabbelier@gmail.com>
parents:
727
diff
changeset
|
523 |
|
7fe218e3d359
Make checkIsMyInvitation use Django to parse the URL
Sverre Rabbelier <srabbelier@gmail.com>
parents:
727
diff
changeset
|
524 |
# Mine the url for params |
7fe218e3d359
Make checkIsMyInvitation use Django to parse the URL
Sverre Rabbelier <srabbelier@gmail.com>
parents:
727
diff
changeset
|
525 |
try: |
7fe218e3d359
Make checkIsMyInvitation use Django to parse the URL
Sverre Rabbelier <srabbelier@gmail.com>
parents:
727
diff
changeset
|
526 |
callback, args, kwargs = urlresolvers.resolve(request.path) |
7fe218e3d359
Make checkIsMyInvitation use Django to parse the URL
Sverre Rabbelier <srabbelier@gmail.com>
parents:
727
diff
changeset
|
527 |
except Exception: |
872
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
528 |
deny(request, args, kwargs) |
729
7fe218e3d359
Make checkIsMyInvitation use Django to parse the URL
Sverre Rabbelier <srabbelier@gmail.com>
parents:
727
diff
changeset
|
529 |
|
7fe218e3d359
Make checkIsMyInvitation use Django to parse the URL
Sverre Rabbelier <srabbelier@gmail.com>
parents:
727
diff
changeset
|
530 |
properties = dicts.filter(kwargs, ['link_id', 'scope_path']) |
7fe218e3d359
Make checkIsMyInvitation use Django to parse the URL
Sverre Rabbelier <srabbelier@gmail.com>
parents:
727
diff
changeset
|
531 |
|
887
b8c1a6bc913e
Take advantage of new "from ... import ... as ..." rules in the style guide.
Todd Larsen <tlarsen@google.com>
parents:
884
diff
changeset
|
532 |
notification = notification_logic.getForFields(properties, unique=True) |
b8c1a6bc913e
Take advantage of new "from ... import ... as ..." rules in the style guide.
Todd Larsen <tlarsen@google.com>
parents:
884
diff
changeset
|
533 |
user = user_logic.getForCurrentAccount() |
729
7fe218e3d359
Make checkIsMyInvitation use Django to parse the URL
Sverre Rabbelier <srabbelier@gmail.com>
parents:
727
diff
changeset
|
534 |
|
7fe218e3d359
Make checkIsMyInvitation use Django to parse the URL
Sverre Rabbelier <srabbelier@gmail.com>
parents:
727
diff
changeset
|
535 |
# We need to check to see if the key's are equal since the User |
7fe218e3d359
Make checkIsMyInvitation use Django to parse the URL
Sverre Rabbelier <srabbelier@gmail.com>
parents:
727
diff
changeset
|
536 |
# objects are different and the default __eq__ method does not check |
7fe218e3d359
Make checkIsMyInvitation use Django to parse the URL
Sverre Rabbelier <srabbelier@gmail.com>
parents:
727
diff
changeset
|
537 |
# if the keys are equal (which is what we want). |
726 | 538 |
if user.key() == notification.scope.key(): |
539 |
return None |
|
729
7fe218e3d359
Make checkIsMyInvitation use Django to parse the URL
Sverre Rabbelier <srabbelier@gmail.com>
parents:
727
diff
changeset
|
540 |
|
7fe218e3d359
Make checkIsMyInvitation use Django to parse the URL
Sverre Rabbelier <srabbelier@gmail.com>
parents:
727
diff
changeset
|
541 |
# TODO(ljvderijk) Make this give a proper error message |
872
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
542 |
deny(request, args, kwargs) |
699
4e8eefe95748
Add and use a placeholder for checkIsDocumentPublic
Sverre Rabbelier <srabbelier@gmail.com>
parents:
639
diff
changeset
|
543 |
|
872
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
544 |
|
882
267e31f1a0b6
Added club_app model and logic.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
872
diff
changeset
|
545 |
def checkIsMyApplication(app_logic): |
796
126a1ef235ec
Fixed a typo in the comment in helper/access.py.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
791
diff
changeset
|
546 |
"""Returns an alternate HTTP response if this request is for a Application belonging |
791
30da180c4bca
Added the club_app view, logic and model
Sverre Rabbelier <srabbelier@gmail.com>
parents:
746
diff
changeset
|
547 |
to the current user. |
30da180c4bca
Added the club_app view, logic and model
Sverre Rabbelier <srabbelier@gmail.com>
parents:
746
diff
changeset
|
548 |
|
30da180c4bca
Added the club_app view, logic and model
Sverre Rabbelier <srabbelier@gmail.com>
parents:
746
diff
changeset
|
549 |
Args: |
30da180c4bca
Added the club_app view, logic and model
Sverre Rabbelier <srabbelier@gmail.com>
parents:
746
diff
changeset
|
550 |
request: a Django HTTP request |
30da180c4bca
Added the club_app view, logic and model
Sverre Rabbelier <srabbelier@gmail.com>
parents:
746
diff
changeset
|
551 |
|
30da180c4bca
Added the club_app view, logic and model
Sverre Rabbelier <srabbelier@gmail.com>
parents:
746
diff
changeset
|
552 |
Raises: |
30da180c4bca
Added the club_app view, logic and model
Sverre Rabbelier <srabbelier@gmail.com>
parents:
746
diff
changeset
|
553 |
AccessViolationResponse: if the required authorization is not met |
30da180c4bca
Added the club_app view, logic and model
Sverre Rabbelier <srabbelier@gmail.com>
parents:
746
diff
changeset
|
554 |
|
30da180c4bca
Added the club_app view, logic and model
Sverre Rabbelier <srabbelier@gmail.com>
parents:
746
diff
changeset
|
555 |
Returns: |
796
126a1ef235ec
Fixed a typo in the comment in helper/access.py.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
791
diff
changeset
|
556 |
None if the current User is allowed to access this Application. |
791
30da180c4bca
Added the club_app view, logic and model
Sverre Rabbelier <srabbelier@gmail.com>
parents:
746
diff
changeset
|
557 |
""" |
882
267e31f1a0b6
Added club_app model and logic.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
872
diff
changeset
|
558 |
|
267e31f1a0b6
Added club_app model and logic.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
872
diff
changeset
|
559 |
def wrapper(request, args, kwargs): |
267e31f1a0b6
Added club_app model and logic.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
872
diff
changeset
|
560 |
try: |
267e31f1a0b6
Added club_app model and logic.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
872
diff
changeset
|
561 |
# if the current user is a developer we allow access |
267e31f1a0b6
Added club_app model and logic.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
872
diff
changeset
|
562 |
checkIsDeveloper(request, args, kwargs) |
267e31f1a0b6
Added club_app model and logic.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
872
diff
changeset
|
563 |
return |
267e31f1a0b6
Added club_app model and logic.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
872
diff
changeset
|
564 |
except out_of_band.Error: |
267e31f1a0b6
Added club_app model and logic.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
872
diff
changeset
|
565 |
pass |
267e31f1a0b6
Added club_app model and logic.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
872
diff
changeset
|
566 |
|
889
5f3136a5eb4c
Make checkAgreesToSiteToS() the default access check for many other checks.
Todd Larsen <tlarsen@google.com>
parents:
888
diff
changeset
|
567 |
checkAgreesToSiteToS(request, args, kwargs) |
791
30da180c4bca
Added the club_app view, logic and model
Sverre Rabbelier <srabbelier@gmail.com>
parents:
746
diff
changeset
|
568 |
|
882
267e31f1a0b6
Added club_app model and logic.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
872
diff
changeset
|
569 |
properties = dicts.filter(kwargs, ['link_id']) |
267e31f1a0b6
Added club_app model and logic.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
872
diff
changeset
|
570 |
|
267e31f1a0b6
Added club_app model and logic.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
872
diff
changeset
|
571 |
application = app_logic.logic.getForFields(properties, unique=True) |
884
ded4850776c8
Changed checkIsClubAppAccepted into a more generic checkIsApplicationAccepted.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
882
diff
changeset
|
572 |
|
ded4850776c8
Changed checkIsClubAppAccepted into a more generic checkIsApplicationAccepted.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
882
diff
changeset
|
573 |
if not application: |
ded4850776c8
Changed checkIsClubAppAccepted into a more generic checkIsApplicationAccepted.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
882
diff
changeset
|
574 |
deny(request, args, kwargs) |
ded4850776c8
Changed checkIsClubAppAccepted into a more generic checkIsApplicationAccepted.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
882
diff
changeset
|
575 |
|
887
b8c1a6bc913e
Take advantage of new "from ... import ... as ..." rules in the style guide.
Todd Larsen <tlarsen@google.com>
parents:
884
diff
changeset
|
576 |
user = user_logic.getForCurrentAccount() |
791
30da180c4bca
Added the club_app view, logic and model
Sverre Rabbelier <srabbelier@gmail.com>
parents:
746
diff
changeset
|
577 |
|
882
267e31f1a0b6
Added club_app model and logic.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
872
diff
changeset
|
578 |
# We need to check to see if the key's are equal since the User |
267e31f1a0b6
Added club_app model and logic.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
872
diff
changeset
|
579 |
# objects are different and the default __eq__ method does not check |
267e31f1a0b6
Added club_app model and logic.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
872
diff
changeset
|
580 |
# if the keys are equal (which is what we want). |
267e31f1a0b6
Added club_app model and logic.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
872
diff
changeset
|
581 |
if user.key() == application.applicant.key(): |
267e31f1a0b6
Added club_app model and logic.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
872
diff
changeset
|
582 |
return None |
267e31f1a0b6
Added club_app model and logic.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
872
diff
changeset
|
583 |
|
267e31f1a0b6
Added club_app model and logic.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
872
diff
changeset
|
584 |
# TODO(srabbelier) Make this give a proper error message |
872
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
585 |
deny(request, args, kwargs) |
791
30da180c4bca
Added the club_app view, logic and model
Sverre Rabbelier <srabbelier@gmail.com>
parents:
746
diff
changeset
|
586 |
|
882
267e31f1a0b6
Added club_app model and logic.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
872
diff
changeset
|
587 |
return wrapper |
791
30da180c4bca
Added the club_app view, logic and model
Sverre Rabbelier <srabbelier@gmail.com>
parents:
746
diff
changeset
|
588 |
|
914
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
589 |
def checkIsMyActiveRole(role_logic): |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
590 |
"""Returns an alternate HTTP response if there is no active role found for |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
591 |
the current user using the given role_logic. |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
592 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
593 |
Raises: |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
594 |
AccessViolationResponse: if the required authorization is not met |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
595 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
596 |
Returns: |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
597 |
None if the current User has no active role for the given role_logic. |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
598 |
""" |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
599 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
600 |
def wrapper(request, args, kwargs): |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
601 |
try: |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
602 |
# if the current user is a developer we allow access |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
603 |
checkIsDeveloper(request, args, kwargs) |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
604 |
return |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
605 |
except out_of_band.Error: |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
606 |
pass |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
607 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
608 |
user = user_logic.getForCurrentAccount() |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
609 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
610 |
if not user or user.link_id != kwargs['link_id']: |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
611 |
# not my role |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
612 |
deny(request, args, kwargs) |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
613 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
614 |
fields = {'link_id' : kwargs['link_id'], |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
615 |
'scope_path' : kwargs['scope_path'] |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
616 |
} |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
617 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
618 |
role_entity = role_logic.logic.getForFields(fields, unique=True) |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
619 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
620 |
if not role_entity: |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
621 |
# no role found |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
622 |
deny(request, args, kwargs) |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
623 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
624 |
if role_entity.state == 'active': |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
625 |
# this role exist and is active |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
626 |
return |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
627 |
else: |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
628 |
# this role is not active |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
629 |
deny(request, args, kwargs) |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
630 |
|
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
631 |
return wrapper |
6ec8dd2a73b3
Added various access methods in preperation for the new request system.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
895
diff
changeset
|
632 |
|
791
30da180c4bca
Added the club_app view, logic and model
Sverre Rabbelier <srabbelier@gmail.com>
parents:
746
diff
changeset
|
633 |
|
872
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
634 |
def checkCanInvite(request, args, kwargs): |
746
018efb9863dc
Fix import sorting in soc.views.helper.access module and rename 'host' to 'Program Administrator'.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
729
diff
changeset
|
635 |
"""Checks to see if the current user can create an invite. |
720
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
636 |
|
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
637 |
Note that if the current url is not in the default 'request' form |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
638 |
this method either deny()s or performs the wrong access check. |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
639 |
|
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
640 |
Args: |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
641 |
request: a Django HTTP request |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
642 |
""" |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
643 |
|
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
644 |
try: |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
645 |
# if the current user is a developer we allow access |
872
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
646 |
checkIsDeveloper(request, args, kwargs) |
720
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
647 |
return |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
648 |
except out_of_band.Error: |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
649 |
pass |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
650 |
|
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
651 |
# Mine the url for params |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
652 |
try: |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
653 |
callback, args, kwargs = urlresolvers.resolve(request.path) |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
654 |
except Exception: |
872
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
655 |
deny(request, args, kwargs) |
720
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
656 |
|
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
657 |
# Construct a new url by reshufling the kwargs |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
658 |
order = ['role', 'access_type', 'scope_path', 'link_id'] |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
659 |
url_params = dicts.unzip(kwargs, order) |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
660 |
url = '/'.join([''] + list(url_params)) |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
661 |
|
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
662 |
# Mine the reshufled url |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
663 |
try: |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
664 |
callback, args, kwargs = urlresolvers.resolve(url) |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
665 |
except Exception: |
872
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
666 |
deny(request, args, kwargs) |
720
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
667 |
|
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
668 |
# Get the everything we need for the access check |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
669 |
params = callback.im_self.getParams() |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
670 |
access_type = kwargs['access_type'] |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
671 |
|
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
672 |
# Perform the access check |
872
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
673 |
checkAccess(access_type, request, rights=params['rights']) |
720
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
674 |
|
872
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
675 |
|
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
676 |
def checkIsDocumentPublic(request, args, kwargs): |
714
3e2ce3d8057a
Add missing dots in docstrings, proper sorting of imports and small docstring typo fixes.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
713
diff
changeset
|
677 |
"""Checks whether a document is public. |
699
4e8eefe95748
Add and use a placeholder for checkIsDocumentPublic
Sverre Rabbelier <srabbelier@gmail.com>
parents:
639
diff
changeset
|
678 |
|
4e8eefe95748
Add and use a placeholder for checkIsDocumentPublic
Sverre Rabbelier <srabbelier@gmail.com>
parents:
639
diff
changeset
|
679 |
Args: |
4e8eefe95748
Add and use a placeholder for checkIsDocumentPublic
Sverre Rabbelier <srabbelier@gmail.com>
parents:
639
diff
changeset
|
680 |
request: a Django HTTP request |
4e8eefe95748
Add and use a placeholder for checkIsDocumentPublic
Sverre Rabbelier <srabbelier@gmail.com>
parents:
639
diff
changeset
|
681 |
""" |
4e8eefe95748
Add and use a placeholder for checkIsDocumentPublic
Sverre Rabbelier <srabbelier@gmail.com>
parents:
639
diff
changeset
|
682 |
|
714
3e2ce3d8057a
Add missing dots in docstrings, proper sorting of imports and small docstring typo fixes.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
713
diff
changeset
|
683 |
# TODO(srabbelier): A proper check needs to be done to see if the document |
699
4e8eefe95748
Add and use a placeholder for checkIsDocumentPublic
Sverre Rabbelier <srabbelier@gmail.com>
parents:
639
diff
changeset
|
684 |
# is public or not, probably involving analysing it's scope or such. |
872
70e0b6d8ff73
Prepare access to receive args and kwargs as argument
Sverre Rabbelier <srabbelier@gmail.com>
parents:
814
diff
changeset
|
685 |
allow(request, args, kwargs) |