[7193] | 1 | ## $Id: interfaces.py 7323 2011-12-10 09:33:46Z 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] | 18 | import os |
---|
[7221] | 19 | import re |
---|
[6915] | 20 | from datetime import datetime |
---|
[7063] | 21 | from hurry.file.interfaces import IFileRetrieval |
---|
[6353] | 22 | from hurry.workflow.interfaces import IWorkflow, IWorkflowInfo |
---|
[4789] | 23 | from zc.sourcefactory.basic import BasicSourceFactory |
---|
[6147] | 24 | from zope import schema |
---|
[7233] | 25 | from zope.pluggableauth.interfaces import IPrincipalInfo |
---|
| 26 | from zope.security.interfaces import IGroupClosureAwarePrincipal as IPrincipal |
---|
[4789] | 27 | from zope.component import getUtility |
---|
[4882] | 28 | from zope.component.interfaces import IObjectEvent |
---|
[7063] | 29 | from zope.container.interfaces import INameChooser |
---|
[5955] | 30 | from zope.interface import Interface, Attribute, implements |
---|
[4789] | 31 | from zope.schema.vocabulary import SimpleVocabulary, SimpleTerm |
---|
[3521] | 32 | |
---|
[6990] | 33 | CREATED = 'created' |
---|
| 34 | ADMITTED = 'admitted' |
---|
| 35 | CLEARANCE = 'clearance started' |
---|
| 36 | REQUESTED = 'clearance requested' |
---|
| 37 | CLEARED = 'cleared' |
---|
| 38 | PAID = 'school fee paid' |
---|
| 39 | RETURNING = 'returning' |
---|
| 40 | REGISTERED = 'courses registered' |
---|
| 41 | VALIDATED = 'courses validated' |
---|
| 42 | |
---|
[6361] | 43 | default_frontpage = u'' + open(os.path.join( |
---|
| 44 | os.path.dirname(__file__), 'frontpage.rst'), 'rb').read() |
---|
| 45 | |
---|
[7321] | 46 | def SimpleSIRPVocabulary(*terms): |
---|
[6915] | 47 | """A well-buildt vocabulary provides terms with a value, token and |
---|
| 48 | title for each term |
---|
| 49 | """ |
---|
| 50 | return SimpleVocabulary([ |
---|
| 51 | SimpleTerm(value, value, title) for title, value in terms]) |
---|
| 52 | |
---|
| 53 | def year_range(): |
---|
| 54 | curr_year = datetime.now().year |
---|
| 55 | return range(curr_year - 2, curr_year + 5) |
---|
| 56 | |
---|
| 57 | def academic_sessions(): |
---|
| 58 | curr_year = datetime.now().year |
---|
| 59 | year_range = range(curr_year - 10, curr_year + 2) |
---|
| 60 | return [('%s/%s' % (year,year+1), year) for year in year_range] |
---|
| 61 | |
---|
[7321] | 62 | academic_sessions_vocab = SimpleSIRPVocabulary(*academic_sessions()) |
---|
[6915] | 63 | |
---|
[7321] | 64 | registration_states_vocab = SimpleSIRPVocabulary( |
---|
[6990] | 65 | ('created', CREATED), |
---|
| 66 | ('admitted', ADMITTED), |
---|
| 67 | ('clearance started', CLEARANCE), |
---|
| 68 | ('clearance requested', REQUESTED), |
---|
| 69 | ('cleared', CLEARED), |
---|
| 70 | ('school fee paid', PAID), |
---|
| 71 | ('returning', RETURNING), |
---|
| 72 | ('courses registered', REGISTERED), |
---|
| 73 | ('courses validated', VALIDATED), |
---|
| 74 | ) |
---|
| 75 | |
---|
[7221] | 76 | # Define a valiation method for email addresses |
---|
| 77 | class NotAnEmailAddress(schema.ValidationError): |
---|
| 78 | __doc__ = u"Invalid email address" |
---|
| 79 | |
---|
| 80 | check_email = re.compile( |
---|
| 81 | r"[a-zA-Z0-9._%-]+@([a-zA-Z0-9-]+.)*[a-zA-Z]{2,4}").match |
---|
| 82 | |
---|
| 83 | def validate_email(value): |
---|
| 84 | if not check_email(value): |
---|
| 85 | raise NotAnEmailAddress(value) |
---|
| 86 | return True |
---|
| 87 | |
---|
[4858] | 88 | class FatalCSVError(Exception): |
---|
| 89 | """Some row could not be processed. |
---|
| 90 | """ |
---|
| 91 | pass |
---|
| 92 | |
---|
[6226] | 93 | class DuplicationError(Exception): |
---|
| 94 | """An exception that can be raised when duplicates are found. |
---|
| 95 | |
---|
| 96 | When raising :exc:`DuplicationError` you can, beside the usual |
---|
| 97 | message, specify a list of objects which are duplicates. These |
---|
| 98 | values can be used by catching code to print something helpful or |
---|
| 99 | similar. |
---|
| 100 | """ |
---|
| 101 | def __init__(self, msg, entries=[]): |
---|
| 102 | self.msg = msg |
---|
| 103 | self.entries = entries |
---|
| 104 | |
---|
| 105 | def __str__(self): |
---|
| 106 | return '%r' % self.msg |
---|
| 107 | |
---|
[6143] | 108 | class RoleSource(BasicSourceFactory): |
---|
[7178] | 109 | """A source for site roles. |
---|
[6508] | 110 | """ |
---|
[6143] | 111 | def getValues(self): |
---|
[6157] | 112 | # late import: in interfaces we should not import local modules |
---|
[7186] | 113 | from waeup.sirp.permissions import get_waeup_role_names |
---|
| 114 | return get_waeup_role_names() |
---|
[6157] | 115 | |
---|
| 116 | def getTitle(self, value): |
---|
| 117 | # late import: in interfaces we should not import local modules |
---|
[7186] | 118 | from waeup.sirp.permissions import get_all_roles |
---|
| 119 | roles = dict(get_all_roles()) |
---|
[6157] | 120 | if value in roles.keys(): |
---|
| 121 | title = roles[value].title |
---|
[6569] | 122 | if '.' in title: |
---|
| 123 | title = title.split('.', 2)[1] |
---|
[6157] | 124 | return title |
---|
[6143] | 125 | |
---|
[7313] | 126 | class CaptchaSource(BasicSourceFactory): |
---|
| 127 | """A source for captchas. |
---|
| 128 | """ |
---|
| 129 | def getValues(self): |
---|
[7323] | 130 | captchas = ['No captcha', 'Testing captcha', 'ReCaptcha'] |
---|
[7313] | 131 | try: |
---|
| 132 | # we have to 'try' because IConfiguration can only handle |
---|
| 133 | # interfaces from w.s.interface. |
---|
| 134 | from waeup.sirp.browser.interfaces import ICaptchaManager |
---|
| 135 | except: |
---|
| 136 | return captchas |
---|
| 137 | return sorted(getUtility(ICaptchaManager).getAvailCaptchas().keys()) |
---|
| 138 | |
---|
| 139 | def getTitle(self, value): |
---|
| 140 | return value |
---|
| 141 | |
---|
[7321] | 142 | class ISIRPObject(Interface): |
---|
| 143 | """A SIRP object. |
---|
[5663] | 144 | |
---|
| 145 | This is merely a marker interface. |
---|
[4789] | 146 | """ |
---|
| 147 | |
---|
[7321] | 148 | class IUniversity(ISIRPObject): |
---|
[3521] | 149 | """Representation of a university. |
---|
| 150 | """ |
---|
[5955] | 151 | |
---|
[6065] | 152 | |
---|
[7321] | 153 | class ISIRPContainer(ISIRPObject): |
---|
| 154 | """A container for SIRP objects. |
---|
[4789] | 155 | """ |
---|
| 156 | |
---|
[7321] | 157 | class ISIRPContained(ISIRPObject): |
---|
| 158 | """An item contained in an ISIRPContainer. |
---|
[4789] | 159 | """ |
---|
[6136] | 160 | |
---|
[7321] | 161 | class ISIRPExporter(Interface): |
---|
[4789] | 162 | """An exporter for objects. |
---|
| 163 | """ |
---|
| 164 | def export(obj, filepath=None): |
---|
| 165 | """Export by pickling. |
---|
| 166 | |
---|
| 167 | Returns a file-like object containing a representation of `obj`. |
---|
| 168 | |
---|
| 169 | This is done using `pickle`. If `filepath` is ``None``, a |
---|
| 170 | `cStringIO` object is returned, that contains the saved data. |
---|
| 171 | """ |
---|
| 172 | |
---|
[7321] | 173 | class ISIRPXMLExporter(Interface): |
---|
[4789] | 174 | """An XML exporter for objects. |
---|
| 175 | """ |
---|
| 176 | def export(obj, filepath=None): |
---|
| 177 | """Export as XML. |
---|
| 178 | |
---|
| 179 | Returns an XML representation of `obj`. |
---|
| 180 | |
---|
| 181 | If `filepath` is ``None``, a StringIO` object is returned, |
---|
| 182 | that contains the transformed data. |
---|
| 183 | """ |
---|
| 184 | |
---|
[7321] | 185 | class ISIRPXMLImporter(Interface): |
---|
[4789] | 186 | """An XML import for objects. |
---|
| 187 | """ |
---|
| 188 | def doImport(filepath): |
---|
| 189 | """Create Python object from XML. |
---|
| 190 | |
---|
| 191 | Returns a Python object. |
---|
| 192 | """ |
---|
| 193 | |
---|
[4858] | 194 | class IBatchProcessor(Interface): |
---|
| 195 | """A batch processor that handles mass-operations. |
---|
| 196 | """ |
---|
| 197 | name = schema.TextLine( |
---|
| 198 | title = u'Importer name' |
---|
| 199 | ) |
---|
| 200 | |
---|
| 201 | mode = schema.Choice( |
---|
| 202 | title = u'Import mode', |
---|
| 203 | values = ['create', 'update', 'remove'] |
---|
| 204 | ) |
---|
[6136] | 205 | |
---|
[5476] | 206 | def doImport(path, headerfields, mode='create', user='Unknown', |
---|
| 207 | logger=None): |
---|
[4858] | 208 | """Read data from ``path`` and update connected object. |
---|
[5476] | 209 | |
---|
| 210 | `headerfields` is a list of headerfields as read from the file |
---|
| 211 | to import. |
---|
| 212 | |
---|
| 213 | `mode` gives the import mode to use (``'create'``, |
---|
| 214 | ``'update'``, or ``'remove'``. |
---|
| 215 | |
---|
| 216 | `user` is a string describing the user performing the |
---|
| 217 | import. Normally fetched from current principal. |
---|
| 218 | |
---|
| 219 | `logger` is the logger to use during import. |
---|
[4858] | 220 | """ |
---|
| 221 | |
---|
[7321] | 222 | class IContactForm(ISIRPObject): |
---|
[7225] | 223 | """A contact form. |
---|
| 224 | """ |
---|
| 225 | |
---|
| 226 | email_from = schema.ASCIILine( |
---|
| 227 | title = u'Email Address:', |
---|
| 228 | default = None, |
---|
| 229 | required = True, |
---|
| 230 | constraint=validate_email, |
---|
| 231 | ) |
---|
| 232 | |
---|
| 233 | email_to = schema.ASCIILine( |
---|
| 234 | title = u'Email to:', |
---|
| 235 | default = None, |
---|
| 236 | required = True, |
---|
| 237 | constraint=validate_email, |
---|
| 238 | ) |
---|
| 239 | |
---|
| 240 | subject = schema.TextLine( |
---|
| 241 | title = u'Subject:', |
---|
| 242 | required = True,) |
---|
| 243 | |
---|
| 244 | fullname = schema.TextLine( |
---|
| 245 | title = u'Full Name:', |
---|
| 246 | required = True,) |
---|
| 247 | |
---|
| 248 | body = schema.Text( |
---|
| 249 | title = u'Text:', |
---|
| 250 | required = True,) |
---|
| 251 | |
---|
[7233] | 252 | class ISIRPPrincipalInfo(IPrincipalInfo): |
---|
[7321] | 253 | """Infos about principals that are users of SIRP SIRP. |
---|
[7233] | 254 | """ |
---|
| 255 | email = Attribute("The email address of a user") |
---|
| 256 | phone = Attribute("The phone number of a user") |
---|
[7225] | 257 | |
---|
[7233] | 258 | |
---|
| 259 | class ISIRPPrincipal(IPrincipal): |
---|
[7321] | 260 | """A principle for SIRP SIRP. |
---|
[7233] | 261 | |
---|
| 262 | This interface extends zope.security.interfaces.IPrincipal and |
---|
| 263 | requires also an `id` and other attributes defined there. |
---|
| 264 | """ |
---|
| 265 | |
---|
| 266 | email = schema.TextLine( |
---|
| 267 | title = u'Email', |
---|
| 268 | description = u'', |
---|
| 269 | required=False,) |
---|
| 270 | |
---|
[7323] | 271 | phone = schema.TextLine( |
---|
[7233] | 272 | title = u'Phone', |
---|
| 273 | description = u'', |
---|
| 274 | required=False,) |
---|
| 275 | |
---|
[7321] | 276 | class IUserAccount(ISIRPObject): |
---|
[4789] | 277 | """A user account. |
---|
| 278 | """ |
---|
| 279 | name = schema.TextLine( |
---|
| 280 | title = u'User ID', |
---|
[6512] | 281 | description = u'Login name of user', |
---|
[4789] | 282 | required = True,) |
---|
[7221] | 283 | |
---|
[4789] | 284 | title = schema.TextLine( |
---|
[6512] | 285 | title = u'Name', |
---|
| 286 | description = u'Real name of user', |
---|
[4789] | 287 | required = False,) |
---|
[7221] | 288 | |
---|
[7197] | 289 | description = schema.Text( |
---|
| 290 | title = u'Description/Notice', |
---|
[4789] | 291 | required = False,) |
---|
[7221] | 292 | |
---|
| 293 | email = schema.ASCIILine( |
---|
| 294 | title = u'Email', |
---|
| 295 | default = None, |
---|
[7222] | 296 | required = True, |
---|
[7221] | 297 | constraint=validate_email, |
---|
| 298 | ) |
---|
| 299 | |
---|
[7323] | 300 | phone = schema.TextLine( |
---|
[7233] | 301 | title = u'Phone', |
---|
| 302 | default = None, |
---|
| 303 | required = True, |
---|
| 304 | ) |
---|
| 305 | |
---|
[4789] | 306 | roles = schema.List( |
---|
[7178] | 307 | title = u'Portal roles', |
---|
[4789] | 308 | value_type = schema.Choice(source=RoleSource())) |
---|
[6136] | 309 | |
---|
[7147] | 310 | class IPasswordValidator(Interface): |
---|
| 311 | """A password validator utility. |
---|
| 312 | """ |
---|
[6136] | 313 | |
---|
[7147] | 314 | def validate_password(password, password_repeat): |
---|
| 315 | """Validates a password by comparing it with |
---|
| 316 | control password and checking some other requirements. |
---|
| 317 | """ |
---|
| 318 | |
---|
| 319 | |
---|
[7321] | 320 | class IUsersContainer(ISIRPObject): |
---|
[4789] | 321 | """A container for users (principals). |
---|
| 322 | |
---|
| 323 | These users are used for authentication purposes. |
---|
| 324 | """ |
---|
| 325 | |
---|
| 326 | def addUser(name, password, title=None, description=None): |
---|
| 327 | """Add a user. |
---|
| 328 | """ |
---|
| 329 | |
---|
| 330 | def delUser(name): |
---|
| 331 | """Delete a user if it exists. |
---|
| 332 | """ |
---|
| 333 | |
---|
[6141] | 334 | class ILocalRolesAssignable(Interface): |
---|
| 335 | """The local roles assignable to an object. |
---|
| 336 | """ |
---|
| 337 | def __call__(): |
---|
| 338 | """Returns a list of dicts. |
---|
| 339 | |
---|
| 340 | Each dict contains a ``name`` referring to the role assignable |
---|
| 341 | for the specified object and a `title` to describe the range |
---|
| 342 | of users to which this role can be assigned. |
---|
| 343 | """ |
---|
| 344 | |
---|
[7321] | 345 | class IConfigurationContainer(ISIRPObject): |
---|
[6907] | 346 | """A container for session configuration objects. |
---|
| 347 | """ |
---|
| 348 | |
---|
| 349 | name = schema.TextLine( |
---|
| 350 | title = u'Name of University', |
---|
| 351 | default = u'Sample University', |
---|
| 352 | required = True, |
---|
| 353 | ) |
---|
| 354 | |
---|
| 355 | title = schema.TextLine( |
---|
[6990] | 356 | title = u'Title of Frontpage', |
---|
[6907] | 357 | default = u'Welcome to the Student Information and Registration ' + |
---|
| 358 | u'Portal of Sample University', |
---|
| 359 | required = False, |
---|
| 360 | ) |
---|
| 361 | |
---|
| 362 | skin = schema.Choice( |
---|
| 363 | title = u'Skin', |
---|
| 364 | default = u'gray waeup theme', |
---|
| 365 | vocabulary = 'waeup.sirp.browser.theming.ThemesVocabulary', |
---|
| 366 | required = True, |
---|
| 367 | ) |
---|
| 368 | |
---|
| 369 | frontpage = schema.Text( |
---|
| 370 | title = u'Content in reST format', |
---|
| 371 | required = False, |
---|
| 372 | default = default_frontpage, |
---|
| 373 | ) |
---|
| 374 | |
---|
[6990] | 375 | accommodation_session = schema.Choice( |
---|
| 376 | title = u'Accommodation Booking Session', |
---|
| 377 | source = academic_sessions_vocab, |
---|
| 378 | default = datetime.now().year, |
---|
| 379 | required = False, |
---|
| 380 | readonly = False, |
---|
| 381 | ) |
---|
| 382 | |
---|
| 383 | accommodation_states = schema.List( |
---|
| 384 | title = u'Allowed States for Accommodation Booking', |
---|
| 385 | value_type = schema.Choice( |
---|
| 386 | vocabulary = registration_states_vocab, |
---|
| 387 | ), |
---|
| 388 | default = [], |
---|
| 389 | ) |
---|
| 390 | |
---|
[7223] | 391 | name_admin = schema.TextLine( |
---|
| 392 | title = u'Name of Administrator', |
---|
| 393 | default = u'Administrator', |
---|
| 394 | required = False, |
---|
| 395 | ) |
---|
| 396 | |
---|
[7221] | 397 | email_admin = schema.ASCIILine( |
---|
[7223] | 398 | title = u'Email Address of Administrator', |
---|
[7221] | 399 | default = 'contact@waeup.org', |
---|
| 400 | required = False, |
---|
| 401 | constraint=validate_email, |
---|
| 402 | ) |
---|
| 403 | |
---|
| 404 | email_subject = schema.TextLine( |
---|
| 405 | title = u'Subject of Email to Administrator', |
---|
| 406 | default = u'SIRP Contact', |
---|
| 407 | required = False, |
---|
| 408 | ) |
---|
| 409 | |
---|
| 410 | smtp_server = schema.TextLine( |
---|
| 411 | title = u'Adress of SMTP Server', |
---|
| 412 | default = u'localhost', |
---|
| 413 | required = False, |
---|
| 414 | ) |
---|
| 415 | |
---|
| 416 | smtp_requires_login = schema.Bool( |
---|
| 417 | title = u'Server requires login', |
---|
| 418 | default = False, |
---|
| 419 | ) |
---|
| 420 | |
---|
| 421 | smtp_username = schema.TextLine( |
---|
| 422 | title = u'Username for SMTP Account', |
---|
| 423 | default = None, |
---|
| 424 | required = False, |
---|
| 425 | ) |
---|
| 426 | |
---|
| 427 | smtp_password = schema.Password( |
---|
| 428 | title = u'Password for SMTP Account', |
---|
| 429 | default = None, |
---|
| 430 | required = False, |
---|
| 431 | ) |
---|
| 432 | |
---|
[7313] | 433 | captcha = schema.Choice( |
---|
| 434 | title = u'Captcha used for applicant registration pages', |
---|
| 435 | source = CaptchaSource(), |
---|
| 436 | default = u'No captcha', |
---|
| 437 | required = True, |
---|
| 438 | ) |
---|
[7221] | 439 | |
---|
[7321] | 440 | class ISessionConfiguration(ISIRPObject): |
---|
[6915] | 441 | """A session configuration object. |
---|
[6907] | 442 | """ |
---|
| 443 | |
---|
[6915] | 444 | academic_session = schema.Choice( |
---|
| 445 | title = u'Academic Session', |
---|
| 446 | source = academic_sessions_vocab, |
---|
| 447 | default = None, |
---|
| 448 | required = True, |
---|
| 449 | readonly = True, |
---|
| 450 | ) |
---|
| 451 | |
---|
[7021] | 452 | school_fee_base = schema.Int( |
---|
[6915] | 453 | title = u'School Fee', |
---|
| 454 | default = 0, |
---|
| 455 | ) |
---|
| 456 | |
---|
[6929] | 457 | surcharge_1 = schema.Int( |
---|
| 458 | title = u'Surcharge 1', |
---|
| 459 | default = 0, |
---|
| 460 | ) |
---|
| 461 | |
---|
| 462 | surcharge_2 = schema.Int( |
---|
| 463 | title = u'Surcharge 2', |
---|
| 464 | default = 0, |
---|
| 465 | ) |
---|
| 466 | |
---|
| 467 | surcharge_3 = schema.Int( |
---|
| 468 | title = u'Surcharge 3', |
---|
| 469 | default = 0, |
---|
| 470 | ) |
---|
| 471 | |
---|
[7022] | 472 | clearance_fee = schema.Int( |
---|
[6929] | 473 | title = u'Clearance Fee', |
---|
[6916] | 474 | default = 0, |
---|
| 475 | ) |
---|
| 476 | |
---|
[6993] | 477 | booking_fee = schema.Int( |
---|
| 478 | title = u'Booking Fee', |
---|
| 479 | default = 0, |
---|
| 480 | ) |
---|
| 481 | |
---|
[7250] | 482 | acceptance_fee = schema.Int( |
---|
| 483 | title = u'Acceptance Fee', |
---|
| 484 | default = 0, |
---|
| 485 | ) |
---|
| 486 | |
---|
[6918] | 487 | def getSessionString(): |
---|
| 488 | """Returns the session string from the vocabulary. |
---|
| 489 | """ |
---|
| 490 | |
---|
| 491 | |
---|
[6916] | 492 | class ISessionConfigurationAdd(ISessionConfiguration): |
---|
| 493 | """A session configuration object in add mode. |
---|
| 494 | """ |
---|
| 495 | |
---|
| 496 | academic_session = schema.Choice( |
---|
| 497 | title = u'Academic Session', |
---|
| 498 | source = academic_sessions_vocab, |
---|
| 499 | default = None, |
---|
| 500 | required = True, |
---|
| 501 | readonly = False, |
---|
| 502 | ) |
---|
| 503 | |
---|
| 504 | ISessionConfigurationAdd['academic_session'].order = ISessionConfiguration[ |
---|
| 505 | 'academic_session'].order |
---|
| 506 | |
---|
[7321] | 507 | class IDataCenter(ISIRPObject): |
---|
[4789] | 508 | """A data center. |
---|
| 509 | |
---|
| 510 | TODO : declare methods, at least those needed by pages. |
---|
| 511 | """ |
---|
| 512 | pass |
---|
| 513 | |
---|
| 514 | class IDataCenterFile(Interface): |
---|
| 515 | """A data center file. |
---|
| 516 | """ |
---|
[4858] | 517 | |
---|
| 518 | name = schema.TextLine( |
---|
| 519 | title = u'Filename') |
---|
| 520 | |
---|
| 521 | size = schema.TextLine( |
---|
| 522 | title = u'Human readable file size') |
---|
| 523 | |
---|
| 524 | uploaddate = schema.TextLine( |
---|
| 525 | title = u'Human readable upload datetime') |
---|
| 526 | |
---|
| 527 | lines = schema.Int( |
---|
| 528 | title = u'Number of lines in file') |
---|
[6136] | 529 | |
---|
[4789] | 530 | def getDate(): |
---|
| 531 | """Get creation timestamp from file in human readable form. |
---|
| 532 | """ |
---|
| 533 | |
---|
| 534 | def getSize(): |
---|
| 535 | """Get human readable size of file. |
---|
| 536 | """ |
---|
[4858] | 537 | |
---|
| 538 | def getLinesNumber(): |
---|
| 539 | """Get number of lines of file. |
---|
| 540 | """ |
---|
[4882] | 541 | |
---|
| 542 | class IDataCenterStorageMovedEvent(IObjectEvent): |
---|
| 543 | """Emitted, when the storage of a datacenter changes. |
---|
| 544 | """ |
---|
[5007] | 545 | |
---|
[6136] | 546 | class IObjectUpgradeEvent(IObjectEvent): |
---|
| 547 | """Can be fired, when an object shall be upgraded. |
---|
| 548 | """ |
---|
| 549 | |
---|
[6180] | 550 | class ILocalRoleSetEvent(IObjectEvent): |
---|
| 551 | """A local role was granted/revoked for a principal on an object. |
---|
| 552 | """ |
---|
| 553 | role_id = Attribute( |
---|
| 554 | "The role id that was set.") |
---|
| 555 | principal_id = Attribute( |
---|
| 556 | "The principal id for which the role was granted/revoked.") |
---|
| 557 | granted = Attribute( |
---|
| 558 | "Boolean. If false, then the role was revoked.") |
---|
| 559 | |
---|
[5007] | 560 | class IQueryResultItem(Interface): |
---|
| 561 | """An item in a search result. |
---|
| 562 | """ |
---|
| 563 | url = schema.TextLine( |
---|
| 564 | title = u'URL that links to the found item') |
---|
| 565 | title = schema.TextLine( |
---|
| 566 | title = u'Title displayed in search results.') |
---|
| 567 | description = schema.Text( |
---|
| 568 | title = u'Longer description of the item found.') |
---|
[6136] | 569 | |
---|
[7321] | 570 | class ISIRPPluggable(Interface): |
---|
| 571 | """A component that might be plugged into a SIRP SIRP app. |
---|
[5658] | 572 | |
---|
| 573 | Components implementing this interface are referred to as |
---|
| 574 | 'plugins'. They are normally called when a new |
---|
| 575 | :class:`waeup.sirp.app.University` instance is created. |
---|
| 576 | |
---|
| 577 | Plugins can setup and update parts of the central site without the |
---|
| 578 | site object (normally a :class:`waeup.sirp.app.University` object) |
---|
| 579 | needing to know about that parts. The site simply collects all |
---|
| 580 | available plugins, calls them and the plugins care for their |
---|
[5676] | 581 | respective subarea like the applicants area or the datacenter |
---|
[5658] | 582 | area. |
---|
| 583 | |
---|
| 584 | Currently we have no mechanism to define an order of plugins. A |
---|
| 585 | plugin should therefore make no assumptions about the state of the |
---|
| 586 | site or other plugins being run before and instead do appropriate |
---|
| 587 | checks if necessary. |
---|
| 588 | |
---|
| 589 | Updates can be triggered for instance by the respective form in |
---|
| 590 | the site configuration. You normally do updates when the |
---|
| 591 | underlying software changed. |
---|
[5013] | 592 | """ |
---|
[5069] | 593 | def setup(site, name, logger): |
---|
| 594 | """Create an instance of the plugin. |
---|
[5013] | 595 | |
---|
[5658] | 596 | The method is meant to be called by the central app (site) |
---|
| 597 | when it is created. |
---|
| 598 | |
---|
| 599 | `site`: |
---|
| 600 | The site that requests a setup. |
---|
| 601 | |
---|
| 602 | `name`: |
---|
| 603 | The name under which the plugin was registered (utility name). |
---|
| 604 | |
---|
| 605 | `logger`: |
---|
| 606 | A standard Python logger for the plugins use. |
---|
[5069] | 607 | """ |
---|
| 608 | |
---|
| 609 | def update(site, name, logger): |
---|
| 610 | """Method to update an already existing plugin. |
---|
| 611 | |
---|
| 612 | This might be called by a site when something serious |
---|
[5658] | 613 | changes. It is a poor-man replacement for Zope generations |
---|
| 614 | (but probably more comprehensive and better understandable). |
---|
| 615 | |
---|
| 616 | `site`: |
---|
| 617 | The site that requests an update. |
---|
| 618 | |
---|
| 619 | `name`: |
---|
| 620 | The name under which the plugin was registered (utility name). |
---|
| 621 | |
---|
| 622 | `logger`: |
---|
| 623 | A standard Python logger for the plugins use. |
---|
[5069] | 624 | """ |
---|
[5898] | 625 | |
---|
[5899] | 626 | class IAuthPluginUtility(Interface): |
---|
[5898] | 627 | """A component that cares for authentication setup at site creation. |
---|
| 628 | |
---|
| 629 | Utilities providing this interface are looked up when a Pluggable |
---|
| 630 | Authentication Utility (PAU) for any |
---|
| 631 | :class:`waeup.sirp.app.University` instance is created and put |
---|
| 632 | into ZODB. |
---|
| 633 | |
---|
| 634 | The setup-code then calls the `register` method of the utility and |
---|
| 635 | expects a modified (or unmodified) version of the PAU back. |
---|
| 636 | |
---|
| 637 | This allows to define any authentication setup modifications by |
---|
| 638 | submodules or third-party modules/packages. |
---|
| 639 | """ |
---|
| 640 | |
---|
| 641 | def register(pau): |
---|
| 642 | """Register any plugins wanted to be in the PAU. |
---|
| 643 | """ |
---|
| 644 | |
---|
| 645 | def unregister(pau): |
---|
| 646 | """Unregister any plugins not wanted to be in the PAU. |
---|
| 647 | """ |
---|
[6273] | 648 | |
---|
| 649 | class IObjectConverter(Interface): |
---|
| 650 | """Object converters are available as simple adapters, adapting |
---|
| 651 | interfaces (not regular instances). |
---|
| 652 | |
---|
| 653 | """ |
---|
| 654 | |
---|
[6277] | 655 | def fromStringDict(self, data_dict, context, form_fields=None): |
---|
| 656 | """Convert values in `data_dict`. |
---|
[6273] | 657 | |
---|
[6277] | 658 | Converts data in `data_dict` into real values based on |
---|
| 659 | `context` and `form_fields`. |
---|
[6273] | 660 | |
---|
[6277] | 661 | `data_dict` is a mapping (dict) from field names to values |
---|
| 662 | represented as strings. |
---|
[6273] | 663 | |
---|
[6277] | 664 | The fields (keys) to convert can be given in optional |
---|
| 665 | `form_fields`. If given, form_fields should be an instance of |
---|
| 666 | :class:`zope.formlib.form.Fields`. Suitable instances are for |
---|
| 667 | example created by :class:`grok.AutoFields`. |
---|
[6273] | 668 | |
---|
[6277] | 669 | If no `form_fields` are given, a default is computed from the |
---|
| 670 | associated interface. |
---|
[6273] | 671 | |
---|
[6277] | 672 | The `context` can be an existing object (implementing the |
---|
| 673 | associated interface) or a factory name. If it is a string, we |
---|
| 674 | try to create an object using |
---|
| 675 | :func:`zope.component.createObject`. |
---|
| 676 | |
---|
| 677 | Returns a tuple ``(<FIELD_ERRORS>, <INVARIANT_ERRORS>, |
---|
| 678 | <DATA_DICT>)`` where |
---|
| 679 | |
---|
| 680 | ``<FIELD_ERRORS>`` |
---|
| 681 | is a list of tuples ``(<FIELD_NAME>, <ERROR>)`` for each |
---|
| 682 | error that happened when validating the input data in |
---|
| 683 | `data_dict` |
---|
| 684 | |
---|
| 685 | ``<INVARIANT_ERRORS>`` |
---|
| 686 | is a list of invariant errors concerning several fields |
---|
| 687 | |
---|
| 688 | ``<DATA_DICT>`` |
---|
| 689 | is a dict with the values from input dict converted. |
---|
| 690 | |
---|
| 691 | If errors happen, i.e. the error lists are not empty, always |
---|
| 692 | an empty ``<DATA_DICT>`` is returned. |
---|
| 693 | |
---|
| 694 | If ``<DATA_DICT>` is non-empty, there were no errors. |
---|
[6273] | 695 | """ |
---|
[6293] | 696 | |
---|
[6338] | 697 | class IObjectHistory(Interface): |
---|
| 698 | |
---|
| 699 | messages = schema.List( |
---|
| 700 | title = u'List of messages stored', |
---|
| 701 | required = True, |
---|
| 702 | ) |
---|
| 703 | |
---|
| 704 | def addMessage(message): |
---|
| 705 | """Add a message. |
---|
| 706 | """ |
---|
[6353] | 707 | |
---|
[7321] | 708 | class ISIRPWorkflowInfo(IWorkflowInfo): |
---|
[6353] | 709 | """A :class:`hurry.workflow.workflow.WorkflowInfo` with additional |
---|
| 710 | methods for convenience. |
---|
| 711 | """ |
---|
| 712 | def getManualTransitions(): |
---|
| 713 | """Get allowed manual transitions. |
---|
| 714 | |
---|
| 715 | Get a sorted list of tuples containing the `transition_id` and |
---|
| 716 | `title` of each allowed transition. |
---|
| 717 | """ |
---|
[6481] | 718 | |
---|
| 719 | class ISiteLoggers(Interface): |
---|
| 720 | |
---|
[7321] | 721 | loggers = Attribute("A list or generator of registered SIRPLoggers") |
---|
[6481] | 722 | |
---|
| 723 | def register(name, filename=None, site=None, **options): |
---|
| 724 | """Register a logger `name` which logs to `filename`. |
---|
| 725 | |
---|
| 726 | If `filename` is not given, logfile will be `name` with |
---|
| 727 | ``.log`` as filename extension. |
---|
| 728 | """ |
---|
| 729 | |
---|
| 730 | def unregister(name): |
---|
| 731 | """Unregister a once registered logger. |
---|
| 732 | """ |
---|
| 733 | |
---|
| 734 | class ILogger(Interface): |
---|
| 735 | """A logger cares for setup, update and restarting of a Python logger. |
---|
| 736 | """ |
---|
| 737 | |
---|
| 738 | logger = Attribute("""A :class:`logging.Logger` instance""") |
---|
| 739 | |
---|
| 740 | |
---|
| 741 | def __init__(name, filename=None, site=None, **options): |
---|
[7321] | 742 | """Create a SIRP logger instance. |
---|
[6481] | 743 | """ |
---|
| 744 | |
---|
| 745 | def setup(): |
---|
| 746 | """Create a Python :class:`logging.Logger` instance. |
---|
| 747 | |
---|
| 748 | The created logger is based on the params given by constructor. |
---|
| 749 | """ |
---|
| 750 | |
---|
| 751 | def update(**options): |
---|
| 752 | """Update the logger. |
---|
| 753 | |
---|
| 754 | Updates the logger respecting modified `options` and changed |
---|
| 755 | paths. |
---|
| 756 | """ |
---|
[6754] | 757 | |
---|
| 758 | class ILoggerCollector(Interface): |
---|
| 759 | |
---|
| 760 | def getLoggers(site): |
---|
| 761 | """Return all loggers registered for `site`. |
---|
| 762 | """ |
---|
| 763 | |
---|
| 764 | def registerLogger(site, logging_component): |
---|
| 765 | """Register a logging component residing in `site`. |
---|
| 766 | """ |
---|
| 767 | |
---|
| 768 | def unregisterLogger(site, logging_component): |
---|
| 769 | """Unregister a logger. |
---|
| 770 | """ |
---|
[7063] | 771 | |
---|
| 772 | # |
---|
| 773 | # External File Storage and relatives |
---|
| 774 | # |
---|
| 775 | class IFileStoreNameChooser(INameChooser): |
---|
| 776 | """See zope.container.interfaces.INameChooser for base methods. |
---|
| 777 | """ |
---|
[7066] | 778 | def checkName(name, attr=None): |
---|
[7063] | 779 | """Check whether an object name is valid. |
---|
| 780 | |
---|
| 781 | Raises a user error if the name is not valid. |
---|
| 782 | """ |
---|
| 783 | |
---|
[7066] | 784 | def chooseName(name, attr=None): |
---|
| 785 | """Choose a unique valid file id for the object. |
---|
[7063] | 786 | |
---|
[7066] | 787 | The given name may be taken into account when choosing the |
---|
| 788 | name (file id). |
---|
[7063] | 789 | |
---|
[7066] | 790 | chooseName is expected to always choose a valid file id (that |
---|
| 791 | would pass the checkName test) and never raise an error. |
---|
| 792 | |
---|
| 793 | If `attr` is not ``None`` it might been taken into account as |
---|
| 794 | well when generating the file id. Usual behaviour is to |
---|
| 795 | interpret `attr` as a hint for what type of file for a given |
---|
| 796 | context should be stored if there are several types |
---|
| 797 | possible. For instance for a certain student some file could |
---|
| 798 | be the connected passport photograph or some certificate scan |
---|
| 799 | or whatever. Each of them has to be stored in a different |
---|
| 800 | location so setting `attr` to a sensible value should give |
---|
| 801 | different file ids returned. |
---|
[7063] | 802 | """ |
---|
| 803 | |
---|
| 804 | class IExtFileStore(IFileRetrieval): |
---|
| 805 | """A file storage that stores files in filesystem (not as blobs). |
---|
| 806 | """ |
---|
| 807 | root = schema.TextLine( |
---|
| 808 | title = u'Root path of file store.', |
---|
| 809 | ) |
---|
| 810 | |
---|
| 811 | def getFile(file_id): |
---|
| 812 | """Get raw file data stored under file with `file_id`. |
---|
| 813 | |
---|
| 814 | Returns a file descriptor open for reading or ``None`` if the |
---|
| 815 | file cannot be found. |
---|
| 816 | """ |
---|
| 817 | |
---|
[7071] | 818 | def getFileByContext(context, attr=None): |
---|
[7063] | 819 | """Get raw file data stored for the given context. |
---|
| 820 | |
---|
| 821 | Returns a file descriptor open for reading or ``None`` if no |
---|
| 822 | such file can be found. |
---|
| 823 | |
---|
[7071] | 824 | Both, `context` and `attr` might be used to find (`context`) |
---|
| 825 | and feed (`attr`) an appropriate file name chooser. |
---|
| 826 | |
---|
[7063] | 827 | This is a convenience method. |
---|
| 828 | """ |
---|
| 829 | |
---|
[7090] | 830 | def deleteFile(file_id): |
---|
| 831 | """Delete file stored under `file_id`. |
---|
| 832 | |
---|
| 833 | Remove file from filestore so, that it is not available |
---|
| 834 | anymore on next call to getFile for the same file_id. |
---|
| 835 | |
---|
| 836 | Should not complain if no such file exists. |
---|
| 837 | """ |
---|
| 838 | |
---|
| 839 | def deleteFileByContext(context, attr=None): |
---|
| 840 | """Delete file for given `context` and `attr`. |
---|
| 841 | |
---|
| 842 | Both, `context` and `attr` might be used to find (`context`) |
---|
| 843 | and feed (`attr`) an appropriate file name chooser. |
---|
| 844 | |
---|
| 845 | This is a convenience method. |
---|
| 846 | """ |
---|
| 847 | |
---|
[7063] | 848 | def createFile(filename, f): |
---|
| 849 | """Create file given by f with filename `filename` |
---|
| 850 | |
---|
| 851 | Returns a hurry.file.File-based object. |
---|
| 852 | """ |
---|
| 853 | |
---|
| 854 | class IFileStoreHandler(Interface): |
---|
| 855 | """Filestore handlers handle specific files for file stores. |
---|
| 856 | |
---|
| 857 | If a file to store/get provides a specific filename, a file store |
---|
| 858 | looks up special handlers for that type of file. |
---|
| 859 | |
---|
| 860 | """ |
---|
| 861 | def pathFromFileID(store, root, filename): |
---|
| 862 | """Turn file id into path to store. |
---|
| 863 | |
---|
| 864 | Returned path should be absolute. |
---|
| 865 | """ |
---|
| 866 | |
---|
| 867 | def createFile(store, root, filename, file_id, file): |
---|
| 868 | """Return some hurry.file based on `store` and `file_id`. |
---|
| 869 | |
---|
| 870 | Some kind of callback method called by file stores to create |
---|
| 871 | file objects from file_id. |
---|
| 872 | |
---|
| 873 | Returns a tuple ``(raw_file, path, file_like_obj)`` where the |
---|
[7321] | 874 | ``file_like_obj`` should be a HurryFile, a SIRPImageFile or |
---|
[7063] | 875 | similar. ``raw_file`` is the (maybe changed) input file and |
---|
| 876 | ``path`` the relative internal path to store the file at. |
---|
| 877 | |
---|
| 878 | Please make sure the ``raw_file`` is opened for reading and |
---|
| 879 | the file descriptor set at position 0 when returned. |
---|
| 880 | |
---|
| 881 | This method also gets the raw input file object that is about |
---|
| 882 | to be stored and is expected to raise any exceptions if some |
---|
| 883 | kind of validation or similar fails. |
---|
| 884 | """ |
---|