source: main/waeup.kofa/branches/uli-upgrade-dependencies/src/waeup/kofa/interfaces.py @ 13621

Last change on this file since 13621 was 13574, checked in by Henrik Bettermann, 9 years ago

Configure transfer payments and let students enter their desired
study course. Save entered text in p_item attribute.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 43.9 KB
Line 
1## $Id: interfaces.py 13574 2016-01-10 09:13:17Z 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    export_disabled_message = schema.Text(
736        title = _(u'Export-disabled message'),
737        description = _(u'Message which will show up if an officer tries '
738                         'to export data. All exporters are automatcally '
739                         'disabled if this field is set.'),
740        required = False,
741        )
742
743    maintmode_enabled_by = schema.TextLine(
744        title = _(u'Maintenance Mode enabled by'),
745        default = None,
746        required = False,
747        )
748
749    def addSessionConfiguration(sessionconfiguration):
750        """Add a session configuration object.
751        """
752
753class ISessionConfiguration(IKofaObject):
754    """A session configuration object.
755    """
756
757    academic_session = schema.Choice(
758        title = _(u'Academic Session'),
759        source = academic_sessions_vocab,
760        default = None,
761        required = True,
762        readonly = True,
763        )
764
765    clearance_enabled = schema.Bool(
766        title = _(u'Clearance enabled'),
767        default = False,
768        )
769
770    payment_disabled = schema.List(
771        title = _(u'Payment disabled'),
772        value_type = schema.Choice(
773            source = DisablePaymentGroupSource(),
774            ),
775        required = False,
776        default = [],
777        )
778
779    coursereg_deadline = schema.Datetime(
780        title = _(u'Course Reg. Deadline'),
781        required = False,
782        description = _('Example: ') + u'2011-12-31 23:59:59+01:00',
783        )
784
785    late_registration_fee = schema.Float(
786        title = _(u'Late Course Reg. Fee'),
787        default = 0.0,
788        required = False,
789        )
790
791    application_fee = schema.Float(
792        title = _(u'Application Fee'),
793        default = 0.0,
794        required = False,
795        )
796
797    clearance_fee = schema.Float(
798        title = _(u'Acceptance Fee'),
799        default = 0.0,
800        required = False,
801        )
802
803    booking_fee = schema.Float(
804        title = _(u'Bed Booking Fee'),
805        default = 0.0,
806        required = False,
807        )
808
809    maint_fee = schema.Float(
810        title = _(u'Rent (fallback)'),
811        default = 0.0,
812        required = False,
813        )
814
815    transcript_fee = schema.Float(
816        title = _(u'Transcript Fee'),
817        default = 0.0,
818        required = False,
819        )
820
821    transfer_fee = schema.Float(
822        title = _(u'Transfer Fee'),
823        default = 0.0,
824        required = False,
825        )
826
827    def getSessionString():
828        """Return the session string from the vocabulary.
829        """
830
831
832class ISessionConfigurationAdd(ISessionConfiguration):
833    """A session configuration object in add mode.
834    """
835
836    academic_session = schema.Choice(
837        title = _(u'Academic Session'),
838        source = academic_sessions_vocab,
839        default = None,
840        required = True,
841        readonly = False,
842        )
843
844ISessionConfigurationAdd['academic_session'].order =  ISessionConfiguration[
845    'academic_session'].order
846
847class IDataCenter(IKofaObject):
848    """A data center.
849
850    A data center manages files (uploads, downloads, etc.).
851
852    Beside providing the bare paths needed to keep files, it also
853    provides some helpers to put results of batch processing into
854    well-defined final locations (with well-defined filenames).
855
856    The main use-case is managing of site-related files, i.e. files
857    for import, export etc.
858
859    DataCenters are _not_ meant as storages for object-specific files
860    like passport photographs and similar.
861
862    It is up to the datacenter implementation how to organize data
863    (paths) inside its storage path.
864    """
865    storage = schema.Bytes(
866        title = u'Path to directory where everything is kept.'
867        )
868
869    deleted_path = schema.Bytes(
870        title = u'Path were data about deleted objects should be stored.'
871        )
872
873    def getPendingFiles(sort='name'):
874        """Get a list of files stored in `storage` sorted by basename.
875        """
876
877    def getFinishedFiles():
878        """Get a list of files stored in `finished` subfolder of `storage`.
879        """
880
881    def setStoragePath(path, move=False, overwrite=False):
882        """Set the path where to store files.
883
884        If `move` is True, move over files from the current location
885        to the new one.
886
887        If `overwrite` is also True, overwrite any already existing
888        files of same name in target location.
889
890        Triggers a DataCenterStorageMovedEvent.
891        """
892
893    def distProcessedFiles(successful, source_path, finished_file,
894                           pending_file, mode='create', move_orig=True):
895        """Distribute processed files over final locations.
896        """
897
898
899class IDataCenterFile(Interface):
900    """A data center file.
901    """
902
903    name = schema.TextLine(
904        title = u'Filename')
905
906    size = schema.TextLine(
907        title = u'Human readable file size')
908
909    uploaddate = schema.TextLine(
910        title = u'Human readable upload datetime')
911
912    lines = schema.Int(
913        title = u'Number of lines in file')
914
915    def getDate():
916        """Get creation timestamp from file in human readable form.
917        """
918
919    def getSize():
920        """Get human readable size of file.
921        """
922
923    def getLinesNumber():
924        """Get number of lines of file.
925        """
926
927class IDataCenterStorageMovedEvent(IObjectEvent):
928    """Emitted, when the storage of a datacenter changes.
929    """
930
931class IObjectUpgradeEvent(IObjectEvent):
932    """Can be fired, when an object shall be upgraded.
933    """
934
935class ILocalRoleSetEvent(IObjectEvent):
936    """A local role was granted/revoked for a principal on an object.
937    """
938    role_id = Attribute(
939        "The role id that was set.")
940    principal_id = Attribute(
941        "The principal id for which the role was granted/revoked.")
942    granted = Attribute(
943        "Boolean. If false, then the role was revoked.")
944
945class IQueryResultItem(Interface):
946    """An item in a search result.
947    """
948    url = schema.TextLine(
949        title = u'URL that links to the found item')
950    title = schema.TextLine(
951        title = u'Title displayed in search results.')
952    description = schema.Text(
953        title = u'Longer description of the item found.')
954
955class IKofaPluggable(Interface):
956    """A component that might be plugged into a Kofa Kofa app.
957
958    Components implementing this interface are referred to as
959    'plugins'. They are normally called when a new
960    :class:`waeup.kofa.app.University` instance is created.
961
962    Plugins can setup and update parts of the central site without the
963    site object (normally a :class:`waeup.kofa.app.University` object)
964    needing to know about that parts. The site simply collects all
965    available plugins, calls them and the plugins care for their
966    respective subarea like the applicants area or the datacenter
967    area.
968
969    Currently we have no mechanism to define an order of plugins. A
970    plugin should therefore make no assumptions about the state of the
971    site or other plugins being run before and instead do appropriate
972    checks if necessary.
973
974    Updates can be triggered for instance by the respective form in
975    the site configuration. You normally do updates when the
976    underlying software changed.
977    """
978    def setup(site, name, logger):
979        """Create an instance of the plugin.
980
981        The method is meant to be called by the central app (site)
982        when it is created.
983
984        `site`:
985           The site that requests a setup.
986
987        `name`:
988           The name under which the plugin was registered (utility name).
989
990        `logger`:
991           A standard Python logger for the plugins use.
992        """
993
994    def update(site, name, logger):
995        """Method to update an already existing plugin.
996
997        This might be called by a site when something serious
998        changes. It is a poor-man replacement for Zope generations
999        (but probably more comprehensive and better understandable).
1000
1001        `site`:
1002           The site that requests an update.
1003
1004        `name`:
1005           The name under which the plugin was registered (utility name).
1006
1007        `logger`:
1008           A standard Python logger for the plugins use.
1009        """
1010
1011class IAuthPluginUtility(Interface):
1012    """A component that cares for authentication setup at site creation.
1013
1014    Utilities providing this interface are looked up when a Pluggable
1015    Authentication Utility (PAU) for any
1016    :class:`waeup.kofa.app.University` instance is created and put
1017    into ZODB.
1018
1019    The setup-code then calls the `register` method of the utility and
1020    expects a modified (or unmodified) version of the PAU back.
1021
1022    This allows to define any authentication setup modifications by
1023    submodules or third-party modules/packages.
1024    """
1025
1026    def register(pau):
1027        """Register any plugins wanted to be in the PAU.
1028        """
1029
1030    def unregister(pau):
1031        """Unregister any plugins not wanted to be in the PAU.
1032        """
1033
1034class IObjectConverter(Interface):
1035    """Object converters are available as simple adapters, adapting
1036       interfaces (not regular instances).
1037
1038    """
1039
1040    def fromStringDict(self, data_dict, context, form_fields=None):
1041        """Convert values in `data_dict`.
1042
1043        Converts data in `data_dict` into real values based on
1044        `context` and `form_fields`.
1045
1046        `data_dict` is a mapping (dict) from field names to values
1047        represented as strings.
1048
1049        The fields (keys) to convert can be given in optional
1050        `form_fields`. If given, form_fields should be an instance of
1051        :class:`zope.formlib.form.Fields`. Suitable instances are for
1052        example created by :class:`grok.AutoFields`.
1053
1054        If no `form_fields` are given, a default is computed from the
1055        associated interface.
1056
1057        The `context` can be an existing object (implementing the
1058        associated interface) or a factory name. If it is a string, we
1059        try to create an object using
1060        :func:`zope.component.createObject`.
1061
1062        Returns a tuple ``(<FIELD_ERRORS>, <INVARIANT_ERRORS>,
1063        <DATA_DICT>)`` where
1064
1065        ``<FIELD_ERRORS>``
1066           is a list of tuples ``(<FIELD_NAME>, <ERROR>)`` for each
1067           error that happened when validating the input data in
1068           `data_dict`
1069
1070        ``<INVARIANT_ERRORS>``
1071           is a list of invariant errors concerning several fields
1072
1073        ``<DATA_DICT>``
1074           is a dict with the values from input dict converted.
1075
1076        If errors happen, i.e. the error lists are not empty, always
1077        an empty ``<DATA_DICT>`` is returned.
1078
1079        If ``<DATA_DICT>`` is non-empty, there were no errors.
1080        """
1081
1082class IFieldConverter(Interface):
1083    def request_data(name, value, schema_field, prefix='', mode='create'):
1084        """Create a dict with key-value mapping as created by a request.
1085
1086        `name` and `value` are expected to be parsed from CSV or a
1087        similar input and represent an attribute to be set to a
1088        representation of value.
1089
1090        `mode` gives the mode of import.
1091
1092        :meth:`update_request_data` is then requested to turn this
1093        name and value into vars as they would be sent by a regular
1094        form submit. This means we do not create the real values to be
1095        set but we only define the values that would be sent in a
1096        browser request to request the creation of those values.
1097
1098        The returned dict should contain names and values of a faked
1099        browser request for the given `schema_field`.
1100
1101        Field converters are normally registered as adapters to some
1102        specific zope.schema field.
1103        """
1104
1105class IObjectHistory(Interface):
1106
1107    messages = schema.List(
1108        title = u'List of messages stored',
1109        required = True,
1110        )
1111
1112    def addMessage(message):
1113        """Add a message.
1114        """
1115
1116class IKofaWorkflowInfo(IWorkflowInfo):
1117    """A :class:`hurry.workflow.workflow.WorkflowInfo` with additional
1118       methods for convenience.
1119    """
1120    def getManualTransitions():
1121        """Get allowed manual transitions.
1122
1123        Get a sorted list of tuples containing the `transition_id` and
1124        `title` of each allowed transition.
1125        """
1126
1127class ISiteLoggers(Interface):
1128
1129    loggers = Attribute("A list or generator of registered KofaLoggers")
1130
1131    def register(name, filename=None, site=None, **options):
1132        """Register a logger `name` which logs to `filename`.
1133
1134        If `filename` is not given, logfile will be `name` with
1135        ``.log`` as filename extension.
1136        """
1137
1138    def unregister(name):
1139        """Unregister a once registered logger.
1140        """
1141
1142class ILogger(Interface):
1143    """A logger cares for setup, update and restarting of a Python logger.
1144    """
1145
1146    logger = Attribute("""A :class:`logging.Logger` instance""")
1147
1148
1149    def __init__(name, filename=None, site=None, **options):
1150        """Create a Kofa logger instance.
1151        """
1152
1153    def setup():
1154        """Create a Python :class:`logging.Logger` instance.
1155
1156        The created logger is based on the params given by constructor.
1157        """
1158
1159    def update(**options):
1160        """Update the logger.
1161
1162        Updates the logger respecting modified `options` and changed
1163        paths.
1164        """
1165
1166class ILoggerCollector(Interface):
1167
1168    def getLoggers(site):
1169        """Return all loggers registered for `site`.
1170        """
1171
1172    def registerLogger(site, logging_component):
1173        """Register a logging component residing in `site`.
1174        """
1175
1176    def unregisterLogger(site, logging_component):
1177        """Unregister a logger.
1178        """
1179
1180#
1181# External File Storage and relatives
1182#
1183class IFileStoreNameChooser(INameChooser):
1184    """See zope.container.interfaces.INameChooser for base methods.
1185    """
1186    def checkName(name, attr=None):
1187        """Check whether an object name is valid.
1188
1189        Raises a user error if the name is not valid.
1190        """
1191
1192    def chooseName(name, attr=None):
1193        """Choose a unique valid file id for the object.
1194
1195        The given name may be taken into account when choosing the
1196        name (file id).
1197
1198        chooseName is expected to always choose a valid file id (that
1199        would pass the checkName test) and never raise an error.
1200
1201        If `attr` is not ``None`` it might been taken into account as
1202        well when generating the file id. Usual behaviour is to
1203        interpret `attr` as a hint for what type of file for a given
1204        context should be stored if there are several types
1205        possible. For instance for a certain student some file could
1206        be the connected passport photograph or some certificate scan
1207        or whatever. Each of them has to be stored in a different
1208        location so setting `attr` to a sensible value should give
1209        different file ids returned.
1210        """
1211
1212class IExtFileStore(IFileRetrieval):
1213    """A file storage that stores files in filesystem (not as blobs).
1214    """
1215    root = schema.TextLine(
1216        title = u'Root path of file store.',
1217        )
1218
1219    def getFile(file_id):
1220        """Get raw file data stored under file with `file_id`.
1221
1222        Returns a file descriptor open for reading or ``None`` if the
1223        file cannot be found.
1224        """
1225
1226    def getFileByContext(context, attr=None):
1227        """Get raw file data stored for the given context.
1228
1229        Returns a file descriptor open for reading or ``None`` if no
1230        such file can be found.
1231
1232        Both, `context` and `attr` might be used to find (`context`)
1233        and feed (`attr`) an appropriate file name chooser.
1234
1235        This is a convenience method.
1236        """
1237
1238    def deleteFile(file_id):
1239        """Delete file stored under `file_id`.
1240
1241        Remove file from filestore so, that it is not available
1242        anymore on next call to getFile for the same file_id.
1243
1244        Should not complain if no such file exists.
1245        """
1246
1247    def deleteFileByContext(context, attr=None):
1248        """Delete file for given `context` and `attr`.
1249
1250        Both, `context` and `attr` might be used to find (`context`)
1251        and feed (`attr`) an appropriate file name chooser.
1252
1253        This is a convenience method.
1254        """
1255
1256    def createFile(filename, f):
1257        """Create file given by f with filename `filename`
1258
1259        Returns a hurry.file.File-based object.
1260        """
1261
1262class IFileStoreHandler(Interface):
1263    """Filestore handlers handle specific files for file stores.
1264
1265    If a file to store/get provides a specific filename, a file store
1266    looks up special handlers for that type of file.
1267
1268    """
1269    def pathFromFileID(store, root, filename):
1270        """Turn file id into path to store.
1271
1272        Returned path should be absolute.
1273        """
1274
1275    def createFile(store, root, filename, file_id, file):
1276        """Return some hurry.file based on `store` and `file_id`.
1277
1278        Some kind of callback method called by file stores to create
1279        file objects from file_id.
1280
1281        Returns a tuple ``(raw_file, path, file_like_obj)`` where the
1282        ``file_like_obj`` should be a HurryFile, a KofaImageFile or
1283        similar. ``raw_file`` is the (maybe changed) input file and
1284        ``path`` the relative internal path to store the file at.
1285
1286        Please make sure the ``raw_file`` is opened for reading and
1287        the file descriptor set at position 0 when returned.
1288
1289        This method also gets the raw input file object that is about
1290        to be stored and is expected to raise any exceptions if some
1291        kind of validation or similar fails.
1292        """
1293
1294class IPDF(Interface):
1295    """A PDF representation of some context.
1296    """
1297
1298    def __call__(view=None, note=None):
1299        """Create a bytestream representing a PDF from context.
1300
1301        If `view` is passed in additional infos might be rendered into
1302        the document.
1303
1304        `note` is optional HTML rendered at bottom of the created
1305        PDF. Please consider the limited reportlab support for HTML,
1306        but using font-tags and friends you certainly can get the
1307        desired look.
1308        """
1309
1310class IMailService(Interface):
1311    """A mail service.
1312    """
1313
1314    def __call__():
1315        """Get the default mail delivery.
1316        """
1317
1318
1319class IDataCenterConfig(Interface):
1320    path = Path(
1321        title = u'Path',
1322        description = u"Directory where the datacenter should store "
1323                      u"files by default (adjustable in web UI).",
1324        required = True,
1325        )
1326
1327#
1328# Asynchronous job handling and related
1329#
1330class IJobManager(IKofaObject):
1331    """A manager for asynchronous running jobs (tasks).
1332    """
1333    def put(job, site=None):
1334        """Put a job into task queue.
1335
1336        If no `site` is given, queue job in context of current local
1337        site.
1338
1339        Returns a job_id to identify the put job. This job_id is
1340        needed for further references to the job.
1341        """
1342
1343    def jobs(site=None):
1344        """Get an iterable of jobs stored.
1345        """
1346
1347    def get(job_id, site=None):
1348        """Get the job with id `job_id`.
1349
1350        For the `site` parameter see :meth:`put`.
1351        """
1352
1353    def remove(job_id, site=None):
1354        """Remove job with `job_id` from stored jobs.
1355        """
1356
1357    def start_test_job(site=None):
1358        """Start a test job.
1359        """
1360
1361class IProgressable(Interface):
1362    """A component that can indicate its progress status.
1363    """
1364    percent = schema.Float(
1365        title = u'Percent of job done already.',
1366        )
1367
1368class IJobContainer(IContainer):
1369    """A job container contains IJob objects.
1370    """
1371
1372class IExportJob(zc.async.interfaces.IJob):
1373    def __init__(site, exporter_name):
1374        pass
1375
1376    finished = schema.Bool(
1377        title = u'`True` if the job finished.`',
1378        default = False,
1379        )
1380
1381    failed = schema.Bool(
1382        title = u"`True` iff the job finished and didn't provide a file.",
1383        default = None,
1384        )
1385
1386class IExportJobContainer(IKofaObject):
1387    """A component that contains (maybe virtually) export jobs.
1388    """
1389    def start_export_job(exporter_name, user_id, *args, **kwargs):
1390        """Start asynchronous export job.
1391
1392        `exporter_name` is the name of an exporter utility to be used.
1393
1394        `user_id` is the ID of the user that triggers the export.
1395
1396        `args` positional arguments passed to the export job created.
1397
1398        `kwargs` keyword arguments passed to the export job.
1399
1400        The job_id is stored along with exporter name and user id in a
1401        persistent list.
1402
1403        Returns the job ID of the job started.
1404        """
1405
1406    def get_running_export_jobs(user_id=None):
1407        """Get export jobs for user with `user_id` as list of tuples.
1408
1409        Each tuples holds ``<job_id>, <exporter_name>, <user_id>`` in
1410        that order. The ``<exporter_name>`` is the utility name of the
1411        used exporter.
1412
1413        If `user_id` is ``None``, all running jobs are returned.
1414        """
1415
1416    def get_export_jobs_status(user_id=None):
1417        """Get running/completed export jobs for `user_id` as list of tuples.
1418
1419        Each tuple holds ``<raw status>, <status translated>,
1420        <exporter title>`` in that order, where ``<status
1421        translated>`` and ``<exporter title>`` are translated strings
1422        representing the status of the job and the human readable
1423        title of the exporter used.
1424        """
1425
1426    def delete_export_entry(entry):
1427        """Delete the export denoted by `entry`.
1428
1429        Removes `entry` from the local `running_exports` list and also
1430        removes the regarding job via the local job manager.
1431
1432        `entry` is a tuple ``(<job id>, <exporter name>, <user id>)``
1433        as created by :meth:`start_export_job` or returned by
1434        :meth:`get_running_export_jobs`.
1435        """
1436
1437    def entry_from_job_id(job_id):
1438        """Get entry tuple for `job_id`.
1439
1440        Returns ``None`` if no such entry can be found.
1441        """
1442
1443class IExportContainerFinder(Interface):
1444    """A finder for the central export container.
1445    """
1446    def __call__():
1447        """Return the currently used global or site-wide IExportContainer.
1448        """
1449
1450class IFilteredQuery(IKofaObject):
1451    """A query for objects.
1452    """
1453
1454    defaults = schema.Dict(
1455        title = u'Default Parameters',
1456        required = True,
1457        )
1458
1459    def __init__(**parameters):
1460        """Instantiate a filtered query by passing in parameters.
1461        """
1462
1463    def query():
1464        """Get an iterable of objects denoted by the set parameters.
1465
1466        The search should be applied to objects inside current
1467        site. It's the caller's duty to set the correct site before.
1468
1469        Result can be any iterable like a catalog result set, a list,
1470        or similar.
1471        """
1472
1473class IFilteredCatalogQuery(IFilteredQuery):
1474    """A catalog-based query for objects.
1475    """
1476
1477    cat_name = schema.TextLine(
1478        title = u'Registered name of the catalog to search.',
1479        required = True,
1480        )
1481
1482    def query_catalog(catalog):
1483        """Query catalog with the parameters passed to constructor.
1484        """
Note: See TracBrowser for help on using the repository browser.