1 | .. _security_policy: |
---|
2 | |
---|
3 | Security |
---|
4 | ******** |
---|
5 | |
---|
6 | .. seealso:: |
---|
7 | |
---|
8 | :ref:`Security Doctests <security_txt>` |
---|
9 | |
---|
10 | Kofa has a very efficient security machinery. The machinery does not |
---|
11 | perform authorization checks on the content objects themselves stored |
---|
12 | in the database, but, restricts the usage of views, i.e. web pages and |
---|
13 | forms which are needed to view or edit data. Views are protected by |
---|
14 | permissions the user must have to use the view. Instead of assigning |
---|
15 | permissions seperately to users, permissions are bundled into sets of |
---|
16 | permissions, so-called roles which can be assigned to users through |
---|
17 | the web interface. |
---|
18 | |
---|
19 | It is important to note that permissions do not include other |
---|
20 | permissions. Only roles 'include' permissions. A 'manage' permission, |
---|
21 | for example, does not automatically enable users to open pages which |
---|
22 | merely display the data. These pages have their own 'view' |
---|
23 | permission. Another example is the ManagePortal permission described |
---|
24 | below. The name of the permission may lead to believe that users can |
---|
25 | do everything with this permissions. This is not true. It does only |
---|
26 | give access to certain pages which are dedicated to portal managers |
---|
27 | and must not be accessed by any other user. |
---|
28 | |
---|
29 | .. contents:: Table of Contents |
---|
30 | :local: |
---|
31 | |
---|
32 | Permissions |
---|
33 | =========== |
---|
34 | |
---|
35 | The whole set of permission and role classes are described in the |
---|
36 | :py:mod:`Permissions and Roles Module<waeup.kofa.permissions>`. Here |
---|
37 | we describe only a subset of permission classes which are essential |
---|
38 | for the security settings configuration. |
---|
39 | |
---|
40 | General Permissions |
---|
41 | ------------------- |
---|
42 | |
---|
43 | .. autoclass:: waeup.kofa.permissions.Public() |
---|
44 | :noindex: |
---|
45 | |
---|
46 | .. autoclass:: waeup.kofa.permissions.Anonymous() |
---|
47 | :noindex: |
---|
48 | |
---|
49 | .. autoclass:: waeup.kofa.permissions.Authenticated() |
---|
50 | :noindex: |
---|
51 | |
---|
52 | .. autoclass:: waeup.kofa.permissions.ManageUsers() |
---|
53 | :noindex: |
---|
54 | |
---|
55 | .. autoclass:: waeup.kofa.permissions.EditUser() |
---|
56 | :noindex: |
---|
57 | |
---|
58 | .. autoclass:: waeup.kofa.permissions.ManagePortal() |
---|
59 | :noindex: |
---|
60 | |
---|
61 | .. autoclass:: waeup.kofa.permissions.ViewAcademics() |
---|
62 | :noindex: |
---|
63 | |
---|
64 | .. autoclass:: waeup.kofa.permissions.ManageAcademics() |
---|
65 | :noindex: |
---|
66 | |
---|
67 | .. autoclass:: waeup.kofa.permissions.ManagePortalConfiguration() |
---|
68 | :noindex: |
---|
69 | |
---|
70 | .. autoclass:: waeup.kofa.permissions.ManageDataCenter() |
---|
71 | :noindex: |
---|
72 | |
---|
73 | .. autoclass:: waeup.kofa.permissions.ExportData() |
---|
74 | :noindex: |
---|
75 | |
---|
76 | .. autoclass:: waeup.kofa.permissions.ImportData() |
---|
77 | :noindex: |
---|
78 | |
---|
79 | .. autoclass:: waeup.kofa.permissions.TriggerTransition() |
---|
80 | :noindex: |
---|
81 | |
---|
82 | .. autoclass:: waeup.kofa.permissions.ShowStudents() |
---|
83 | :noindex: |
---|
84 | |
---|
85 | .. autoclass:: waeup.kofa.permissions.ExportPaymentsOverview() |
---|
86 | :noindex: |
---|
87 | |
---|
88 | .. autoclass:: waeup.kofa.permissions.ExportBursaryData() |
---|
89 | :noindex: |
---|
90 | |
---|
91 | .. autoclass:: waeup.kofa.reports.HandleReports() |
---|
92 | :noindex: |
---|
93 | |
---|
94 | .. autoclass:: waeup.kofa.reports.ManageReports() |
---|
95 | :noindex: |
---|
96 | |
---|
97 | Accommodation Section Permissions |
---|
98 | --------------------------------- |
---|
99 | |
---|
100 | .. autoclass:: waeup.kofa.hostels.permissions.ViewHostels() |
---|
101 | :noindex: |
---|
102 | |
---|
103 | .. autoclass:: waeup.kofa.hostels.permissions.ManageHostels() |
---|
104 | :noindex: |
---|
105 | |
---|
106 | .. autoclass:: waeup.kofa.hostels.permissions.ExportAccommodationData() |
---|
107 | :noindex: |
---|
108 | |
---|
109 | Applicants Section Permissions |
---|
110 | ------------------------------ |
---|
111 | |
---|
112 | .. autoclass:: waeup.kofa.applicants.permissions.ViewApplication() |
---|
113 | :noindex: |
---|
114 | |
---|
115 | .. autoclass:: waeup.kofa.applicants.permissions.HandleApplication() |
---|
116 | :noindex: |
---|
117 | |
---|
118 | .. autoclass:: waeup.kofa.applicants.permissions.ManageApplication() |
---|
119 | :noindex: |
---|
120 | |
---|
121 | .. autoclass:: waeup.kofa.applicants.permissions.PayApplicant() |
---|
122 | :noindex: |
---|
123 | |
---|
124 | .. autoclass:: waeup.kofa.applicants.permissions.ViewApplicationStatistics() |
---|
125 | :noindex: |
---|
126 | |
---|
127 | .. autoclass:: waeup.kofa.applicants.permissions.CreateStudents() |
---|
128 | :noindex: |
---|
129 | |
---|
130 | Students Section Permissions |
---|
131 | ---------------------------- |
---|
132 | |
---|
133 | .. autoclass:: waeup.kofa.students.permissions.ViewStudent() |
---|
134 | :noindex: |
---|
135 | |
---|
136 | .. autoclass:: waeup.kofa.students.permissions.HandleStudent() |
---|
137 | :noindex: |
---|
138 | |
---|
139 | .. autoclass:: waeup.kofa.students.permissions.ViewStudentsContainer() |
---|
140 | :noindex: |
---|
141 | |
---|
142 | .. autoclass:: waeup.kofa.students.permissions.ManageStudent() |
---|
143 | :noindex: |
---|
144 | |
---|
145 | .. autoclass:: waeup.kofa.students.permissions.PayStudent() |
---|
146 | :noindex: |
---|
147 | |
---|
148 | .. autoclass:: waeup.kofa.students.permissions.HandleAccommodation() |
---|
149 | :noindex: |
---|
150 | |
---|
151 | .. autoclass:: waeup.kofa.students.permissions.UploadStudentFile() |
---|
152 | :noindex: |
---|
153 | |
---|
154 | .. autoclass:: waeup.kofa.students.permissions.LoginAsStudent() |
---|
155 | :noindex: |
---|
156 | |
---|
157 | .. autoclass:: waeup.kofa.students.permissions.EditStudyLevel() |
---|
158 | :noindex: |
---|
159 | |
---|
160 | .. autoclass:: waeup.kofa.students.permissions.ClearStudent() |
---|
161 | :noindex: |
---|
162 | |
---|
163 | .. autoclass:: waeup.kofa.students.permissions.ValidateStudent() |
---|
164 | :noindex: |
---|
165 | |
---|
166 | .. autoclass:: waeup.kofa.students.permissions.ViewTranscript() |
---|
167 | :noindex: |
---|
168 | |
---|
169 | .. autoclass:: waeup.kofa.students.permissions.DownloadTranscript() |
---|
170 | :noindex: |
---|
171 | |
---|
172 | .. autoclass:: waeup.kofa.students.permissions.ProcessTranscript() |
---|
173 | :noindex: |
---|
174 | |
---|
175 | .. autoclass:: waeup.kofa.students.permissions.SignTranscript() |
---|
176 | :noindex: |
---|
177 | |
---|
178 | Global Roles |
---|
179 | ============ |
---|
180 | |
---|
181 | Global or site roles are assigned portal-wide. In contrast to local |
---|
182 | roles, users have this role in every context. |
---|
183 | |
---|
184 | Many global roles do only bundle one or two permissions. The objective |
---|
185 | behind is to share responsibilities and distribute tasks. |
---|
186 | |
---|
187 | Global roles are being assigned via the user manage form page. |
---|
188 | |
---|
189 | Global General Roles |
---|
190 | -------------------- |
---|
191 | |
---|
192 | .. autoclass:: waeup.kofa.permissions.AcademicsOfficer() |
---|
193 | :noindex: |
---|
194 | |
---|
195 | .. autoclass:: waeup.kofa.permissions.AcademicsManager() |
---|
196 | :noindex: |
---|
197 | |
---|
198 | .. autoclass:: waeup.kofa.permissions.DataCenterManager() |
---|
199 | :noindex: |
---|
200 | |
---|
201 | .. autoclass:: waeup.kofa.permissions.ImportManager() |
---|
202 | :noindex: |
---|
203 | |
---|
204 | .. autoclass:: waeup.kofa.permissions.ExportManager() |
---|
205 | :noindex: |
---|
206 | |
---|
207 | .. autoclass:: waeup.kofa.permissions.ACManager() |
---|
208 | :noindex: |
---|
209 | |
---|
210 | .. autoclass:: waeup.kofa.permissions.UsersManager() |
---|
211 | :noindex: |
---|
212 | |
---|
213 | .. autoclass:: waeup.kofa.permissions.WorkflowManager() |
---|
214 | :noindex: |
---|
215 | |
---|
216 | .. autoclass:: waeup.kofa.permissions.BursaryOfficer() |
---|
217 | :noindex: |
---|
218 | |
---|
219 | .. autoclass:: waeup.kofa.reports.ReportsOfficer() |
---|
220 | :noindex: |
---|
221 | |
---|
222 | .. autoclass:: waeup.kofa.reports.ReportsManager() |
---|
223 | :noindex: |
---|
224 | |
---|
225 | In contrast to these specialized sets of permissions, there are two |
---|
226 | sets which delegate extensive powers on portal managers. |
---|
227 | |
---|
228 | .. autoclass:: waeup.kofa.permissions.PortalManager() |
---|
229 | :noindex: |
---|
230 | |
---|
231 | .. autoclass:: waeup.kofa.permissions.CCOfficer() |
---|
232 | :noindex: |
---|
233 | |
---|
234 | Global Accommodation Section Roles |
---|
235 | ---------------------------------- |
---|
236 | |
---|
237 | .. autoclass:: waeup.kofa.hostels.permissions.AccommodationOfficer() |
---|
238 | :noindex: |
---|
239 | |
---|
240 | .. autoclass:: waeup.kofa.hostels.permissions.AccommodationViewer() |
---|
241 | :noindex: |
---|
242 | |
---|
243 | Global Applicants Section Roles |
---|
244 | ------------------------------- |
---|
245 | |
---|
246 | Global Applicants Section Roles are assigned portal-wide (globally) |
---|
247 | but do actually only allocate permissions in the applicants section. |
---|
248 | |
---|
249 | .. autoclass:: waeup.kofa.applicants.permissions.ApplicantRole() |
---|
250 | :noindex: |
---|
251 | |
---|
252 | .. autoclass:: waeup.kofa.applicants.permissions.ApplicationsOfficer() |
---|
253 | :noindex: |
---|
254 | |
---|
255 | .. autoclass:: waeup.kofa.applicants.permissions.ApplicationsManager() |
---|
256 | :noindex: |
---|
257 | |
---|
258 | .. autoclass:: waeup.kofa.applicants.permissions.StudentsCreator() |
---|
259 | :noindex: |
---|
260 | |
---|
261 | Global Students Section Roles |
---|
262 | ----------------------------- |
---|
263 | |
---|
264 | Global Students Section Roles are assigned portal-wide (globally) but |
---|
265 | do actually only allocate permissions in the students section. |
---|
266 | |
---|
267 | .. autoclass:: waeup.kofa.students.permissions.StudentRole() |
---|
268 | :noindex: |
---|
269 | |
---|
270 | .. autoclass:: waeup.kofa.students.permissions.StudentsOfficer() |
---|
271 | :noindex: |
---|
272 | |
---|
273 | .. autoclass:: waeup.kofa.students.permissions.StudentsManager() |
---|
274 | :noindex: |
---|
275 | |
---|
276 | .. autoclass:: waeup.kofa.students.permissions.StudentsClearanceOfficer() |
---|
277 | :noindex: |
---|
278 | |
---|
279 | .. autoclass:: waeup.kofa.students.permissions.StudentsCourseAdviser() |
---|
280 | :noindex: |
---|
281 | |
---|
282 | .. autoclass:: waeup.kofa.students.permissions.StudentImpersonator() |
---|
283 | :noindex: |
---|
284 | |
---|
285 | .. autoclass:: waeup.kofa.students.permissions.TranscriptOfficer() |
---|
286 | :noindex: |
---|
287 | |
---|
288 | .. autoclass:: waeup.kofa.students.permissions.TranscriptSignee() |
---|
289 | :noindex: |
---|
290 | |
---|
291 | .. _local_roles: |
---|
292 | |
---|
293 | Local Roles and Dynamic Role Assignment |
---|
294 | ======================================= |
---|
295 | |
---|
296 | In contrast to global roles, which are assigned portal-wide, local |
---|
297 | role permissions are gained for a specific context. |
---|
298 | |
---|
299 | Some local roles serve a second purpose. At first glance it appears |
---|
300 | strange that some of these 'odd' roles do not give more permissions |
---|
301 | than the user already has due to other roles. Their real purpose is to |
---|
302 | delegate permissions to the students or applicants section. If a user |
---|
303 | has for example the LocalStudentsManager role described below at |
---|
304 | department level, s/he automatically gets the StudentsManager role for |
---|
305 | those students studying in this department. We call this a **dynamic |
---|
306 | role**. In contrast to static global or local roles, dynamic roles are |
---|
307 | not stored in the database, they are dynamically assigned. |
---|
308 | |
---|
309 | Local roles are assigned either automatically by the system during |
---|
310 | user object setup or manually through the web interface. The |
---|
311 | automatically assigned local roles are: |
---|
312 | |
---|
313 | .. autoclass:: waeup.kofa.permissions.Owner() |
---|
314 | :noindex: |
---|
315 | |
---|
316 | .. autoclass:: waeup.kofa.applicants.permissions.ApplicationOwner() |
---|
317 | :noindex: |
---|
318 | |
---|
319 | .. autoclass:: waeup.kofa.students.permissions.StudentRecordOwner() |
---|
320 | :noindex: |
---|
321 | |
---|
322 | All other local roles must be assigned manually via context manage form pages. |
---|
323 | |
---|
324 | .. autoclass:: waeup.kofa.permissions.ApplicationsManager() |
---|
325 | :noindex: |
---|
326 | |
---|
327 | .. autoclass:: waeup.kofa.permissions.DepartmentOfficer() |
---|
328 | :noindex: |
---|
329 | |
---|
330 | .. autoclass:: waeup.kofa.permissions.DepartmentManager() |
---|
331 | :noindex: |
---|
332 | |
---|
333 | .. autoclass:: waeup.kofa.permissions.Lecturer() |
---|
334 | :noindex: |
---|
335 | |
---|
336 | The following local roles do also delegate permissions to the student |
---|
337 | section. In other words, dynamic roles are assigned. |
---|
338 | |
---|
339 | .. autoclass:: waeup.kofa.permissions.ClearanceOfficer() |
---|
340 | :noindex: |
---|
341 | |
---|
342 | .. autoclass:: waeup.kofa.permissions.LocalStudentsManager() |
---|
343 | :noindex: |
---|
344 | |
---|
345 | .. autoclass:: waeup.kofa.permissions.LocalWorkflowManager() |
---|
346 | :noindex: |
---|
347 | |
---|
348 | .. autoclass:: waeup.kofa.permissions.LocalReportsOfficer() |
---|
349 | :noindex: |
---|
350 | |
---|
351 | .. autoclass:: waeup.kofa.permissions.UGClearanceOfficer() |
---|
352 | :noindex: |
---|
353 | |
---|
354 | .. autoclass:: waeup.kofa.permissions.PGClearanceOfficer() |
---|
355 | :noindex: |
---|
356 | |
---|
357 | .. autoclass:: waeup.kofa.permissions.CourseAdviser100() |
---|
358 | :noindex: |
---|
359 | |
---|
360 | .. autoclass:: waeup.kofa.permissions.LocalTranscriptOfficer() |
---|
361 | :noindex: |
---|
362 | |
---|
363 | .. autoclass:: waeup.kofa.permissions.LocalTranscriptSignee() |
---|
364 | :noindex: |
---|