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

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

Improve description.

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