[7195] | 1 | ## $Id: certificate.py 8967 2012-07-10 07:03:19Z 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 | ## |
---|
[7819] | 18 | """Kofa certificates |
---|
[4789] | 19 | """ |
---|
| 20 | import grok |
---|
[7209] | 21 | from zope.event import notify |
---|
[6296] | 22 | from zope.catalog.interfaces import ICatalog |
---|
[8299] | 23 | from zope.intid.interfaces import IIntIds |
---|
| 24 | from zope.schema import getFields |
---|
[4789] | 25 | from zope.component import getUtility |
---|
| 26 | from zope.component.interfaces import IFactory, ComponentLookupError |
---|
| 27 | from zope.interface import implementedBy |
---|
[8299] | 28 | from waeup.kofa.interfaces import IKofaPluggable |
---|
[7811] | 29 | from waeup.kofa.university.interfaces import ( |
---|
[7207] | 30 | ICertificate, ICertificateAdd, ICertificateCourse) |
---|
[7811] | 31 | from waeup.kofa.university.vocabularies import course_levels |
---|
[4789] | 32 | |
---|
| 33 | class Certificate(grok.Container): |
---|
| 34 | """A certificate. |
---|
| 35 | """ |
---|
[5953] | 36 | grok.implements(ICertificate, ICertificateAdd) |
---|
[4789] | 37 | |
---|
[7334] | 38 | @property # Make this method read_only and looking like an attr. |
---|
[7751] | 39 | def local_roles(self): |
---|
[7334] | 40 | return ['waeup.local.CourseAdviser100', |
---|
| 41 | 'waeup.local.CourseAdviser200', |
---|
| 42 | 'waeup.local.CourseAdviser300', |
---|
| 43 | 'waeup.local.CourseAdviser400', |
---|
| 44 | 'waeup.local.CourseAdviser500', |
---|
| 45 | 'waeup.local.CourseAdviser600', |
---|
| 46 | ] |
---|
| 47 | |
---|
[4789] | 48 | def __init__(self, code=u'NA', title=u'Unnamed Certificate', |
---|
[4993] | 49 | study_mode=None, start_level=None, |
---|
[8299] | 50 | end_level=None, application_category=None, |
---|
[8967] | 51 | school_fee_1=None, school_fee_2=None, |
---|
| 52 | school_fee_3=None, school_fee_4=None): |
---|
[4789] | 53 | super(Certificate, self).__init__() |
---|
| 54 | self.code = code |
---|
| 55 | self.title = title |
---|
| 56 | self.study_mode = study_mode |
---|
| 57 | self.start_level = start_level |
---|
| 58 | self.end_level = end_level |
---|
| 59 | self.application_category = application_category |
---|
[8299] | 60 | self.school_fee_1 = school_fee_1 |
---|
| 61 | self.school_fee_2 = school_fee_2 |
---|
[8967] | 62 | self.school_fee_3 = school_fee_3 |
---|
| 63 | self.school_fee_4 = school_fee_4 |
---|
[4789] | 64 | |
---|
[6008] | 65 | def longtitle(self): |
---|
[7349] | 66 | return "%s (%s)" % (self.title,self.code) |
---|
| 67 | |
---|
[8920] | 68 | def addCertCourse(self, course, level=100, mandatory=True): |
---|
| 69 | """Add a certificate course. |
---|
[4789] | 70 | """ |
---|
| 71 | code = "%s_%s" % (course.code, level) |
---|
[7665] | 72 | self[code] = CertificateCourse(course, level, mandatory) |
---|
[4789] | 73 | self[code].__parent__ = self |
---|
| 74 | self[code].__name__ = code |
---|
| 75 | self._p_changed = True |
---|
| 76 | |
---|
[8920] | 77 | def delCertCourse(self, code, level=None): |
---|
| 78 | """Delete a certificate course denoted by its code. |
---|
[4789] | 79 | """ |
---|
[6980] | 80 | keys = list(self.keys()) # create list copy |
---|
| 81 | for key in keys: |
---|
[4789] | 82 | if self[key].getCourseCode() != code: |
---|
| 83 | continue |
---|
| 84 | if level is not None and str(self[key].level) != str(level): |
---|
| 85 | # found a course with correct key but wrong level... |
---|
| 86 | continue |
---|
| 87 | del self[key] |
---|
| 88 | self._p_changed = True |
---|
| 89 | return |
---|
| 90 | |
---|
| 91 | class CertificateFactory(grok.GlobalUtility): |
---|
| 92 | """A factory for certificates. |
---|
| 93 | """ |
---|
| 94 | grok.implements(IFactory) |
---|
| 95 | grok.name(u'waeup.Certificate') |
---|
| 96 | title = u"Create a new certificate.", |
---|
| 97 | description = u"This factory instantiates new certificate instances." |
---|
| 98 | |
---|
| 99 | def __call__(self, *args, **kw): |
---|
| 100 | return Certificate(*args, **kw) |
---|
| 101 | |
---|
| 102 | def getInterfaces(self): |
---|
| 103 | return implementedBy(Certificate) |
---|
| 104 | |
---|
| 105 | class CertificateCourse(grok.Model): |
---|
| 106 | grok.implements(ICertificateCourse) |
---|
| 107 | |
---|
[7665] | 108 | def __init__(self, course=None, level=100, mandatory=True): |
---|
[4789] | 109 | self.course = course |
---|
| 110 | self.level = level |
---|
[7665] | 111 | self.mandatory = mandatory |
---|
[4789] | 112 | |
---|
| 113 | def getCourseCode(self): |
---|
| 114 | """Get code of a course. |
---|
| 115 | """ |
---|
| 116 | return self.course.code |
---|
[7349] | 117 | |
---|
[6008] | 118 | def longtitle(self): |
---|
| 119 | return "%s in level %s" % (self.course.code, |
---|
[7349] | 120 | course_levels.getTerm(self.level).title) |
---|
| 121 | |
---|
[4789] | 122 | class CertificateCourseFactory(grok.GlobalUtility): |
---|
| 123 | """A factory for certificate courses. |
---|
| 124 | """ |
---|
| 125 | grok.implements(IFactory) |
---|
| 126 | grok.name(u'waeup.CertificateCourse') |
---|
| 127 | title = u"Create a new certificate course.", |
---|
| 128 | description = u"This factory instantiates new certificate courses." |
---|
| 129 | |
---|
| 130 | def __call__(self, *args, **kw): |
---|
| 131 | return CertificateCourse(*args, **kw) |
---|
| 132 | |
---|
| 133 | def getInterfaces(self): |
---|
| 134 | return implementedBy(CertificateCourse) |
---|
[7209] | 135 | |
---|
| 136 | @grok.subscribe(ICertificate, grok.IObjectRemovedEvent) |
---|
| 137 | def handle_certificate_removed(certificate, event): |
---|
| 138 | """If a certificate is deleted, we make sure that also referrers to |
---|
| 139 | student studycourse objects are removed. |
---|
| 140 | """ |
---|
| 141 | code = certificate.code |
---|
| 142 | |
---|
| 143 | # Find all student studycourses that refer to given certificate... |
---|
| 144 | try: |
---|
| 145 | cat = getUtility(ICatalog, name='students_catalog') |
---|
| 146 | except ComponentLookupError: |
---|
| 147 | # catalog not available. This might happen during tests. |
---|
| 148 | return |
---|
| 149 | |
---|
| 150 | results = cat.searchResults(certcode=(code, code)) |
---|
| 151 | for student in results: |
---|
| 152 | # Remove that referrer... |
---|
| 153 | studycourse = student['studycourse'] |
---|
| 154 | studycourse.certificate = None |
---|
| 155 | notify(grok.ObjectModifiedEvent(student)) |
---|
[8737] | 156 | student.__parent__.logger.info( |
---|
| 157 | 'ObjectRemovedEvent - %s - removed: certificate' % student.__name__) |
---|
[7349] | 158 | return |
---|
[8299] | 159 | |
---|
| 160 | class CertificatesPlugin(grok.GlobalUtility): |
---|
| 161 | """A plugin that updates certificates. |
---|
| 162 | """ |
---|
| 163 | |
---|
| 164 | grok.implements(IKofaPluggable) |
---|
| 165 | grok.name('certificates') |
---|
| 166 | |
---|
[8310] | 167 | deprecated_attributes = [] |
---|
| 168 | |
---|
[8299] | 169 | def setup(self, site, name, logger): |
---|
| 170 | return |
---|
| 171 | |
---|
| 172 | def update(self, site, name, logger): |
---|
| 173 | cat = getUtility(ICatalog, name='certificates_catalog') |
---|
| 174 | results = cat.apply({'code':(None,None)}) |
---|
| 175 | uidutil = getUtility(IIntIds, context=cat) |
---|
| 176 | items = getFields(ICertificate).items() |
---|
| 177 | for r in results: |
---|
| 178 | o = uidutil.getObject(r) |
---|
[8310] | 179 | # Add new attributes |
---|
[8299] | 180 | for i in items: |
---|
[8310] | 181 | if not hasattr(o,i[0]): |
---|
[8299] | 182 | setattr(o,i[0],i[1].missing_value) |
---|
| 183 | logger.info( |
---|
| 184 | 'CertificatesPlugin: %s attribute %s added.' % ( |
---|
| 185 | o.code,i[0])) |
---|
[8310] | 186 | # Remove deprecated attributes |
---|
| 187 | for i in self.deprecated_attributes: |
---|
| 188 | try: |
---|
| 189 | delattr(o,i) |
---|
| 190 | logger.info( |
---|
| 191 | 'CertificatesPlugin: %s attribute %s deleted.' % ( |
---|
| 192 | o.code,i)) |
---|
| 193 | except AttributeError: |
---|
| 194 | pass |
---|
[8299] | 195 | return |
---|