source: main/waeup.kofa/branches/uli-scores-upload/src/waeup/kofa/interfaces.py @ 15508

Last change on this file since 15508 was 13886, checked in by Henrik Bettermann, 8 years ago

Remove application fee fallback option. This option has never been used and is confusing.

Hide Payment Tickets section on application pages if fee isn't set.

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