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