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

Last change on this file since 9480 was 9423, checked in by Henrik Bettermann, 12 years ago

Use addBedticket properly.

Implement maintenance fee payment in base package and ensure that maintenance (rent) can only be paid if bed has been booked in current session.

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