[7195] | 1 | ## $Id: department.py 7733 2012-02-29 19:10:48Z uli $ |
---|
| 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 | ## |
---|
[4789] | 18 | """University departments. |
---|
| 19 | """ |
---|
| 20 | import grok |
---|
| 21 | from zope.component.interfaces import IFactory |
---|
| 22 | from zope.interface import implementedBy |
---|
[7681] | 23 | from zope.component import getUtility |
---|
| 24 | from waeup.sirp.university.coursescontainer import CoursesContainer |
---|
| 25 | from waeup.sirp.university.certificatescontainer import CertificatesContainer |
---|
| 26 | from waeup.sirp.interfaces import ISIRPUtils |
---|
[5953] | 27 | from waeup.sirp.university.interfaces import IDepartment, IDepartmentAdd |
---|
[4789] | 28 | |
---|
| 29 | class Department(grok.Container): |
---|
| 30 | """A university department. |
---|
| 31 | """ |
---|
[5953] | 32 | grok.implements(IDepartment, IDepartmentAdd) |
---|
[4789] | 33 | |
---|
[6152] | 34 | @property # Make this method read_only and looking like an attr. |
---|
[7733] | 35 | def local_roles(self): |
---|
[7185] | 36 | return ['waeup.local.DepartmentManager', |
---|
[7334] | 37 | 'waeup.local.ClearanceOfficer', |
---|
| 38 | 'waeup.local.CourseAdviser100', |
---|
| 39 | 'waeup.local.CourseAdviser200', |
---|
| 40 | 'waeup.local.CourseAdviser300', |
---|
| 41 | 'waeup.local.CourseAdviser400', |
---|
| 42 | 'waeup.local.CourseAdviser500', |
---|
| 43 | 'waeup.local.CourseAdviser600', |
---|
| 44 | ] |
---|
[6152] | 45 | |
---|
[4789] | 46 | # A simple counter for ids. |
---|
| 47 | next_id = 0L |
---|
[6152] | 48 | |
---|
[4789] | 49 | def __init__(self, |
---|
| 50 | title=u'Unnamed Department', |
---|
| 51 | title_prefix=u'department', |
---|
| 52 | code=u"NA", **kw): |
---|
| 53 | super(Department, self).__init__(**kw) |
---|
| 54 | self.title = title |
---|
| 55 | self.title_prefix = title_prefix |
---|
| 56 | self.code = code |
---|
[7681] | 57 | self.courses = CoursesContainer() |
---|
[4789] | 58 | self.courses.__parent__ = self |
---|
| 59 | self.courses.__name__ = 'courses' |
---|
[7681] | 60 | self.certificates = CertificatesContainer() |
---|
[4789] | 61 | self.certificates.__parent__ = self |
---|
| 62 | self.certificates.__name__ = 'certificates' |
---|
| 63 | |
---|
| 64 | def traverse(self, name): |
---|
| 65 | """Deliver appropriate containers, if someone wants to go to courses |
---|
| 66 | or departments. |
---|
| 67 | """ |
---|
| 68 | if name == 'courses': |
---|
| 69 | return self.courses |
---|
| 70 | elif name == 'certificates': |
---|
| 71 | return self.certificates |
---|
| 72 | return None |
---|
[6813] | 73 | |
---|
[5988] | 74 | def longtitle(self): |
---|
[7681] | 75 | insttypes_dict = getUtility(ISIRPUtils).getInstTypeDict() |
---|
[6813] | 76 | return "%s %s (%s)" % ( |
---|
[7681] | 77 | insttypes_dict[self.title_prefix], |
---|
[6813] | 78 | self.title, self.code) |
---|
[4789] | 79 | |
---|
[6813] | 80 | |
---|
[4789] | 81 | class DepartmentFactory(grok.GlobalUtility): |
---|
| 82 | """A factory for department containers. |
---|
| 83 | """ |
---|
| 84 | grok.implements(IFactory) |
---|
| 85 | grok.name(u'waeup.Department') |
---|
| 86 | title = u"Create a new department.", |
---|
| 87 | description = u"This factory instantiates new department instances." |
---|
| 88 | |
---|
| 89 | def __call__(self, *args, **kw): |
---|
| 90 | return Department(*args, **kw) |
---|
| 91 | |
---|
| 92 | def getInterfaces(self): |
---|
| 93 | """Get interfaces of objects provided by this factory. |
---|
| 94 | """ |
---|
| 95 | return implementedBy(Department) |
---|