1 | ## $Id: permissions.py 12207 2014-12-13 07:30:38Z henrik $ |
---|
2 | ## |
---|
3 | ## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann |
---|
4 | ## This program is free software; you can redistribute it and/or modify |
---|
5 | ## it under the terms of the GNU General Public License as published by |
---|
6 | ## the Free Software Foundation; either version 2 of the License, or |
---|
7 | ## (at your option) any later version. |
---|
8 | ## |
---|
9 | ## This program is distributed in the hope that it will be useful, |
---|
10 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
11 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
12 | ## GNU General Public License for more details. |
---|
13 | ## |
---|
14 | ## You should have received a copy of the GNU General Public License |
---|
15 | ## along with this program; if not, write to the Free Software |
---|
16 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
17 | ## |
---|
18 | import grok |
---|
19 | from zope.component import getUtilitiesFor |
---|
20 | from zope.interface import Interface |
---|
21 | from zope.securitypolicy.interfaces import IRole, IPrincipalRoleMap |
---|
22 | from waeup.ikoba.interfaces import ILocalRolesAssignable |
---|
23 | |
---|
24 | class Public(grok.Permission): |
---|
25 | """Everyone-can-do-this-permission. |
---|
26 | |
---|
27 | This permission is meant to be applied to objects/views/pages |
---|
28 | etc., that should be usable/readable by everyone. |
---|
29 | |
---|
30 | We need this to be able to tune default permissions more |
---|
31 | restrictive and open up some dedicated objects like the front |
---|
32 | page. |
---|
33 | """ |
---|
34 | grok.name('waeup.Public') |
---|
35 | |
---|
36 | class Anonymous(grok.Permission): |
---|
37 | """Only-anonymous-can-do-this-permission. |
---|
38 | """ |
---|
39 | grok.name('waeup.Anonymous') |
---|
40 | |
---|
41 | class Authenticated(grok.Permission): |
---|
42 | """Only-logged-in-users-can-do-this-permission. |
---|
43 | """ |
---|
44 | grok.name('waeup.Authenticated') |
---|
45 | |
---|
46 | class ViewProducts(grok.Permission): |
---|
47 | grok.name('waeup.viewProducts') |
---|
48 | |
---|
49 | class ManageProducts(grok.Permission): |
---|
50 | grok.name('waeup.manageProducts') |
---|
51 | |
---|
52 | class ManagePortal(grok.Permission): |
---|
53 | grok.name('waeup.managePortal') |
---|
54 | |
---|
55 | class ManageUsers(grok.Permission): |
---|
56 | grok.name('waeup.manageUsers') |
---|
57 | |
---|
58 | class EditUser(grok.Permission): |
---|
59 | grok.name('waeup.editUser') |
---|
60 | |
---|
61 | class ManageDataCenter(grok.Permission): |
---|
62 | grok.name('waeup.manageDataCenter') |
---|
63 | |
---|
64 | class ImportData(grok.Permission): |
---|
65 | grok.name('waeup.importData') |
---|
66 | |
---|
67 | class ExportData(grok.Permission): |
---|
68 | grok.name('waeup.exportData') |
---|
69 | |
---|
70 | class ManagePortalConfiguration(grok.Permission): |
---|
71 | grok.name('waeup.managePortalConfiguration') |
---|
72 | |
---|
73 | |
---|
74 | # Local Roles |
---|
75 | |
---|
76 | class Owner(grok.Role): |
---|
77 | grok.name('waeup.local.Owner') |
---|
78 | grok.title(u'Owner') |
---|
79 | grok.permissions('waeup.editUser') |
---|
80 | |
---|
81 | class ProductManager(grok.Role): |
---|
82 | grok.name('waeup.local.ProductManager') |
---|
83 | grok.title(u'Product Manager') |
---|
84 | grok.permissions('waeup.manageProducts', |
---|
85 | 'waeup.viewProducts', |
---|
86 | 'waeup.exportData') |
---|
87 | |
---|
88 | # Site Roles |
---|
89 | class ProductsOfficer(grok.Role): |
---|
90 | grok.name('waeup.ProductsOfficer') |
---|
91 | grok.title(u'Products Officer (view only)') |
---|
92 | grok.permissions('waeup.viewProducts') |
---|
93 | |
---|
94 | class ProductsManager(grok.Role): |
---|
95 | grok.name('waeup.ProductsManager') |
---|
96 | grok.title(u'Products Manager') |
---|
97 | grok.permissions('waeup.viewProducts', |
---|
98 | 'waeup.manageProducts') |
---|
99 | |
---|
100 | class DataCenterManager(grok.Role): |
---|
101 | grok.name('waeup.DataCenterManager') |
---|
102 | grok.title(u'Datacenter Manager') |
---|
103 | grok.permissions('waeup.manageDataCenter') |
---|
104 | |
---|
105 | class ImportManager(grok.Role): |
---|
106 | grok.name('waeup.ImportManager') |
---|
107 | grok.title(u'Import Manager') |
---|
108 | grok.permissions('waeup.manageDataCenter', |
---|
109 | 'waeup.importData') |
---|
110 | |
---|
111 | class ExportManager(grok.Role): |
---|
112 | grok.name('waeup.ExportManager') |
---|
113 | grok.title(u'Export Manager') |
---|
114 | grok.permissions('waeup.manageDataCenter', |
---|
115 | 'waeup.exportData') |
---|
116 | |
---|
117 | class UsersManager(grok.Role): |
---|
118 | grok.name('waeup.UsersManager') |
---|
119 | grok.title(u'Users Manager') |
---|
120 | grok.permissions('waeup.manageUsers', |
---|
121 | 'waeup.editUser') |
---|
122 | |
---|
123 | class WorkflowManager(grok.Role): |
---|
124 | grok.name('waeup.WorkflowManager') |
---|
125 | grok.title(u'Workflow Manager') |
---|
126 | grok.permissions('waeup.triggerTransition') |
---|
127 | |
---|
128 | class PortalManager(grok.Role): |
---|
129 | grok.name('waeup.PortalManager') |
---|
130 | grok.title(u'Portal Manager') |
---|
131 | grok.permissions('waeup.managePortal', |
---|
132 | 'waeup.manageUsers', |
---|
133 | 'waeup.viewProducts', 'waeup.manageProducts', |
---|
134 | 'waeup.viewDocuments', 'waeup.manageDocuments', |
---|
135 | 'waeup.manageDataCenter', |
---|
136 | 'waeup.importData', |
---|
137 | 'waeup.exportData', |
---|
138 | 'waeup.managePortalConfiguration', |
---|
139 | 'waeup.editUser', |
---|
140 | 'waeup.manageReports', |
---|
141 | 'waeup.manageJobs', |
---|
142 | 'waeup.viewCustomer', 'waeup.viewCustomers', |
---|
143 | 'waeup.manageCustomer', 'waeup.viewCustomersContainer', |
---|
144 | 'waeup.editCustomerDocuments', 'waeup.uploadCustomerFile', |
---|
145 | 'waeup.triggerTransition', |
---|
146 | 'waeup.viewCustomersTab', |
---|
147 | 'waeup.editContracts' |
---|
148 | ) |
---|
149 | |
---|
150 | class CCOfficer(grok.Role): |
---|
151 | """This is basically a copy of the the PortalManager class. We exclude some |
---|
152 | 'dangerous' permissions by commenting them out. |
---|
153 | """ |
---|
154 | grok.baseclass() |
---|
155 | grok.name('waeup.CCOfficer') |
---|
156 | grok.title(u'Computer Center Officer') |
---|
157 | grok.permissions(#'waeup.managePortal', |
---|
158 | #'waeup.manageUsers', |
---|
159 | 'waeup.viewProducts', 'waeup.manageProducts', |
---|
160 | 'waeup.viewDocuments', 'waeup.manageDocuments', |
---|
161 | #'waeup.manageACBatches', |
---|
162 | 'waeup.manageDataCenter', |
---|
163 | #'waeup.importData', |
---|
164 | 'waeup.exportData', |
---|
165 | 'waeup.managePortalConfiguration', |
---|
166 | #'waeup.editUser', |
---|
167 | 'waeup.manageReports', |
---|
168 | #'waeup.manageJobs', |
---|
169 | 'waeup.viewCustomer', 'waeup.viewCustomers', |
---|
170 | 'waeup.manageCustomer', 'waeup.viewCustomersContainer', |
---|
171 | 'waeup.editCustomerDocuments', 'waeup.uploadCustomerFile', |
---|
172 | 'waeup.triggerTransition', |
---|
173 | 'waeup.viewCustomersTab', |
---|
174 | 'waeup.editContracts' |
---|
175 | ) |
---|
176 | |
---|
177 | def get_all_roles(): |
---|
178 | """Return a list of tuples ``<ROLE-NAME>, <ROLE>``. |
---|
179 | """ |
---|
180 | return getUtilitiesFor(IRole) |
---|
181 | |
---|
182 | def get_waeup_roles(also_local=False): |
---|
183 | """Get all Ikoba roles. |
---|
184 | |
---|
185 | Ikoba roles are ordinary roles whose id by convention starts with |
---|
186 | a ``waeup.`` prefix. |
---|
187 | |
---|
188 | If `also_local` is ``True`` (``False`` by default), also local |
---|
189 | roles are returned. Local Ikoba roles are such whose id starts |
---|
190 | with ``waeup.local.`` prefix (this is also a convention). |
---|
191 | |
---|
192 | Returns a generator of the found roles. |
---|
193 | """ |
---|
194 | for name, item in get_all_roles(): |
---|
195 | if not name.startswith('waeup.'): |
---|
196 | # Ignore non-Ikoba roles... |
---|
197 | continue |
---|
198 | if not also_local and name.startswith('waeup.local.'): |
---|
199 | # Ignore local roles... |
---|
200 | continue |
---|
201 | yield item |
---|
202 | |
---|
203 | def get_waeup_role_names(): |
---|
204 | """Get the ids of all Ikoba roles. |
---|
205 | |
---|
206 | See :func:`get_waeup_roles` for what a 'IkobaRole' is. |
---|
207 | |
---|
208 | This function returns a sorted list of Ikoba role names. |
---|
209 | """ |
---|
210 | return sorted([x.id for x in get_waeup_roles()]) |
---|
211 | |
---|
212 | class LocalRolesAssignable(grok.Adapter): |
---|
213 | """Default implementation for `ILocalRolesAssignable`. |
---|
214 | |
---|
215 | This adapter returns a list for dictionaries for objects for which |
---|
216 | we want to know the roles assignable to them locally. |
---|
217 | |
---|
218 | The returned dicts contain a ``name`` and a ``title`` entry which |
---|
219 | give a role (``name``) and a description, for which kind of users |
---|
220 | the permission is meant to be used (``title``). |
---|
221 | |
---|
222 | Having this adapter registered we make sure, that for each normal |
---|
223 | object we get a valid `ILocalRolesAssignable` adapter. |
---|
224 | |
---|
225 | Objects that want to offer certain local roles, can do so by |
---|
226 | setting a (preferably class-) attribute to a list of role ids. |
---|
227 | |
---|
228 | You can also define different adapters for different contexts to |
---|
229 | have different role lookup mechanisms become available. But in |
---|
230 | normal cases it should be sufficient to use this basic adapter. |
---|
231 | """ |
---|
232 | grok.context(Interface) |
---|
233 | grok.provides(ILocalRolesAssignable) |
---|
234 | |
---|
235 | _roles = [] |
---|
236 | |
---|
237 | def __init__(self, context): |
---|
238 | self.context = context |
---|
239 | role_ids = getattr(context, 'local_roles', self._roles) |
---|
240 | self._roles = [(name, role) for name, role in get_all_roles() |
---|
241 | if name in role_ids] |
---|
242 | return |
---|
243 | |
---|
244 | def __call__(self): |
---|
245 | """Get a list of dictionaries containing ``names`` (the roles to |
---|
246 | assign) and ``titles`` (some description of the type of user |
---|
247 | to assign each role to). |
---|
248 | """ |
---|
249 | list_of_dict = [dict( |
---|
250 | name=name, |
---|
251 | title=role.title, |
---|
252 | description=role.description) |
---|
253 | for name, role in self._roles] |
---|
254 | return sorted(list_of_dict, key=lambda x: x['name']) |
---|
255 | |
---|
256 | def get_all_users(): |
---|
257 | """Get a list of dictionaries. |
---|
258 | """ |
---|
259 | users = sorted(grok.getSite()['users'].items(), key=lambda x: x[1].title) |
---|
260 | for key, val in users: |
---|
261 | yield(dict(name=key, val=val)) |
---|
262 | |
---|
263 | def get_users_with_local_roles(context): |
---|
264 | """Get a list of dicts representing the local roles set for `context`. |
---|
265 | |
---|
266 | Each dict returns `user_name`, `user_title`, `local_role`, |
---|
267 | `local_role_title`, and `setting` for each entry in the local |
---|
268 | roles map of the `context` object. |
---|
269 | """ |
---|
270 | try: |
---|
271 | role_map = IPrincipalRoleMap(context) |
---|
272 | except TypeError: |
---|
273 | # no map no roles. |
---|
274 | raise StopIteration |
---|
275 | for local_role, user_name, setting in role_map.getPrincipalsAndRoles(): |
---|
276 | user = grok.getSite()['users'].get(user_name,None) |
---|
277 | user_title = getattr(user, 'title', user_name) |
---|
278 | local_role_title = getattr( |
---|
279 | dict(get_all_roles()).get(local_role, None), 'title', None) |
---|
280 | yield dict(user_name = user_name, |
---|
281 | user_title = user_title, |
---|
282 | local_role = local_role, |
---|
283 | local_role_title = local_role_title, |
---|
284 | setting = setting) |
---|
285 | |
---|
286 | def get_users_with_role(role, context): |
---|
287 | """Get a list of dicts representing the usres who have been granted |
---|
288 | a role for `context`. |
---|
289 | """ |
---|
290 | try: |
---|
291 | role_map = IPrincipalRoleMap(context) |
---|
292 | except TypeError: |
---|
293 | # no map no roles. |
---|
294 | raise StopIteration |
---|
295 | for user_name, setting in role_map.getPrincipalsForRole(role): |
---|
296 | user = grok.getSite()['users'].get(user_name,None) |
---|
297 | user_title = getattr(user, 'title', user_name) |
---|
298 | user_email = getattr(user, 'email', None) |
---|
299 | yield dict(user_name = user_name, |
---|
300 | user_title = user_title, |
---|
301 | user_email = user_email, |
---|
302 | setting = setting) |
---|