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

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

AAUE needs a second global matric number counter. We can only add this counter in the base package.

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