source: main/waeup.kofa/trunk/src/waeup/kofa/interfaces.py @ 13030

Last change on this file since 13030 was 13029, checked in by Henrik Bettermann, 10 years ago

Allow 10 characters in codes and ids.

Add current_coursereg_deadline field.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 42.5 KB
RevLine 
[7193]1## $Id: interfaces.py 13029 2015-06-04 05:42:54Z henrik $
[3521]2##
[7193]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##
[6361]18import os
[7221]19import re
[7702]20import codecs
[9217]21import zc.async.interfaces
[7670]22import zope.i18nmessageid
[6915]23from datetime import datetime
[7063]24from hurry.file.interfaces import IFileRetrieval
[8394]25from hurry.workflow.interfaces import IWorkflowInfo
[4789]26from zc.sourcefactory.basic import BasicSourceFactory
[6147]27from zope import schema
[7233]28from zope.pluggableauth.interfaces import IPrincipalInfo
29from zope.security.interfaces import IGroupClosureAwarePrincipal as IPrincipal
[4789]30from zope.component import getUtility
[4882]31from zope.component.interfaces import IObjectEvent
[9217]32from zope.configuration.fields import Path
33from zope.container.interfaces import INameChooser, IContainer
[8394]34from zope.interface import Interface, Attribute
[7795]35from zope.schema.interfaces import IObject
[4789]36from zope.schema.vocabulary import SimpleVocabulary, SimpleTerm
[8176]37from waeup.kofa.schema import PhoneNumber
[11450]38from waeup.kofa.sourcefactory import SmartBasicContextualSourceFactory
[3521]39
[7811]40_ = MessageFactory = zope.i18nmessageid.MessageFactory('waeup.kofa')
[6990]41
[8214]42DELETION_MARKER = 'XXX'
43IGNORE_MARKER = '<IGNORE>'
[9217]44WAEUP_KEY = 'waeup.kofa'
45VIRT_JOBS_CONTAINER_NAME = 'jobs'
[12901]46DOCLINK = 'http://kofa-doc.waeup.org/userdocs'
[8202]47
[7673]48CREATED = 'created'
49ADMITTED = 'admitted'
50CLEARANCE = 'clearance started'
51REQUESTED = 'clearance requested'
52CLEARED = 'cleared'
53PAID = 'school fee paid'
54RETURNING = 'returning'
55REGISTERED = 'courses registered'
56VALIDATED = 'courses validated'
[10446]57GRADUATED = 'graduated'
58TRANSCRIPT = 'transcript requested'
[7670]59
[10446]60
[9217]61#: A dict giving job status as tuple (<STRING>, <TRANSLATED_STRING>),
62#: the latter for UI purposes.
63JOB_STATUS_MAP = {
64    zc.async.interfaces.NEW: ('new', _('new')),
65    zc.async.interfaces.COMPLETED: ('completed', _('completed')),
66    zc.async.interfaces.PENDING: ('pending', _('pending')),
67    zc.async.interfaces.ACTIVE: ('active', _('active')),
68    zc.async.interfaces.ASSIGNED: ('assigned', _('assigned')),
69    zc.async.interfaces.CALLBACKS: ('callbacks', _('callbacks')),
70    }
71
[8361]72#default_rest_frontpage = u'' + codecs.open(os.path.join(
73#        os.path.dirname(__file__), 'frontpage.rst'),
74#        encoding='utf-8', mode='rb').read()
75
76default_html_frontpage = u'' + codecs.open(os.path.join(
77        os.path.dirname(__file__), 'frontpage.html'),
[7702]78        encoding='utf-8', mode='rb').read()
[6361]79
[7819]80def SimpleKofaVocabulary(*terms):
[6915]81    """A well-buildt vocabulary provides terms with a value, token and
82       title for each term
83    """
84    return SimpleVocabulary([
85            SimpleTerm(value, value, title) for title, value in terms])
86
87def academic_sessions():
88    curr_year = datetime.now().year
[12751]89    year_range = range(1989, curr_year + 2)
[6915]90    return [('%s/%s' % (year,year+1), year) for year in year_range]
91
[7819]92academic_sessions_vocab = SimpleKofaVocabulary(*academic_sessions())
[6915]93
[7819]94registration_states_vocab = SimpleKofaVocabulary(
[7677]95    (_('created'), CREATED),
96    (_('admitted'), ADMITTED),
97    (_('clearance started'), CLEARANCE),
98    (_('clearance requested'), REQUESTED),
99    (_('cleared'), CLEARED),
100    (_('school fee paid'), PAID),
101    (_('courses registered'), REGISTERED),
102    (_('courses validated'), VALIDATED),
[9671]103    (_('returning'), RETURNING),
[10451]104    (_('graduated'), GRADUATED),
105    (_('transcript requested'), TRANSCRIPT),
[6990]106    )
107
[11450]108class ContextualDictSourceFactoryBase(SmartBasicContextualSourceFactory):
109    """A base for contextual sources based on KofaUtils dicts.
110
111    To create a real source, you have to set the `DICT_NAME` attribute
112    which should be the name of a dictionary in KofaUtils.
113    """
114    def getValues(self, context):
115        utils = getUtility(IKofaUtils)
[11664]116        sorted_items = sorted(getattr(utils, self.DICT_NAME).items(),
117                              key=lambda item: item[1])
118        return [item[0] for item in sorted_items]
[11450]119
120    def getToken(self, context, value):
121        return str(value)
122
123    def getTitle(self, context, value):
124        utils = getUtility(IKofaUtils)
125        return getattr(utils, self.DICT_NAME)[value]
126
[7795]127class SubjectSource(BasicSourceFactory):
[7918]128    """A source for school subjects used in exam documentation.
129    """
[7795]130    def getValues(self):
[7841]131        subjects_dict = getUtility(IKofaUtils).EXAM_SUBJECTS_DICT
[7837]132        return sorted(subjects_dict.keys())
133
[7795]134    def getTitle(self, value):
[7841]135        subjects_dict = getUtility(IKofaUtils).EXAM_SUBJECTS_DICT
[7837]136        return "%s:" % subjects_dict[value]
[7795]137
138class GradeSource(BasicSourceFactory):
[7918]139    """A source for exam grades.
140    """
[7795]141    def getValues(self):
[7918]142        for entry in getUtility(IKofaUtils).EXAM_GRADES:
143            yield entry[0]
[7837]144
[7795]145    def getTitle(self, value):
[7918]146        return dict(getUtility(IKofaUtils).EXAM_GRADES)[value]
[7795]147
[11451]148class DisablePaymentGroupSource(ContextualDictSourceFactoryBase):
149    """A source for filtering groups of students
150    """
151    #: name of dict to deliver from kofa utils.
152    DICT_NAME = 'DISABLE_PAYMENT_GROUP_DICT'
153
[7850]154# Define a validation method for email addresses
[7221]155class NotAnEmailAddress(schema.ValidationError):
156    __doc__ = u"Invalid email address"
157
[8638]158#: Regular expression to check email-address formats. As these can
159#: become rather complex (nearly everything is allowed by RFCs), we only
160#: forbid whitespaces, commas and dots following onto each other.
[7221]161check_email = re.compile(
[8638]162    r"^[^@\s,]+@[^@\.\s,]+(\.[^@\.\s,]+)*$").match
[7221]163
164def validate_email(value):
165    if not check_email(value):
166        raise NotAnEmailAddress(value)
167    return True
168
[12414]169# Define a validation method for ids
170class NotIdValue(schema.ValidationError):
171    __doc__ = u"Invalid id"
172
173#: Regular expressions to check id formats.
[13029]174check_id = re.compile(r"^[a-zA-Z0-9_-]{2,10}$").match
[12414]175
176def validate_id(value):
177    if not check_id(value):
178        raise NotIdValue(value)
179    return True
180
[7850]181# Define a validation method for international phone numbers
182class InvalidPhoneNumber(schema.ValidationError):
183    __doc__ = u"Invalid phone number"
184
185# represent format +NNN-NNNN-NNNN
186RE_INT_PHONE = re.compile(r"^\+?\d+\-\d+\-[\d\-]+$")
187
188def validate_phone(value):
[7851]189    if not RE_INT_PHONE.match(value):
[7850]190        raise InvalidPhoneNumber(value)
191    return True
192
[4858]193class FatalCSVError(Exception):
194    """Some row could not be processed.
195    """
196    pass
197
[6226]198class DuplicationError(Exception):
199    """An exception that can be raised when duplicates are found.
200
201    When raising :exc:`DuplicationError` you can, beside the usual
202    message, specify a list of objects which are duplicates. These
203    values can be used by catching code to print something helpful or
204    similar.
205    """
206    def __init__(self, msg, entries=[]):
207        self.msg = msg
208        self.entries = entries
209
210    def __str__(self):
211        return '%r' % self.msg
212
[6143]213class RoleSource(BasicSourceFactory):
[7178]214    """A source for site roles.
[6508]215    """
[6143]216    def getValues(self):
[6157]217        # late import: in interfaces we should not import local modules
[7811]218        from waeup.kofa.permissions import get_waeup_role_names
[7186]219        return get_waeup_role_names()
[6157]220
221    def getTitle(self, value):
222        # late import: in interfaces we should not import local modules
[7811]223        from waeup.kofa.permissions import get_all_roles
[7186]224        roles = dict(get_all_roles())
[6157]225        if value in roles.keys():
226            title = roles[value].title
[6569]227            if '.' in title:
228                title = title.split('.', 2)[1]
[6157]229        return title
[6143]230
[7313]231class CaptchaSource(BasicSourceFactory):
232    """A source for captchas.
233    """
234    def getValues(self):
[7323]235        captchas = ['No captcha', 'Testing captcha', 'ReCaptcha']
[7313]236        try:
237            # we have to 'try' because IConfiguration can only handle
[7817]238            # interfaces from w.k.interface.
[7811]239            from waeup.kofa.browser.interfaces import ICaptchaManager
[7313]240        except:
241            return captchas
242        return sorted(getUtility(ICaptchaManager).getAvailCaptchas().keys())
243
244    def getTitle(self, value):
245        return value
246
[7795]247class IResultEntry(Interface):
248    """A school grade entry.
249    """
250    subject = schema.Choice(
251        title = _(u'Subject'),
252        source = SubjectSource(),
253        )
254    grade = schema.Choice(
255        title = _(u'Grade'),
256        source = GradeSource(),
257        )
258
259class IResultEntryField(IObject):
260    """A zope.schema-like field for usage in interfaces.
261
262    Marker interface to distuingish result entries from ordinary
263    object fields. Needed for registration of widgets.
264    """
265
[7819]266class IKofaUtils(Interface):
[7358]267    """A collection of methods which are subject to customization.
268    """
[7568]269
[7841]270    PORTAL_LANGUAGE = Attribute("Dict of global language setting")
271    PREFERRED_LANGUAGES_DICT = Attribute("Dict of preferred languages")
272    EXAM_SUBJECTS_DICT = Attribute("Dict of examination subjects")
[11799]273    EXAM_GRADES = Attribute("Dict of examination grades")
[7841]274    INST_TYPES_DICT = Attribute("Dict if institution types")
275    STUDY_MODES_DICT = Attribute("Dict of study modes")
276    APP_CATS_DICT = Attribute("Dict of application categories")
277    SEMESTER_DICT = Attribute("Dict of semesters or trimesters")
[11799]278    SYSTEM_MAX_LOAD = Attribute("Dict of maximum system loads.")
[7568]279
[7404]280    def sendContactForm(
281          from_name,from_addr,rcpt_name,rcpt_addr,
282          from_username,usertype,portal,body,subject):
[7358]283        """Send an email with data provided by forms.
284        """
285
[7475]286    def fullname(firstname,lastname,middlename):
287        """Full name constructor.
288        """
289
[8853]290    def sendCredentials(user, password, url_info, msg):
[7475]291        """Send credentials as email.
292
293        Input is the applicant for which credentials are sent and the
294        password.
295
296        Returns True or False to indicate successful operation.
297        """
298
299    def genPassword(length, chars):
300        """Generate a random password.
301        """
302
[7819]303class IKofaObject(Interface):
304    """A Kofa object.
[5663]305
306    This is merely a marker interface.
[4789]307    """
308
[7819]309class IUniversity(IKofaObject):
[3521]310    """Representation of a university.
311    """
[5955]312
[6065]313
[7819]314class IKofaContainer(IKofaObject):
315    """A container for Kofa objects.
[4789]316    """
317
[7819]318class IKofaContained(IKofaObject):
319    """An item contained in an IKofaContainer.
[4789]320    """
[6136]321
[7726]322class ICSVExporter(Interface):
323    """A CSV file exporter for objects.
324    """
325    fields = Attribute("""List of fieldnames in resulting CSV""")
[7907]326
327    title = schema.TextLine(
328        title = u'Title',
329        description = u'Description to be displayed in selections.',
330        )
[7726]331    def mangle_value(value, name, obj):
332        """Mangle `value` extracted from `obj` or suobjects thereof.
333
[8394]334        This is called by export before actually writing to the result
335        file.
[7726]336        """
337
[9797]338    def get_filtered(site, **kw):
339        """Get datasets in `site` to be exported.
340
341        The set of data is specified by keywords, which might be
342        different for any implementaion of exporter.
343
344        Returns an iterable.
345        """
346
[12516]347    def get_selected(site, selected):
348        """Get datasets in `site` to be exported.
349
350        The set of data is specified by a list of identifiers.
351
352        Returns an iterable.
353        """
354
[7730]355    def export(iterable, filepath=None):
356        """Export iterables as rows in a CSV file.
[7726]357
[8394]358        If `filepath` is not given, a string with the data should be
359        returned.
[7730]360
361        What kind of iterables are acceptable depends on the specific
362        exporter implementation.
[7726]363        """
364
[9766]365    def export_all(site, filepath=None):
[7726]366        """Export all items in `site` as CSV file.
367
[8394]368        if `filepath` is not given, a string with the data should be
369        returned.
[7726]370        """
371
[9797]372    def export_filtered(site, filepath=None, **kw):
373        """Export those items in `site` specified by `args` and `kw`.
374
375        If `filepath` is not given, a string with the data should be
376        returned.
377
378        Which special keywords are supported is up to the respective
379        exporter.
380        """
381
[12516]382    def export_selected(site, filepath=None, **kw):
383        """Export items in `site` specified by a list of identifiers
384        called `selected`.
385
386        If `filepath` is not given, a string with the data should be
387        returned.
388        """
389
[7819]390class IKofaExporter(Interface):
[4789]391    """An exporter for objects.
392    """
393    def export(obj, filepath=None):
394        """Export by pickling.
395
396        Returns a file-like object containing a representation of `obj`.
397
398        This is done using `pickle`. If `filepath` is ``None``, a
399        `cStringIO` object is returned, that contains the saved data.
400        """
401
[7819]402class IKofaXMLExporter(Interface):
[4789]403    """An XML exporter for objects.
404    """
405    def export(obj, filepath=None):
406        """Export as XML.
407
408        Returns an XML representation of `obj`.
409
410        If `filepath` is ``None``, a StringIO` object is returned,
411        that contains the transformed data.
412        """
413
[7819]414class IKofaXMLImporter(Interface):
[4789]415    """An XML import for objects.
416    """
417    def doImport(filepath):
418        """Create Python object from XML.
419
420        Returns a Python object.
421        """
422
[4858]423class IBatchProcessor(Interface):
424    """A batch processor that handles mass-operations.
425    """
426    name = schema.TextLine(
[7933]427        title = _(u'Processor name')
[4858]428        )
429
[5476]430    def doImport(path, headerfields, mode='create', user='Unknown',
[8218]431                 logger=None, ignore_empty=True):
[4858]432        """Read data from ``path`` and update connected object.
[5476]433
434        `headerfields` is a list of headerfields as read from the file
435        to import.
436
437        `mode` gives the import mode to use (``'create'``,
438        ``'update'``, or ``'remove'``.
439
440        `user` is a string describing the user performing the
441        import. Normally fetched from current principal.
442
443        `logger` is the logger to use during import.
[8218]444
445        `ignore_emtpy` in update mode ignores empty fields if true.
[4858]446        """
447
[7819]448class IContactForm(IKofaObject):
[7225]449    """A contact form.
450    """
451
452    email_from = schema.ASCIILine(
[7828]453        title = _(u'Email Address:'),
[7225]454        default = None,
455        required = True,
456        constraint=validate_email,
457        )
458
459    email_to = schema.ASCIILine(
[7828]460        title = _(u'Email to:'),
[7225]461        default = None,
462        required = True,
463        constraint=validate_email,
464        )
465
466    subject = schema.TextLine(
[7828]467        title = _(u'Subject:'),
[7225]468        required = True,)
469
470    fullname = schema.TextLine(
[7828]471        title = _(u'Full Name:'),
[7225]472        required = True,)
473
474    body = schema.Text(
[7828]475        title = _(u'Text:'),
[7225]476        required = True,)
477
[7819]478class IKofaPrincipalInfo(IPrincipalInfo):
479    """Infos about principals that are users of Kofa Kofa.
[7233]480    """
481    email = Attribute("The email address of a user")
482    phone = Attribute("The phone number of a user")
[8757]483    public_name = Attribute("The public name of a user")
[12915]484    user_type = Attribute("The type of a user")
[7225]485
[7233]486
[7819]487class IKofaPrincipal(IPrincipal):
488    """A principle for Kofa Kofa.
[7233]489
490    This interface extends zope.security.interfaces.IPrincipal and
491    requires also an `id` and other attributes defined there.
492    """
493
494    email = schema.TextLine(
[7828]495        title = _(u'Email Address'),
[7233]496        description = u'',
497        required=False,)
498
[8176]499    phone = PhoneNumber(
[7828]500        title = _(u'Phone'),
[7233]501        description = u'',
502        required=False,)
503
[8757]504    public_name = schema.TextLine(
505        title = _(u'Public Name'),
506        required = False,)
507
[12915]508    user_type = Attribute('The user type of the principal')
509
[10055]510class IFailedLoginInfo(IKofaObject):
511    """Info about failed logins.
512
513    Timestamps are supposed to be stored as floats using time.time()
514    or similar.
515    """
516    num = schema.Int(
517        title = _(u'Number of failed logins'),
518        description = _(u'Number of failed logins'),
519        required = True,
520        default = 0,
521        )
522
523    last = schema.Float(
524        title = _(u'Timestamp'),
525        description = _(u'Timestamp of last failed login or `None`'),
526        required = False,
527        default = None,
528        )
529
530    def as_tuple():
531        """Get login info as tuple ``<NUM>, <TIMESTAMP>``.
532        """
533
534    def set_values(num=0, last=None):
535        """Set number of failed logins and timestamp of last one.
536        """
537
538    def increase():
539        """Increase the current number of failed logins and set timestamp.
540        """
541
542    def reset():
543        """Set failed login counters back to zero.
544        """
545
546
[7819]547class IUserAccount(IKofaObject):
[4789]548    """A user account.
549    """
[10055]550
[12926]551    failed_logins = Attribute('FailedLoginInfo for this account')
[10055]552
[4789]553    name = schema.TextLine(
[7828]554        title = _(u'User Id'),
[12926]555        description = _(u'Login name of user'),
[4789]556        required = True,)
[7221]557
[4789]558    title = schema.TextLine(
[7828]559        title = _(u'Full Name'),
[8759]560        required = True,)
[7221]561
[8756]562    public_name = schema.TextLine(
563        title = _(u'Public Name'),
[12926]564        description = _(u"Substitute for officer's real name "
565                       "in student object histories."),
[8756]566        required = False,)
567
[7197]568    description = schema.Text(
[7828]569        title = _(u'Description/Notice'),
[4789]570        required = False,)
[7221]571
572    email = schema.ASCIILine(
[7828]573        title = _(u'Email Address'),
[7221]574        default = None,
[7222]575        required = True,
[7221]576        constraint=validate_email,
577        )
578
[8176]579    phone = PhoneNumber(
[7828]580        title = _(u'Phone'),
[7233]581        default = None,
[8062]582        required = False,
[7233]583        )
584
[4789]585    roles = schema.List(
[8486]586        title = _(u'Portal Roles'),
[8079]587        value_type = schema.Choice(source=RoleSource()),
588        required = False,
589        )
[6136]590
[12926]591    suspended = schema.Bool(
592        title = _(u'Account suspended'),
593        description = _(u'If set, the account is immediately blocked.'),
594        default = False,
595        required = False,
596        )
[10055]597
598
[7147]599class IPasswordValidator(Interface):
600    """A password validator utility.
601    """
[6136]602
[7147]603    def validate_password(password, password_repeat):
604        """Validates a password by comparing it with
605        control password and checking some other requirements.
606        """
607
608
[7819]609class IUsersContainer(IKofaObject):
[12915]610    """A container for officers.
[4789]611    """
612
613    def addUser(name, password, title=None, description=None):
614        """Add a user.
615        """
616
617    def delUser(name):
618        """Delete a user if it exists.
619        """
620
[6141]621class ILocalRolesAssignable(Interface):
622    """The local roles assignable to an object.
623    """
624    def __call__():
625        """Returns a list of dicts.
626
627        Each dict contains a ``name`` referring to the role assignable
628        for the specified object and a `title` to describe the range
629        of users to which this role can be assigned.
630        """
631
[7819]632class IConfigurationContainer(IKofaObject):
[6907]633    """A container for session configuration objects.
634    """
635
636    name = schema.TextLine(
[7828]637        title = _(u'Name of University'),
638        default = _(u'Sample University'),
[6907]639        required = True,
640        )
641
[7459]642    acronym = schema.TextLine(
[7828]643        title = _(u'Abbreviated Title of University'),
[7819]644        default = u'WAeUP.Kofa',
[7459]645        required = True,
646        )
647
[6907]648    frontpage = schema.Text(
[8361]649        title = _(u'Content in HTML format'),
[6907]650        required = False,
[8361]651        default = default_html_frontpage,
[6907]652        )
653
[7702]654    frontpage_dict = schema.Dict(
655        title = u'Content as language dictionary with values in html format',
[7485]656        required = False,
[7702]657        default = {},
[7485]658        )
659
[7223]660    name_admin = schema.TextLine(
[7828]661        title = _(u'Name of Administrator'),
[7223]662        default = u'Administrator',
[8230]663        required = True,
[7223]664        )
665
[7221]666    email_admin = schema.ASCIILine(
[7828]667        title = _(u'Email Address of Administrator'),
[7221]668        default = 'contact@waeup.org',
[8230]669        required = True,
[7221]670        constraint=validate_email,
671        )
672
673    email_subject = schema.TextLine(
[7828]674        title = _(u'Subject of Email to Administrator'),
675        default = _(u'Kofa Contact'),
[8230]676        required = True,
[7221]677        )
678
[7470]679    smtp_mailer = schema.Choice(
[7828]680        title = _(u'SMTP mailer to use when sending mail'),
[7470]681        vocabulary = 'Mail Delivery Names',
682        default = 'No email service',
683        required = True,
684        )
685
[7313]686    captcha = schema.Choice(
[7828]687        title = _(u'Captcha used for public registration pages'),
[7313]688        source = CaptchaSource(),
689        default = u'No captcha',
690        required = True,
691        )
[7221]692
[7664]693    carry_over = schema.Bool(
[7828]694        title = _(u'Carry-over Course Registration'),
[7664]695        default = False,
696        )
697
[13029]698    current_coursereg_deadline = schema.Datetime(
699        title = _(u'Current Course Registration Deadline'),
700        required = False,
701        description = _('Example: ') + u'2011-12-31 23:59:59+01:00',
702        )
703
[10627]704    current_academic_session = schema.Choice(
705        title = _(u'Current Academic Session'),
[10631]706        description = _(u'Session for which score editing is allowed'),
[10627]707        source = academic_sessions_vocab,
708        default = None,
709        required = False,
710        readonly = False,
711        )
712
[11589]713    next_matric_integer = schema.Int(
714        title = _(u'Next Matriculation Number Integer'),
715        description = _(u'Integer used for constructing the next '
716                         'matriculation number'),
717        default = 0,
718        readonly = False,
719        required = False,
720        )
721
[7819]722class ISessionConfiguration(IKofaObject):
[6915]723    """A session configuration object.
[6907]724    """
725
[6915]726    academic_session = schema.Choice(
[7828]727        title = _(u'Academic Session'),
[6915]728        source = academic_sessions_vocab,
729        default = None,
730        required = True,
731        readonly = True,
732        )
733
[8260]734    application_fee = schema.Float(
735        title = _(u'Application Fee'),
[7927]736        default = 0.0,
[7881]737        required = False,
[6916]738        )
739
[8260]740    clearance_fee = schema.Float(
[9243]741        title = _(u'Acceptance Fee'),
[7927]742        default = 0.0,
[7881]743        required = False,
[6993]744        )
745
[8260]746    booking_fee = schema.Float(
747        title = _(u'Bed Booking Fee'),
[7927]748        default = 0.0,
[7881]749        required = False,
[7250]750        )
751
[9423]752    maint_fee = schema.Float(
[10680]753        title = _(u'Rent (fallback)'),
[9423]754        default = 0.0,
755        required = False,
756        )
757
[10449]758    transcript_fee = schema.Float(
759        title = _(u'Transcript Fee'),
760        default = 0.0,
761        required = False,
762        )
763
[9814]764    clearance_enabled = schema.Bool(
765        title = _(u'Clearance enabled'),
766        default = False,
767        )
768
[11451]769    payment_disabled = schema.List(
770        title = _(u'Payment disabled'),
771        value_type = schema.Choice(
772            source = DisablePaymentGroupSource(),
773            ),
774        required = False,
775        default = [],
776        )
777
[6918]778    def getSessionString():
779        """Returns the session string from the vocabulary.
780        """
781
782
[6916]783class ISessionConfigurationAdd(ISessionConfiguration):
784    """A session configuration object in add mode.
785    """
786
787    academic_session = schema.Choice(
[7828]788        title = _(u'Academic Session'),
[6916]789        source = academic_sessions_vocab,
790        default = None,
791        required = True,
792        readonly = False,
793        )
794
795ISessionConfigurationAdd['academic_session'].order =  ISessionConfiguration[
796    'academic_session'].order
797
[7819]798class IDataCenter(IKofaObject):
[4789]799    """A data center.
800
[8394]801    A data center manages files (uploads, downloads, etc.).
802
803    Beside providing the bare paths needed to keep files, it also
804    provides some helpers to put results of batch processing into
805    well-defined final locations (with well-defined filenames).
806
807    The main use-case is managing of site-related files, i.e. files
808    for import, export etc.
809
810    DataCenters are _not_ meant as storages for object-specific files
811    like passport photographs and similar.
812
813    It is up to the datacenter implementation how to organize data
814    (paths) inside its storage path.
[4789]815    """
[8394]816    storage = schema.Bytes(
817        title = u'Path to directory where everything is kept.'
818        )
[4789]819
[8394]820    deleted_path = schema.Bytes(
821        title = u'Path were data about deleted objects should be stored.'
822        )
823
[9023]824    def getPendingFiles(sort='name'):
[8394]825        """Get a list of files stored in `storage` sorted by basename.
826        """
[9023]827
[9074]828    def getFinishedFiles():
829        """Get a list of files stored in `finished` subfolder of `storage`.
[9023]830        """
831
[8394]832    def setStoragePath(path, move=False, overwrite=False):
833        """Set the path where to store files.
834
835        If `move` is True, move over files from the current location
836        to the new one.
837
838        If `overwrite` is also True, overwrite any already existing
839        files of same name in target location.
840
841        Triggers a DataCenterStorageMovedEvent.
842        """
843
844    def distProcessedFiles(successful, source_path, finished_file,
845                           pending_file, mode='create', move_orig=True):
846        """Distribute processed files over final locations.
847        """
848
849
[4789]850class IDataCenterFile(Interface):
851    """A data center file.
852    """
[4858]853
854    name = schema.TextLine(
855        title = u'Filename')
856
857    size = schema.TextLine(
858        title = u'Human readable file size')
859
860    uploaddate = schema.TextLine(
861        title = u'Human readable upload datetime')
862
863    lines = schema.Int(
864        title = u'Number of lines in file')
[6136]865
[4789]866    def getDate():
867        """Get creation timestamp from file in human readable form.
868        """
869
870    def getSize():
871        """Get human readable size of file.
872        """
[4858]873
874    def getLinesNumber():
875        """Get number of lines of file.
876        """
[4882]877
878class IDataCenterStorageMovedEvent(IObjectEvent):
879    """Emitted, when the storage of a datacenter changes.
880    """
[5007]881
[6136]882class IObjectUpgradeEvent(IObjectEvent):
883    """Can be fired, when an object shall be upgraded.
884    """
885
[6180]886class ILocalRoleSetEvent(IObjectEvent):
887    """A local role was granted/revoked for a principal on an object.
888    """
889    role_id = Attribute(
890        "The role id that was set.")
891    principal_id = Attribute(
892        "The principal id for which the role was granted/revoked.")
893    granted = Attribute(
894        "Boolean. If false, then the role was revoked.")
895
[5007]896class IQueryResultItem(Interface):
897    """An item in a search result.
898    """
899    url = schema.TextLine(
900        title = u'URL that links to the found item')
901    title = schema.TextLine(
902        title = u'Title displayed in search results.')
903    description = schema.Text(
904        title = u'Longer description of the item found.')
[6136]905
[7819]906class IKofaPluggable(Interface):
907    """A component that might be plugged into a Kofa Kofa app.
[5658]908
909    Components implementing this interface are referred to as
910    'plugins'. They are normally called when a new
[7811]911    :class:`waeup.kofa.app.University` instance is created.
[5658]912
913    Plugins can setup and update parts of the central site without the
[7811]914    site object (normally a :class:`waeup.kofa.app.University` object)
[5658]915    needing to know about that parts. The site simply collects all
916    available plugins, calls them and the plugins care for their
[5676]917    respective subarea like the applicants area or the datacenter
[5658]918    area.
919
920    Currently we have no mechanism to define an order of plugins. A
921    plugin should therefore make no assumptions about the state of the
922    site or other plugins being run before and instead do appropriate
923    checks if necessary.
924
925    Updates can be triggered for instance by the respective form in
926    the site configuration. You normally do updates when the
927    underlying software changed.
[5013]928    """
[5069]929    def setup(site, name, logger):
930        """Create an instance of the plugin.
[5013]931
[5658]932        The method is meant to be called by the central app (site)
933        when it is created.
934
935        `site`:
936           The site that requests a setup.
937
938        `name`:
939           The name under which the plugin was registered (utility name).
940
941        `logger`:
942           A standard Python logger for the plugins use.
[5069]943        """
944
945    def update(site, name, logger):
946        """Method to update an already existing plugin.
947
948        This might be called by a site when something serious
[5658]949        changes. It is a poor-man replacement for Zope generations
950        (but probably more comprehensive and better understandable).
951
952        `site`:
953           The site that requests an update.
954
955        `name`:
956           The name under which the plugin was registered (utility name).
957
958        `logger`:
959           A standard Python logger for the plugins use.
[5069]960        """
[5898]961
[5899]962class IAuthPluginUtility(Interface):
[5898]963    """A component that cares for authentication setup at site creation.
964
965    Utilities providing this interface are looked up when a Pluggable
966    Authentication Utility (PAU) for any
[7811]967    :class:`waeup.kofa.app.University` instance is created and put
[5898]968    into ZODB.
969
970    The setup-code then calls the `register` method of the utility and
971    expects a modified (or unmodified) version of the PAU back.
972
973    This allows to define any authentication setup modifications by
974    submodules or third-party modules/packages.
975    """
976
977    def register(pau):
978        """Register any plugins wanted to be in the PAU.
979        """
980
981    def unregister(pau):
982        """Unregister any plugins not wanted to be in the PAU.
983        """
[6273]984
985class IObjectConverter(Interface):
986    """Object converters are available as simple adapters, adapting
987       interfaces (not regular instances).
988
989    """
990
[6277]991    def fromStringDict(self, data_dict, context, form_fields=None):
992        """Convert values in `data_dict`.
[6273]993
[6277]994        Converts data in `data_dict` into real values based on
995        `context` and `form_fields`.
[6273]996
[6277]997        `data_dict` is a mapping (dict) from field names to values
998        represented as strings.
[6273]999
[6277]1000        The fields (keys) to convert can be given in optional
1001        `form_fields`. If given, form_fields should be an instance of
1002        :class:`zope.formlib.form.Fields`. Suitable instances are for
1003        example created by :class:`grok.AutoFields`.
[6273]1004
[6277]1005        If no `form_fields` are given, a default is computed from the
1006        associated interface.
[6273]1007
[6277]1008        The `context` can be an existing object (implementing the
1009        associated interface) or a factory name. If it is a string, we
1010        try to create an object using
1011        :func:`zope.component.createObject`.
1012
1013        Returns a tuple ``(<FIELD_ERRORS>, <INVARIANT_ERRORS>,
1014        <DATA_DICT>)`` where
1015
1016        ``<FIELD_ERRORS>``
1017           is a list of tuples ``(<FIELD_NAME>, <ERROR>)`` for each
1018           error that happened when validating the input data in
1019           `data_dict`
1020
1021        ``<INVARIANT_ERRORS>``
1022           is a list of invariant errors concerning several fields
1023
1024        ``<DATA_DICT>``
1025           is a dict with the values from input dict converted.
1026
1027        If errors happen, i.e. the error lists are not empty, always
1028        an empty ``<DATA_DICT>`` is returned.
1029
[12836]1030        If ``<DATA_DICT>`` is non-empty, there were no errors.
[6273]1031        """
[6293]1032
[7932]1033class IFieldConverter(Interface):
[8214]1034    def request_data(name, value, schema_field, prefix='', mode='create'):
[7932]1035        """Create a dict with key-value mapping as created by a request.
1036
1037        `name` and `value` are expected to be parsed from CSV or a
1038        similar input and represent an attribute to be set to a
1039        representation of value.
1040
[8214]1041        `mode` gives the mode of import.
1042
[7932]1043        :meth:`update_request_data` is then requested to turn this
1044        name and value into vars as they would be sent by a regular
1045        form submit. This means we do not create the real values to be
1046        set but we only define the values that would be sent in a
1047        browser request to request the creation of those values.
1048
1049        The returned dict should contain names and values of a faked
1050        browser request for the given `schema_field`.
1051
1052        Field converters are normally registered as adapters to some
1053        specific zope.schema field.
1054        """
1055
[6338]1056class IObjectHistory(Interface):
1057
1058    messages = schema.List(
1059        title = u'List of messages stored',
1060        required = True,
1061        )
1062
1063    def addMessage(message):
1064        """Add a message.
1065        """
[6353]1066
[7819]1067class IKofaWorkflowInfo(IWorkflowInfo):
[6353]1068    """A :class:`hurry.workflow.workflow.WorkflowInfo` with additional
1069       methods for convenience.
1070    """
1071    def getManualTransitions():
1072        """Get allowed manual transitions.
1073
1074        Get a sorted list of tuples containing the `transition_id` and
1075        `title` of each allowed transition.
1076        """
[6481]1077
1078class ISiteLoggers(Interface):
1079
[7819]1080    loggers = Attribute("A list or generator of registered KofaLoggers")
[6481]1081
1082    def register(name, filename=None, site=None, **options):
1083        """Register a logger `name` which logs to `filename`.
1084
1085        If `filename` is not given, logfile will be `name` with
1086        ``.log`` as filename extension.
1087        """
1088
1089    def unregister(name):
1090        """Unregister a once registered logger.
1091        """
1092
1093class ILogger(Interface):
1094    """A logger cares for setup, update and restarting of a Python logger.
1095    """
1096
1097    logger = Attribute("""A :class:`logging.Logger` instance""")
1098
1099
1100    def __init__(name, filename=None, site=None, **options):
[7819]1101        """Create a Kofa logger instance.
[6481]1102        """
1103
1104    def setup():
1105        """Create a Python :class:`logging.Logger` instance.
1106
1107        The created logger is based on the params given by constructor.
1108        """
1109
1110    def update(**options):
1111        """Update the logger.
1112
1113        Updates the logger respecting modified `options` and changed
1114        paths.
1115        """
[6754]1116
1117class ILoggerCollector(Interface):
1118
1119    def getLoggers(site):
1120        """Return all loggers registered for `site`.
1121        """
1122
1123    def registerLogger(site, logging_component):
1124        """Register a logging component residing in `site`.
1125        """
1126
1127    def unregisterLogger(site, logging_component):
1128        """Unregister a logger.
1129        """
[7063]1130
1131#
1132# External File Storage and relatives
1133#
1134class IFileStoreNameChooser(INameChooser):
1135    """See zope.container.interfaces.INameChooser for base methods.
1136    """
[7066]1137    def checkName(name, attr=None):
[7063]1138        """Check whether an object name is valid.
1139
1140        Raises a user error if the name is not valid.
1141        """
1142
[7066]1143    def chooseName(name, attr=None):
1144        """Choose a unique valid file id for the object.
[7063]1145
[7066]1146        The given name may be taken into account when choosing the
1147        name (file id).
[7063]1148
[7066]1149        chooseName is expected to always choose a valid file id (that
1150        would pass the checkName test) and never raise an error.
1151
1152        If `attr` is not ``None`` it might been taken into account as
1153        well when generating the file id. Usual behaviour is to
1154        interpret `attr` as a hint for what type of file for a given
1155        context should be stored if there are several types
1156        possible. For instance for a certain student some file could
1157        be the connected passport photograph or some certificate scan
1158        or whatever. Each of them has to be stored in a different
1159        location so setting `attr` to a sensible value should give
1160        different file ids returned.
[7063]1161        """
1162
1163class IExtFileStore(IFileRetrieval):
1164    """A file storage that stores files in filesystem (not as blobs).
1165    """
1166    root = schema.TextLine(
1167        title = u'Root path of file store.',
1168        )
1169
1170    def getFile(file_id):
1171        """Get raw file data stored under file with `file_id`.
1172
1173        Returns a file descriptor open for reading or ``None`` if the
1174        file cannot be found.
1175        """
1176
[7071]1177    def getFileByContext(context, attr=None):
[7063]1178        """Get raw file data stored for the given context.
1179
1180        Returns a file descriptor open for reading or ``None`` if no
1181        such file can be found.
1182
[7071]1183        Both, `context` and `attr` might be used to find (`context`)
1184        and feed (`attr`) an appropriate file name chooser.
1185
[7063]1186        This is a convenience method.
1187        """
1188
[7090]1189    def deleteFile(file_id):
1190        """Delete file stored under `file_id`.
1191
1192        Remove file from filestore so, that it is not available
1193        anymore on next call to getFile for the same file_id.
1194
1195        Should not complain if no such file exists.
1196        """
1197
1198    def deleteFileByContext(context, attr=None):
1199        """Delete file for given `context` and `attr`.
1200
1201        Both, `context` and `attr` might be used to find (`context`)
1202        and feed (`attr`) an appropriate file name chooser.
1203
1204        This is a convenience method.
1205        """
1206
[7063]1207    def createFile(filename, f):
1208        """Create file given by f with filename `filename`
1209
1210        Returns a hurry.file.File-based object.
1211        """
1212
1213class IFileStoreHandler(Interface):
1214    """Filestore handlers handle specific files for file stores.
1215
1216    If a file to store/get provides a specific filename, a file store
1217    looks up special handlers for that type of file.
1218
1219    """
1220    def pathFromFileID(store, root, filename):
1221        """Turn file id into path to store.
1222
1223        Returned path should be absolute.
1224        """
1225
1226    def createFile(store, root, filename, file_id, file):
1227        """Return some hurry.file based on `store` and `file_id`.
1228
1229        Some kind of callback method called by file stores to create
1230        file objects from file_id.
1231
1232        Returns a tuple ``(raw_file, path, file_like_obj)`` where the
[7819]1233        ``file_like_obj`` should be a HurryFile, a KofaImageFile or
[7063]1234        similar. ``raw_file`` is the (maybe changed) input file and
1235        ``path`` the relative internal path to store the file at.
1236
1237        Please make sure the ``raw_file`` is opened for reading and
1238        the file descriptor set at position 0 when returned.
1239
1240        This method also gets the raw input file object that is about
1241        to be stored and is expected to raise any exceptions if some
1242        kind of validation or similar fails.
1243        """
[7389]1244
1245class IPDF(Interface):
1246    """A PDF representation of some context.
1247    """
1248
[8257]1249    def __call__(view=None, note=None):
[7389]1250        """Create a bytestream representing a PDF from context.
1251
1252        If `view` is passed in additional infos might be rendered into
1253        the document.
[8257]1254
1255        `note` is optional HTML rendered at bottom of the created
1256        PDF. Please consider the limited reportlab support for HTML,
1257        but using font-tags and friends you certainly can get the
1258        desired look.
[7389]1259        """
[7473]1260
1261class IMailService(Interface):
1262    """A mail service.
1263    """
1264
1265    def __call__():
1266        """Get the default mail delivery.
1267        """
[7576]1268
[9217]1269
[7576]1270class IDataCenterConfig(Interface):
1271    path = Path(
1272        title = u'Path',
[7828]1273        description = u"Directory where the datacenter should store "
1274                      u"files by default (adjustable in web UI).",
[7576]1275        required = True,
1276        )
[8346]1277
[9217]1278#
1279# Asynchronous job handling and related
1280#
1281class IJobManager(IKofaObject):
1282    """A manager for asynchronous running jobs (tasks).
1283    """
1284    def put(job, site=None):
1285        """Put a job into task queue.
[8346]1286
[9217]1287        If no `site` is given, queue job in context of current local
1288        site.
1289
1290        Returns a job_id to identify the put job. This job_id is
1291        needed for further references to the job.
1292        """
1293
1294    def jobs(site=None):
1295        """Get an iterable of jobs stored.
1296        """
1297
1298    def get(job_id, site=None):
1299        """Get the job with id `job_id`.
1300
1301        For the `site` parameter see :meth:`put`.
1302        """
1303
1304    def remove(job_id, site=None):
1305        """Remove job with `job_id` from stored jobs.
1306        """
1307
1308    def start_test_job(site=None):
1309        """Start a test job.
1310        """
1311
1312class IProgressable(Interface):
1313    """A component that can indicate its progress status.
[8346]1314    """
[9217]1315    percent = schema.Float(
1316        title = u'Percent of job done already.',
[8346]1317        )
1318
[9217]1319class IJobContainer(IContainer):
1320    """A job container contains IJob objects.
1321    """
1322
1323class IExportJob(zc.async.interfaces.IJob):
1324    def __init__(site, exporter_name):
1325        pass
1326
[9816]1327    finished = schema.Bool(
1328        title = u'`True` if the job finished.`',
1329        default = False,
1330        )
1331
1332    failed = schema.Bool(
1333        title = u"`True` iff the job finished and didn't provide a file.",
1334        default = None,
1335        )
1336
[9764]1337class IExportJobContainer(IKofaObject):
[9217]1338    """A component that contains (maybe virtually) export jobs.
1339    """
[9718]1340    def start_export_job(exporter_name, user_id, *args, **kwargs):
[9217]1341        """Start asynchronous export job.
1342
1343        `exporter_name` is the name of an exporter utility to be used.
1344
1345        `user_id` is the ID of the user that triggers the export.
1346
[9718]1347        `args` positional arguments passed to the export job created.
1348
1349        `kwargs` keyword arguments passed to the export job.
1350
[9217]1351        The job_id is stored along with exporter name and user id in a
1352        persistent list.
1353
1354        Returns the job ID of the job started.
1355        """
1356
1357    def get_running_export_jobs(user_id=None):
1358        """Get export jobs for user with `user_id` as list of tuples.
1359
1360        Each tuples holds ``<job_id>, <exporter_name>, <user_id>`` in
1361        that order. The ``<exporter_name>`` is the utility name of the
1362        used exporter.
1363
1364        If `user_id` is ``None``, all running jobs are returned.
1365        """
1366
1367    def get_export_jobs_status(user_id=None):
1368        """Get running/completed export jobs for `user_id` as list of tuples.
1369
1370        Each tuple holds ``<raw status>, <status translated>,
1371        <exporter title>`` in that order, where ``<status
1372        translated>`` and ``<exporter title>`` are translated strings
1373        representing the status of the job and the human readable
1374        title of the exporter used.
1375        """
1376
1377    def delete_export_entry(entry):
1378        """Delete the export denoted by `entry`.
1379
1380        Removes `entry` from the local `running_exports` list and also
1381        removes the regarding job via the local job manager.
1382
1383        `entry` is a tuple ``(<job id>, <exporter name>, <user id>)``
1384        as created by :meth:`start_export_job` or returned by
1385        :meth:`get_running_export_jobs`.
1386        """
1387
1388    def entry_from_job_id(job_id):
1389        """Get entry tuple for `job_id`.
1390
1391        Returns ``None`` if no such entry can be found.
1392        """
[9726]1393
1394class IExportContainerFinder(Interface):
1395    """A finder for the central export container.
1396    """
1397    def __call__():
1398        """Return the currently used global or site-wide IExportContainer.
1399        """
[9766]1400
1401class IFilteredQuery(IKofaObject):
1402    """A query for objects.
1403    """
1404
1405    defaults = schema.Dict(
1406        title = u'Default Parameters',
1407        required = True,
1408        )
1409
1410    def __init__(**parameters):
1411        """Instantiate a filtered query by passing in parameters.
1412        """
1413
1414    def query():
1415        """Get an iterable of objects denoted by the set parameters.
1416
1417        The search should be applied to objects inside current
1418        site. It's the caller's duty to set the correct site before.
1419
1420        Result can be any iterable like a catalog result set, a list,
1421        or similar.
1422        """
1423
1424class IFilteredCatalogQuery(IFilteredQuery):
1425    """A catalog-based query for objects.
1426    """
1427
1428    cat_name = schema.TextLine(
1429        title = u'Registered name of the catalog to search.',
1430        required = True,
1431        )
1432
1433    def query_catalog(catalog):
1434        """Query catalog with the parameters passed to constructor.
1435        """
Note: See TracBrowser for help on using the repository browser.