source: main/waeup.kofa/trunk/src/waeup/kofa/university/vocabularies.py @ 16431

Last change on this file since 16431 was 15446, checked in by Henrik Bettermann, 5 years ago

Add level 0 (None) to course levels.

  • Property svn:keywords set to Id
File size: 4.4 KB
Line 
1## $Id: vocabularies.py 15446 2019-06-03 10:32:23Z 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"""Vocabularies and sources for the academic section.
19"""
20from zc.sourcefactory.basic import BasicSourceFactory
21from zope.catalog.interfaces import ICatalog
22from zope.component import getUtility, queryUtility
23from waeup.kofa.interfaces import (
24    SimpleKofaVocabulary, IKofaUtils, ContextualDictSourceFactoryBase)
25from waeup.kofa.interfaces import MessageFactory as _
26from waeup.kofa.sourcefactory import SmartBasicContextualSourceFactory
27from waeup.kofa.utils.utils import KofaUtils
28
29course_levels = SimpleKofaVocabulary(
30    (_('None'),0),
31    (_('Pre-Studies'),10),
32    (_('100 (Year 1)'),100),
33    (_('200 (Year 2)'),200),
34    (_('300 (Year 3)'),300),
35    (_('400 (Year 4)'),400),
36    (_('500 (Year 5)'),500),
37    (_('600 (Year 6)'),600),
38    (_('700 (Year 7)'),700),
39    (_('800 (Year 8)'),800),
40    (_('900 (Year 9)'),900),
41    (_('Postgraduate Level'),999),
42    )
43
44class SemesterSource(ContextualDictSourceFactoryBase):
45    """An institution type source delivers semester and/or term descriptors.
46    """
47    #: name of dict to deliver from kofa utils.
48    DICT_NAME = 'SEMESTER_DICT'
49
50class InstTypeSource(ContextualDictSourceFactoryBase):
51    """An institution type source delivers types of institutions
52    in the portal.
53    """
54    #: name of dict to deliver from kofa utils.
55    DICT_NAME = 'INST_TYPES_DICT'
56
57class AppCatSource(ContextualDictSourceFactoryBase):
58    """A application category source delivers all application categories
59    provided in the portal.
60    """
61    #: name of dict to deliver from kofa utils.
62    DICT_NAME = 'APP_CATS_DICT'
63
64class StudyModeSource(ContextualDictSourceFactoryBase):
65    """A study modes source delivers all study modes provided
66    in the portal.
67    """
68    #: name of dict to deliver from kofa utils.
69    DICT_NAME = 'STUDY_MODES_DICT'
70
71class DegreeSource(ContextualDictSourceFactoryBase):
72    """A source for certificate degrees
73    """
74    #: name of dict to deliver from kofa utils.
75    DICT_NAME = 'DEGREES_DICT'
76
77    def getTitle(self, context, value):
78        utils = getUtility(IKofaUtils)
79        return "%s (%s)" % (getattr(utils, self.DICT_NAME)[value], value)
80
81class CourseSource(BasicSourceFactory):
82    """A course source delivers all courses inside the portal by looking
83       up a catalog.
84    """
85    def getValues(self):
86        catalog = getUtility(ICatalog, name='courses_catalog')
87        return sorted(list(
88                catalog.searchResults(
89                    code=(None, None))),key=lambda value: value.code)
90
91    def getToken(self, value):
92        return value.code
93
94    def getTitle(self, value):
95        return "%s - %s" % (value.code, value.title[:64])
96
97class CourseCategorySource(ContextualDictSourceFactoryBase):
98    """A course category source provides additional information on
99    the course.
100    """
101    #: name of dict to deliver from kofa utils.
102    DICT_NAME = 'COURSE_CATEGORY_DICT'
103
104
105class CertificateSource(SmartBasicContextualSourceFactory):
106    """A certificate source delivers all certificates provided
107    in the portal.
108    """
109    def getValues(self, context):
110        catalog = getUtility(ICatalog, name='certificates_catalog')
111        return sorted(list(
112            catalog.searchResults(
113                code=(None, None))),
114                      key=lambda value: value.code)
115
116    def getToken(self, context, value):
117        return value.code
118
119    def getTitle(self, context, value):
120        return "%s - %s" % (value.code, value.title)
121
122class SpecialApplicationSource(ContextualDictSourceFactoryBase):
123    """A special application source delivers all types of
124    applications which are not linked with certificates.
125    """
126    #: name of dict to deliver from kofa utils.
127    DICT_NAME = 'SPECIAL_APP_DICT'
Note: See TracBrowser for help on using the repository browser.