author | Sverre Rabbelier <srabbelier@gmail.com> |
Sun, 14 Dec 2008 00:33:59 +0000 | |
changeset 741 | 2dc2c65c5f76 |
parent 729 | 7fe218e3d359 |
child 746 | 018efb9863dc |
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 |
|
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
36 |
from django.utils.translation import ugettext_lazy |
720
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
37 |
from django.core import urlresolvers |
293
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 |
709
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
41 |
from soc.logic.models import host as host_logic |
726 | 42 |
from soc.logic.models import notification as notification_logic |
525
1dc62d570eff
Created a checkIsInvited method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
508
diff
changeset
|
43 |
from soc.logic.models import user as user_logic |
1dc62d570eff
Created a checkIsInvited method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
508
diff
changeset
|
44 |
from soc.logic.models import request as request_logic |
508
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
45 |
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
|
46 |
from soc.views import out_of_band |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
47 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
48 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
49 |
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
|
50 |
'Please create <a href="/user/edit">User Profile</a>' |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
51 |
' in order to view this page.') |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
52 |
|
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
|
53 |
DEF_DEV_LOGOUT_LOGIN_MSG_FMT = ugettext_lazy( |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
54 |
'Please <a href="%%(sign_out)s">sign out</a>' |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
55 |
' and <a href="%%(sign_in)s">sign in</a>' |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
56 |
' again as %(role)s to view this page.') |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
57 |
|
508
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
58 |
DEF_PAGE_DENIED_MSG = ugettext_lazy( |
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
59 |
'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
|
60 |
|
590
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
61 |
DEF_LOGOUT_MSG_FMT = ugettext_lazy( |
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
62 |
'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
|
63 |
|
508
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
64 |
|
612
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
65 |
def checkAccess(access_type, request, rights): |
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
|
66 |
"""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
|
67 |
|
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
68 |
Args: |
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
69 |
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
|
70 |
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
|
71 |
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
|
72 |
|
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
|
73 |
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
|
74 |
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
|
75 |
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
|
76 |
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
|
77 |
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
|
78 |
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
|
79 |
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
|
80 |
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
|
81 |
value are called. |
612
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
82 |
|
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
83 |
Returns: |
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
84 |
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
|
85 |
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
|
86 |
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
|
87 |
""" |
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
88 |
|
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
89 |
# Call each access checker |
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
90 |
for check in rights['any_access']: |
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
91 |
check(request) |
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
92 |
|
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
93 |
if access_type not in rights: |
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
94 |
for check in rights['unspecified']: |
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
95 |
# No checks defined, so do the 'generic' checks and bail out |
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
96 |
check(request) |
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
97 |
return |
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
98 |
|
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
99 |
for check in rights[access_type]: |
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
100 |
check(request) |
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
101 |
|
3cca81b1e5a1
Moved checkAccess and getCleanedFields into access and forms
Sverre Rabbelier <srabbelier@gmail.com>
parents:
590
diff
changeset
|
102 |
|
508
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
103 |
def allow(request): |
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
|
104 |
"""Never returns an alternate HTTP response. |
508
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
105 |
|
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
106 |
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
|
107 |
request: a Django HTTP request |
508
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
108 |
""" |
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
109 |
|
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
110 |
return |
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
111 |
|
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
112 |
def deny(request): |
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
|
113 |
"""Returns an alternate HTTP response. |
508
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
114 |
|
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
115 |
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
|
116 |
request: a Django HTTP request |
508
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
117 |
|
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
|
118 |
Returns: |
1f92bd41b914
Some docstring fixes in few modules (soc.views.helper soc.views.models.base).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
633
diff
changeset
|
119 |
a subclass of django.http.HttpResponse which contains the |
1f92bd41b914
Some docstring fixes in few modules (soc.views.helper soc.views.models.base).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
633
diff
changeset
|
120 |
alternate response that should be returned by the calling view. |
508
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
121 |
""" |
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
122 |
|
709
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
123 |
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
|
124 |
context['title'] = 'Access denied' |
508
2b90baceac88
Add a access.deny and access.allow method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
481
diff
changeset
|
125 |
|
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
|
126 |
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
|
127 |
|
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
128 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
129 |
def checkIsLoggedIn(request): |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
130 |
"""Returns an alternate HTTP response if Google Account is not logged in. |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
131 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
132 |
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
|
133 |
request: a Django HTTP request |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
134 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
135 |
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
|
136 |
AccessViolationResponse: if the required authorization is not met |
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 |
Returns: |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
139 |
None if the user is logged in, or a subclass of |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
140 |
django.http.HttpResponse which contains the alternate response |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
141 |
that should be returned by the calling view. |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
142 |
""" |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
143 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
144 |
if users.get_current_user(): |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
145 |
return |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
146 |
|
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
|
147 |
raise out_of_band.LoginRequest() |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
148 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
149 |
|
590
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
150 |
def checkNotLoggedIn(request): |
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
151 |
"""Returns an alternate HTTP response if Google Account is not logged in. |
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
152 |
|
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
153 |
Args: |
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
154 |
request: a Django HTTP request |
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
155 |
|
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
156 |
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
|
157 |
AccessViolationResponse: if the required authorization is not met |
590
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
158 |
|
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
159 |
Returns: |
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
160 |
None if the user is logged in, or a subclass of |
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
161 |
django.http.HttpResponse which contains the alternate response |
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
162 |
that should be returned by the calling view. |
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 |
|
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
165 |
if not users.get_current_user(): |
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
166 |
return |
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
167 |
|
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
168 |
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
|
169 |
|
37735d97b541
Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents:
543
diff
changeset
|
170 |
|
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
171 |
def checkIsUser(request): |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
172 |
"""Returns an alternate HTTP response if Google Account has no User entity. |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
173 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
174 |
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
|
175 |
request: a Django HTTP request |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
176 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
177 |
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
|
178 |
AccessViolationResponse: if the required authorization is not met |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
179 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
180 |
Returns: |
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
|
181 |
None if User exists for a Google Account, or a subclass of |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
182 |
django.http.HttpResponse which contains the alternate response |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
183 |
should be returned by the calling view. |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
184 |
""" |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
185 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
186 |
checkIsLoggedIn(request) |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
187 |
|
525
1dc62d570eff
Created a checkIsInvited method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
508
diff
changeset
|
188 |
user = user_logic.logic.getForFields( |
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
|
189 |
{'account': users.get_current_user()}, unique=True) |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
190 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
191 |
if user: |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
192 |
return |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
193 |
|
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
|
194 |
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
|
195 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
196 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
197 |
def checkIsDeveloper(request): |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
198 |
"""Returns an alternate HTTP response if Google Account is not a Developer. |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
199 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
200 |
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
|
201 |
request: a Django HTTP request |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
202 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
203 |
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
|
204 |
AccessViolationResponse: if the required authorization is not met |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
205 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
206 |
Returns: |
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
|
207 |
None if Google Account is logged in and logged-in user is a Developer, |
94834a1e6c01
Attempt to rename User.id to User.account, in preparation for making User be
Todd Larsen <tlarsen@google.com>
parents:
448
diff
changeset
|
208 |
or a subclass of django.http.HttpResponse which contains the alternate |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
209 |
response should be returned by the calling view. |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
210 |
""" |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
211 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
212 |
checkIsUser(request) |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
213 |
|
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
|
214 |
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
|
215 |
return |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
216 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
217 |
login_message_fmt = DEF_DEV_LOGOUT_LOGIN_MSG_FMT % { |
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
|
218 |
'role': 'a site developer '} |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
219 |
|
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
|
220 |
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
|
221 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
222 |
|
709
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
223 |
def checkIsHost(request): |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
224 |
"""Returns an alternate HTTP response if Google Account has no Host entity |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
225 |
for the specified program. |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
226 |
|
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
227 |
Args: |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
228 |
request: a Django HTTP request |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
229 |
|
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
230 |
Raises: |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
231 |
AccessViolationResponse: if the required authorization is not met |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
232 |
|
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
233 |
Returns: |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
234 |
None if Host exists for the specified program, or a subclass of |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
235 |
django.http.HttpResponse which contains the alternate response |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
236 |
should be returned by the calling view. |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
237 |
""" |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
238 |
|
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
239 |
try: |
720
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
240 |
# if the current user is invited to create a host profile we allow access |
709
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
241 |
checkIsInvited(request) |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
242 |
return |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
243 |
except out_of_band.Error: |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
244 |
pass |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
245 |
|
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
246 |
checkIsUser(request) |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
247 |
|
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
248 |
user = user_logic.logic.getForFields( |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
249 |
{'account': users.get_current_user()}, unique=True) |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
250 |
|
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
251 |
host = host_logic.logic.getForFields( |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
252 |
{'user': user}, unique=True) |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
253 |
|
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
254 |
if host: |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
255 |
return |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
256 |
|
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
257 |
login_message_fmt = DEF_DEV_LOGOUT_LOGIN_MSG_FMT % { |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
258 |
'role': 'a host '} |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
259 |
|
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
260 |
raise out_of_band.LoginRequest(message_fmt=login_message_fmt) |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
261 |
|
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
262 |
|
617
9cc42981d40a
Now invited users can create a new Host profile
Sverre Rabbelier <srabbelier@gmail.com>
parents:
612
diff
changeset
|
263 |
def checkIsInvited(request): |
389
9b873166d7d5
Fix identions, too long lines, unused imports and some other mistakes.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
361
diff
changeset
|
264 |
"""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
|
265 |
for the specified program. |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
266 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
267 |
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
|
268 |
request: a Django HTTP request |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
269 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
270 |
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
|
271 |
AccessViolationResponse: if the required authorization is not met |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
272 |
|
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
273 |
Returns: |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
274 |
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
|
275 |
django.http.HttpResponse which contains the alternate response |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
276 |
should be returned by the calling view. |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
277 |
""" |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
278 |
|
633
899ec5d546bd
Allow developers access to anything that does a checkIsInvited.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
617
diff
changeset
|
279 |
try: |
899ec5d546bd
Allow developers access to anything that does a checkIsInvited.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
617
diff
changeset
|
280 |
# if the current user is a developer we allow access |
709
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
281 |
checkIsDeveloper(request) |
633
899ec5d546bd
Allow developers access to anything that does a checkIsInvited.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
617
diff
changeset
|
282 |
return |
899ec5d546bd
Allow developers access to anything that does a checkIsInvited.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
617
diff
changeset
|
283 |
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
|
284 |
pass |
709
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
285 |
|
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
286 |
checkIsUser(request) |
e71b20847eb0
Add checkIsHost in access
Sverre Rabbelier <srabbelier@gmail.com>
parents:
699
diff
changeset
|
287 |
|
617
9cc42981d40a
Now invited users can create a new Host profile
Sverre Rabbelier <srabbelier@gmail.com>
parents:
612
diff
changeset
|
288 |
login_message_fmt = DEF_DEV_LOGOUT_LOGIN_MSG_FMT % { |
9cc42981d40a
Now invited users can create a new Host profile
Sverre Rabbelier <srabbelier@gmail.com>
parents:
612
diff
changeset
|
289 |
'role': 'a host for this program'} |
9cc42981d40a
Now invited users can create a new Host profile
Sverre Rabbelier <srabbelier@gmail.com>
parents:
612
diff
changeset
|
290 |
|
9cc42981d40a
Now invited users can create a new Host profile
Sverre Rabbelier <srabbelier@gmail.com>
parents:
612
diff
changeset
|
291 |
splitpath = request.path.split('/') |
713
bcd480745f44
Thinkofix in access.checkIsInvited
Sverre Rabbelier <srabbelier@gmail.com>
parents:
709
diff
changeset
|
292 |
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
|
293 |
|
9cc42981d40a
Now invited users can create a new Host profile
Sverre Rabbelier <srabbelier@gmail.com>
parents:
612
diff
changeset
|
294 |
if len(splitpath) < 4: |
9cc42981d40a
Now invited users can create a new Host profile
Sverre Rabbelier <srabbelier@gmail.com>
parents:
612
diff
changeset
|
295 |
# TODO: perhaps this needs a better explanation? |
9cc42981d40a
Now invited users can create a new Host profile
Sverre Rabbelier <srabbelier@gmail.com>
parents:
612
diff
changeset
|
296 |
deny(request) |
9cc42981d40a
Now invited users can create a new Host profile
Sverre Rabbelier <srabbelier@gmail.com>
parents:
612
diff
changeset
|
297 |
|
713
bcd480745f44
Thinkofix in access.checkIsInvited
Sverre Rabbelier <srabbelier@gmail.com>
parents:
709
diff
changeset
|
298 |
role = splitpath[0] |
bcd480745f44
Thinkofix in access.checkIsInvited
Sverre Rabbelier <srabbelier@gmail.com>
parents:
709
diff
changeset
|
299 |
group_id = splitpath[2] |
bcd480745f44
Thinkofix in access.checkIsInvited
Sverre Rabbelier <srabbelier@gmail.com>
parents:
709
diff
changeset
|
300 |
user_id = splitpath[3] |
617
9cc42981d40a
Now invited users can create a new Host profile
Sverre Rabbelier <srabbelier@gmail.com>
parents:
612
diff
changeset
|
301 |
|
525
1dc62d570eff
Created a checkIsInvited method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
508
diff
changeset
|
302 |
user = user_logic.logic.getForFields( |
1dc62d570eff
Created a checkIsInvited method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
508
diff
changeset
|
303 |
{'account': users.get_current_user()}, unique=True) |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
304 |
|
617
9cc42981d40a
Now invited users can create a new Host profile
Sverre Rabbelier <srabbelier@gmail.com>
parents:
612
diff
changeset
|
305 |
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
|
306 |
# TODO: perhaps this needs a better explanation? |
9cc42981d40a
Now invited users can create a new Host profile
Sverre Rabbelier <srabbelier@gmail.com>
parents:
612
diff
changeset
|
307 |
deny(request) |
9cc42981d40a
Now invited users can create a new Host profile
Sverre Rabbelier <srabbelier@gmail.com>
parents:
612
diff
changeset
|
308 |
|
525
1dc62d570eff
Created a checkIsInvited method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
508
diff
changeset
|
309 |
properties = { |
617
9cc42981d40a
Now invited users can create a new Host profile
Sverre Rabbelier <srabbelier@gmail.com>
parents:
612
diff
changeset
|
310 |
'link_id': user_id, |
525
1dc62d570eff
Created a checkIsInvited method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
508
diff
changeset
|
311 |
'role': role, |
617
9cc42981d40a
Now invited users can create a new Host profile
Sverre Rabbelier <srabbelier@gmail.com>
parents:
612
diff
changeset
|
312 |
'scope_path': group_id, |
9cc42981d40a
Now invited users can create a new Host profile
Sverre Rabbelier <srabbelier@gmail.com>
parents:
612
diff
changeset
|
313 |
'group_accepted': True, |
525
1dc62d570eff
Created a checkIsInvited method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
508
diff
changeset
|
314 |
} |
1dc62d570eff
Created a checkIsInvited method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
508
diff
changeset
|
315 |
|
1dc62d570eff
Created a checkIsInvited method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
508
diff
changeset
|
316 |
request = request_logic.logic.getForFields(properties, unique=True) |
1dc62d570eff
Created a checkIsInvited method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
508
diff
changeset
|
317 |
|
1dc62d570eff
Created a checkIsInvited method
Sverre Rabbelier <srabbelier@gmail.com>
parents:
508
diff
changeset
|
318 |
if request: |
293
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
319 |
return |
1edd01373e71
Add an access control module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
320 |
|
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
|
321 |
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
|
322 |
|
726 | 323 |
def checkIsMyNotification(request): |
324 |
"""Returns an alternate HTTP response if this request is for a Notification belonging |
|
325 |
to the current user. |
|
326 |
||
327 |
Args: |
|
328 |
request: a Django HTTP request |
|
329 |
||
330 |
Raises: |
|
331 |
AccessViolationResponse: if the required authorization is not met |
|
332 |
||
333 |
Returns: |
|
334 |
None if the current User is allowed to access this Notification. |
|
335 |
""" |
|
336 |
||
337 |
try: |
|
338 |
# if the current user is a developer we allow access |
|
339 |
checkIsDeveloper(request) |
|
340 |
return |
|
341 |
except out_of_band.Error: |
|
342 |
pass |
|
343 |
||
344 |
checkIsUser(request) |
|
729
7fe218e3d359
Make checkIsMyInvitation use Django to parse the URL
Sverre Rabbelier <srabbelier@gmail.com>
parents:
727
diff
changeset
|
345 |
|
7fe218e3d359
Make checkIsMyInvitation use Django to parse the URL
Sverre Rabbelier <srabbelier@gmail.com>
parents:
727
diff
changeset
|
346 |
# Mine the url for params |
7fe218e3d359
Make checkIsMyInvitation use Django to parse the URL
Sverre Rabbelier <srabbelier@gmail.com>
parents:
727
diff
changeset
|
347 |
try: |
7fe218e3d359
Make checkIsMyInvitation use Django to parse the URL
Sverre Rabbelier <srabbelier@gmail.com>
parents:
727
diff
changeset
|
348 |
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
|
349 |
except Exception: |
7fe218e3d359
Make checkIsMyInvitation use Django to parse the URL
Sverre Rabbelier <srabbelier@gmail.com>
parents:
727
diff
changeset
|
350 |
deny(request) |
7fe218e3d359
Make checkIsMyInvitation use Django to parse the URL
Sverre Rabbelier <srabbelier@gmail.com>
parents:
727
diff
changeset
|
351 |
|
7fe218e3d359
Make checkIsMyInvitation use Django to parse the URL
Sverre Rabbelier <srabbelier@gmail.com>
parents:
727
diff
changeset
|
352 |
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
|
353 |
|
726 | 354 |
notification = notification_logic.logic.getForFields(properties, unique=True) |
727
ddf44af087a0
Using getForCurrentAccount where possible due to comments on r1309.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
726
diff
changeset
|
355 |
user = user_logic.logic.getForCurrentAccount() |
729
7fe218e3d359
Make checkIsMyInvitation use Django to parse the URL
Sverre Rabbelier <srabbelier@gmail.com>
parents:
727
diff
changeset
|
356 |
|
7fe218e3d359
Make checkIsMyInvitation use Django to parse the URL
Sverre Rabbelier <srabbelier@gmail.com>
parents:
727
diff
changeset
|
357 |
# 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
|
358 |
# 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
|
359 |
# if the keys are equal (which is what we want). |
726 | 360 |
if user.key() == notification.scope.key(): |
361 |
return None |
|
729
7fe218e3d359
Make checkIsMyInvitation use Django to parse the URL
Sverre Rabbelier <srabbelier@gmail.com>
parents:
727
diff
changeset
|
362 |
|
7fe218e3d359
Make checkIsMyInvitation use Django to parse the URL
Sverre Rabbelier <srabbelier@gmail.com>
parents:
727
diff
changeset
|
363 |
# TODO(ljvderijk) Make this give a proper error message |
7fe218e3d359
Make checkIsMyInvitation use Django to parse the URL
Sverre Rabbelier <srabbelier@gmail.com>
parents:
727
diff
changeset
|
364 |
deny(request) |
699
4e8eefe95748
Add and use a placeholder for checkIsDocumentPublic
Sverre Rabbelier <srabbelier@gmail.com>
parents:
639
diff
changeset
|
365 |
|
720
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
366 |
def checkCanInvite(request): |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
367 |
"""Checks to see if the current user can create an invite |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
368 |
|
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
369 |
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
|
370 |
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
|
371 |
|
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
372 |
Args: |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
373 |
request: a Django HTTP request |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
374 |
""" |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
375 |
|
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
376 |
try: |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
377 |
# if the current user is a developer we allow access |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
378 |
checkIsDeveloper(request) |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
379 |
return |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
380 |
except out_of_band.Error: |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
381 |
pass |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
382 |
|
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
383 |
# Mine the url for params |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
384 |
try: |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
385 |
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
|
386 |
except Exception: |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
387 |
deny(request) |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
388 |
|
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
389 |
# 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
|
390 |
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
|
391 |
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
|
392 |
url = '/'.join([''] + list(url_params)) |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
393 |
|
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
394 |
# Mine the reshufled url |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
395 |
try: |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
396 |
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
|
397 |
except Exception: |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
398 |
deny(request) |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
399 |
|
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
400 |
# 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
|
401 |
params = callback.im_self.getParams() |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
402 |
access_type = kwargs['access_type'] |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
403 |
|
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
404 |
# Perform the access check |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
405 |
helper.access.checkAccess(access_type, request, rights=params['rights']) |
9eb2522dfa83
Make it possible to invite another Host as Host
Sverre Rabbelier <srabbelier@gmail.com>
parents:
714
diff
changeset
|
406 |
|
699
4e8eefe95748
Add and use a placeholder for checkIsDocumentPublic
Sverre Rabbelier <srabbelier@gmail.com>
parents:
639
diff
changeset
|
407 |
def checkIsDocumentPublic(request): |
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
|
408 |
"""Checks whether a document is public. |
699
4e8eefe95748
Add and use a placeholder for checkIsDocumentPublic
Sverre Rabbelier <srabbelier@gmail.com>
parents:
639
diff
changeset
|
409 |
|
4e8eefe95748
Add and use a placeholder for checkIsDocumentPublic
Sverre Rabbelier <srabbelier@gmail.com>
parents:
639
diff
changeset
|
410 |
Args: |
4e8eefe95748
Add and use a placeholder for checkIsDocumentPublic
Sverre Rabbelier <srabbelier@gmail.com>
parents:
639
diff
changeset
|
411 |
request: a Django HTTP request |
4e8eefe95748
Add and use a placeholder for checkIsDocumentPublic
Sverre Rabbelier <srabbelier@gmail.com>
parents:
639
diff
changeset
|
412 |
""" |
4e8eefe95748
Add and use a placeholder for checkIsDocumentPublic
Sverre Rabbelier <srabbelier@gmail.com>
parents:
639
diff
changeset
|
413 |
|
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
|
414 |
# 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
|
415 |
# is public or not, probably involving analysing it's scope or such. |
4e8eefe95748
Add and use a placeholder for checkIsDocumentPublic
Sverre Rabbelier <srabbelier@gmail.com>
parents:
639
diff
changeset
|
416 |
allow(request) |