source: main/waeup.ikoba/branches/uli-payments/src/waeup/ikoba/interfaces.py @ 12098

Last change on this file since 12098 was 11991, checked in by uli, 10 years ago

Add interface for ZCML directive pointing to paypal config.

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