2009-06-29 07:06:01 -05:00
|
|
|
'''This package contains mixin classes that are mixed in with generated classes:
|
2011-12-05 08:11:29 -06:00
|
|
|
- mixins/BaseMixin is mixed in with standard Zope classes;
|
2010-10-14 07:43:56 -05:00
|
|
|
- mixins/ToolMixin is mixed in with the generated application Tool class.'''
|
2009-06-29 07:06:01 -05:00
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
2014-02-26 03:40:27 -06:00
|
|
|
import os, os.path, re, sys, types, urllib, cgi
|
2011-10-26 03:21:09 -05:00
|
|
|
from appy import Object
|
2013-10-08 15:41:21 -05:00
|
|
|
from appy.px import Px
|
2013-09-24 05:26:31 -05:00
|
|
|
from appy.fields.workflow import UiTransition
|
2011-12-05 08:11:29 -06:00
|
|
|
import appy.gen as gen
|
2010-08-05 11:23:17 -05:00
|
|
|
from appy.gen.utils import *
|
2014-09-11 09:41:08 -05:00
|
|
|
from appy.gen.layout import Table
|
2011-12-05 08:11:29 -06:00
|
|
|
from appy.gen.descriptors import WorkflowDescriptor, ClassDescriptor
|
2014-02-26 03:40:27 -06:00
|
|
|
from appy.shared import utils as sutils
|
2012-06-27 06:27:24 -05:00
|
|
|
from appy.shared.data import rtlLanguages
|
2014-08-07 07:17:21 -05:00
|
|
|
from appy.shared.xml_parser import XmlMarshaller, XmlUnmarshaller
|
2013-01-07 08:30:13 -06:00
|
|
|
from appy.shared.diff import HtmlDiff
|
2009-06-29 07:06:01 -05:00
|
|
|
|
2014-02-26 03:40:27 -06:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
NUMBERED_ID = re.compile('.+\d{4}$')
|
|
|
|
|
2009-06-29 07:06:01 -05:00
|
|
|
# ------------------------------------------------------------------------------
|
2010-10-14 07:43:56 -05:00
|
|
|
class BaseMixin:
|
2011-11-25 11:01:20 -06:00
|
|
|
'''Every Zope class generated by appy.gen inherits from this class or a
|
|
|
|
subclass of it.'''
|
2010-10-14 07:43:56 -05:00
|
|
|
_appy_meta_type = 'Class'
|
2009-06-29 07:06:01 -05:00
|
|
|
|
2010-10-29 07:36:36 -05:00
|
|
|
def get_o(self):
|
2010-11-22 02:36:14 -06:00
|
|
|
'''In some cases, we want the Zope object, we don't know if the current
|
2010-10-29 07:36:36 -05:00
|
|
|
object is a Zope or Appy object. By defining this property,
|
|
|
|
"someObject.o" produces always the Zope object, be someObject an Appy
|
|
|
|
or Zope object.'''
|
|
|
|
return self
|
|
|
|
o = property(get_o)
|
|
|
|
|
2014-07-29 12:21:37 -05:00
|
|
|
def getInitiatorInfo(self, appy=False):
|
2012-06-02 07:36:49 -05:00
|
|
|
'''Gets information about a potential initiator object from the request.
|
2014-10-21 02:25:37 -05:00
|
|
|
Returns a 2-tuple (initiator, field):
|
2014-07-29 12:21:37 -05:00
|
|
|
* initiator is the initiator (Zope or Appy) object;
|
2012-06-02 07:36:49 -05:00
|
|
|
* field is the Ref instance.
|
|
|
|
'''
|
2012-06-02 10:39:05 -05:00
|
|
|
rq = self.REQUEST
|
2014-10-21 02:25:37 -05:00
|
|
|
if not rq.get('nav', '').startswith('ref.'): return None, None
|
2012-06-02 07:36:49 -05:00
|
|
|
splitted = rq['nav'].split('.')
|
2012-06-02 10:39:05 -05:00
|
|
|
initiator = self.getTool().getObject(splitted[1])
|
2014-10-21 02:25:37 -05:00
|
|
|
field = initiator.getAppyType(splitted[2])
|
2014-07-29 12:21:37 -05:00
|
|
|
if appy: initiator = initiator.appy()
|
2014-10-21 02:25:37 -05:00
|
|
|
return initiator, field
|
2012-06-02 07:36:49 -05:00
|
|
|
|
2011-10-11 10:32:23 -05:00
|
|
|
def createOrUpdate(self, created, values,
|
|
|
|
initiator=None, initiatorField=None):
|
2009-10-18 07:52:27 -05:00
|
|
|
'''This method creates (if p_created is True) or updates an object.
|
2010-08-05 11:23:17 -05:00
|
|
|
p_values are manipulated versions of those from the HTTP request.
|
2011-11-25 11:01:20 -06:00
|
|
|
In the case of an object creation from the web (p_created is True
|
|
|
|
and a REQUEST object is present), p_self is a temporary object
|
|
|
|
created in /temp_folder, and this method moves it at its "final"
|
|
|
|
place. In the case of an update, this method simply updates fields
|
|
|
|
of p_self.'''
|
|
|
|
rq = getattr(self, 'REQUEST', None)
|
2009-10-18 07:52:27 -05:00
|
|
|
obj = self
|
2011-11-25 11:01:20 -06:00
|
|
|
if created and rq:
|
|
|
|
# Create the final object and put it at the right place.
|
|
|
|
tool = self.getTool()
|
2013-07-23 10:07:27 -05:00
|
|
|
# The app may define a method klass.generateUid for producing an UID
|
|
|
|
# for instance of this class. If no such method is found, we use the
|
|
|
|
# standard Appy method to produce an UID.
|
|
|
|
id = None
|
|
|
|
klass = tool.getAppyClass(obj.portal_type)
|
|
|
|
if hasattr(klass, 'generateUid'):
|
|
|
|
id = klass.generateUid(obj.REQUEST)
|
|
|
|
if not id:
|
|
|
|
id = tool.generateUid(obj.portal_type)
|
2011-11-25 11:01:20 -06:00
|
|
|
if not initiator:
|
|
|
|
folder = tool.getPath('/data')
|
|
|
|
else:
|
2012-06-02 07:36:49 -05:00
|
|
|
folder = initiator.getCreateFolder()
|
|
|
|
# Check that the user can add objects through this Ref.
|
|
|
|
initiatorField.checkAdd(initiator)
|
2011-11-25 11:01:20 -06:00
|
|
|
obj = createObject(folder, id, obj.portal_type, tool.getAppName())
|
2013-01-10 03:56:22 -06:00
|
|
|
# Get the fields on the current page
|
|
|
|
fields = None
|
|
|
|
if rq: fields = self.getAppyTypes('edit', rq.get('page'))
|
|
|
|
# Remember the previous values of fields, for potential historization
|
2009-12-14 13:22:55 -06:00
|
|
|
previousData = None
|
2013-01-10 03:56:22 -06:00
|
|
|
if not created and fields:
|
|
|
|
previousData = obj.rememberPreviousData(fields)
|
2011-11-25 11:01:20 -06:00
|
|
|
# Perform the change on the object
|
2013-01-10 03:56:22 -06:00
|
|
|
if fields:
|
2010-08-05 11:23:17 -05:00
|
|
|
# Store in the database the new value coming from the form
|
2013-01-10 03:56:22 -06:00
|
|
|
for field in fields:
|
|
|
|
value = getattr(values, field.name, None)
|
|
|
|
field.store(obj, value)
|
2009-12-14 13:22:55 -06:00
|
|
|
if previousData:
|
|
|
|
# Keep in history potential changes on historized fields
|
2011-11-25 11:01:20 -06:00
|
|
|
obj.historizeData(previousData)
|
2009-07-28 03:14:40 -05:00
|
|
|
|
2014-10-17 04:22:49 -05:00
|
|
|
# Call the custom "onEditEarly" if available. This method is called
|
|
|
|
# *before* potentially linking the object to its initiator.
|
|
|
|
appyObject = obj.appy()
|
|
|
|
if created and hasattr(appyObject, 'onEditEarly'):
|
|
|
|
appyObject.onEditEarly()
|
|
|
|
|
2010-10-14 07:43:56 -05:00
|
|
|
# Manage potential link with an initiator object
|
2014-07-29 12:21:37 -05:00
|
|
|
if created and initiator:
|
2014-10-17 04:22:49 -05:00
|
|
|
initiator.appy().link(initiatorField.name, appyObject)
|
2010-10-14 07:43:56 -05:00
|
|
|
|
|
|
|
# Call the custom "onEdit" if available
|
2011-01-28 07:36:30 -06:00
|
|
|
msg = None # The message to display to the user. It can be set by onEdit
|
2014-10-17 04:22:49 -05:00
|
|
|
if hasattr(appyObject, 'onEdit'): msg = appyObject.onEdit(created)
|
|
|
|
|
2012-11-05 03:21:27 -06:00
|
|
|
# Update last modification date
|
|
|
|
if not created:
|
|
|
|
from DateTime import DateTime
|
|
|
|
obj.modified = DateTime()
|
2013-01-14 09:58:30 -06:00
|
|
|
# Unlock the currently saved page on the object
|
|
|
|
if rq: self.removeLock(rq['page'])
|
2011-11-25 11:01:20 -06:00
|
|
|
obj.reindex()
|
2011-01-28 07:36:30 -06:00
|
|
|
return obj, msg
|
2009-10-20 09:57:00 -05:00
|
|
|
|
2013-03-29 08:50:12 -05:00
|
|
|
def updateField(self, name, value):
|
|
|
|
'''Updates a single field p_name with new p_value.'''
|
|
|
|
field = self.getAppyType(name)
|
|
|
|
# Remember previous value if the field is historized.
|
|
|
|
previousData = self.rememberPreviousData([field])
|
|
|
|
# Store the new value into the database
|
|
|
|
field.store(self, value)
|
|
|
|
# Update the object history when relevant
|
|
|
|
if previousData: self.historizeData(previousData)
|
|
|
|
# Update last modification date
|
|
|
|
from DateTime import DateTime
|
|
|
|
self.modified = DateTime()
|
|
|
|
|
2009-10-20 09:57:00 -05:00
|
|
|
def delete(self):
|
2013-01-11 03:52:54 -06:00
|
|
|
'''This method is self's suicide.'''
|
2010-11-26 10:30:46 -06:00
|
|
|
# Call a custom "onDelete" if it exists
|
|
|
|
appyObj = self.appy()
|
|
|
|
if hasattr(appyObj, 'onDelete'): appyObj.onDelete()
|
2011-09-26 14:19:34 -05:00
|
|
|
# Any people referencing me must forget me now
|
|
|
|
for field in self.getAllAppyTypes():
|
|
|
|
if field.type != 'Ref': continue
|
|
|
|
for obj in field.getValue(self):
|
2014-06-24 10:07:59 -05:00
|
|
|
field.back.unlinkObject(obj, appyObj, back=True)
|
2011-11-28 15:50:01 -06:00
|
|
|
# Uncatalog the object
|
|
|
|
self.reindex(unindex=True)
|
2014-02-26 03:40:27 -06:00
|
|
|
# Delete the filesystem folder corresponding to this object
|
|
|
|
folder = os.path.join(*self.getFsFolder())
|
|
|
|
if os.path.exists(folder):
|
|
|
|
sutils.FolderDeleter.delete(folder)
|
|
|
|
sutils.FolderDeleter.deleteEmpty(os.path.dirname(folder))
|
2010-11-26 10:30:46 -06:00
|
|
|
# Delete the object
|
2009-10-20 09:57:00 -05:00
|
|
|
self.getParentNode().manage_delObjects([self.id])
|
|
|
|
|
2010-11-22 02:36:14 -06:00
|
|
|
def onDelete(self):
|
2012-10-08 03:08:54 -05:00
|
|
|
'''Called when an object deletion is triggered from the ui.'''
|
2010-11-22 02:36:14 -06:00
|
|
|
rq = self.REQUEST
|
|
|
|
self.delete()
|
|
|
|
if self.getUrl(rq['HTTP_REFERER'],mode='raw') ==self.getUrl(mode='raw'):
|
|
|
|
# We were consulting the object that has been deleted. Go back to
|
|
|
|
# the main page.
|
|
|
|
urlBack = self.getTool().getSiteUrl()
|
|
|
|
else:
|
|
|
|
urlBack = self.getUrl(rq['HTTP_REFERER'])
|
2014-03-24 16:55:00 -05:00
|
|
|
self.say(self.translate('action_done'))
|
2010-11-22 02:36:14 -06:00
|
|
|
self.goto(urlBack)
|
|
|
|
|
2013-01-11 03:52:54 -06:00
|
|
|
def onDeleteEvent(self):
|
|
|
|
'''Called when an event (from object history) deletion is triggered
|
|
|
|
from the ui.'''
|
|
|
|
rq = self.REQUEST
|
|
|
|
# Re-create object history, but without the event corresponding to
|
|
|
|
# rq['eventTime']
|
|
|
|
history = []
|
|
|
|
from DateTime import DateTime
|
|
|
|
eventToDelete = DateTime(rq['eventTime'])
|
2014-10-07 06:14:16 -05:00
|
|
|
for event in self.workflow_history['appy']:
|
2013-01-11 03:52:54 -06:00
|
|
|
if (event['action'] != '_datachange_') or \
|
|
|
|
(event['time'] != eventToDelete):
|
|
|
|
history.append(event)
|
2014-10-07 06:14:16 -05:00
|
|
|
self.workflow_history['appy'] = tuple(history)
|
2013-01-11 03:52:54 -06:00
|
|
|
appy = self.appy()
|
2014-10-15 08:39:11 -05:00
|
|
|
self.log('data change event deleted for %s.' % appy.uid)
|
2013-01-11 03:52:54 -06:00
|
|
|
self.goto(self.getUrl(rq['HTTP_REFERER']))
|
|
|
|
|
2014-04-01 11:34:12 -05:00
|
|
|
def onLink(self):
|
2014-04-03 10:32:57 -05:00
|
|
|
'''Called when object (un)linking is triggered from the ui.'''
|
2014-04-01 11:34:12 -05:00
|
|
|
rq = self.REQUEST
|
|
|
|
tool = self.getTool()
|
|
|
|
sourceObject = tool.getObject(rq['sourceUid'])
|
|
|
|
field = sourceObject.getAppyType(rq['fieldName'])
|
2014-04-03 10:32:57 -05:00
|
|
|
return field.onUiRequest(sourceObject, rq)
|
2014-04-01 11:34:12 -05:00
|
|
|
|
2009-10-20 09:57:00 -05:00
|
|
|
def onCreate(self):
|
|
|
|
'''This method is called when a user wants to create a root object in
|
2011-11-25 11:01:20 -06:00
|
|
|
the "data" folder or an object through a reference field. A temporary
|
|
|
|
object is created in /temp_folder and the edit page to it is
|
|
|
|
returned.'''
|
2009-10-20 09:57:00 -05:00
|
|
|
rq = self.REQUEST
|
2011-11-25 11:01:20 -06:00
|
|
|
className = rq.get('className')
|
2010-09-19 08:04:44 -05:00
|
|
|
# Create the params to add to the URL we will redirect the user to
|
|
|
|
# create the object.
|
2014-06-15 17:58:45 -05:00
|
|
|
urlParams = {'mode':'edit', 'page':'main', 'nav':'',
|
|
|
|
'inPopup':rq.get('popup') == '1'}
|
2014-10-21 02:25:37 -05:00
|
|
|
initiator, initiatorField = self.getInitiatorInfo()
|
2012-06-02 07:36:49 -05:00
|
|
|
if initiator:
|
2009-10-20 09:57:00 -05:00
|
|
|
# The object to create will be linked to an initiator object through
|
2012-06-02 07:36:49 -05:00
|
|
|
# a Ref field. We create here a new navigation string with one more
|
2010-09-19 08:04:44 -05:00
|
|
|
# item, that will be the currently created item.
|
|
|
|
splitted = rq.get('nav').split('.')
|
|
|
|
splitted[-1] = splitted[-2] = str(int(splitted[-1])+1)
|
|
|
|
urlParams['nav'] = '.'.join(splitted)
|
2012-06-02 07:36:49 -05:00
|
|
|
# Check that the user can add objects through this Ref field
|
2012-06-02 10:39:05 -05:00
|
|
|
initiatorField.checkAdd(initiator)
|
2011-11-25 11:01:20 -06:00
|
|
|
# Create a temp object in /temp_folder
|
|
|
|
tool = self.getTool()
|
|
|
|
id = tool.generateUid(className)
|
|
|
|
appName = tool.getAppName()
|
|
|
|
obj = createObject(tool.getPath('/temp_folder'), id, className, appName)
|
|
|
|
return self.goto(obj.getUrl(**urlParams))
|
2009-10-20 09:57:00 -05:00
|
|
|
|
2014-02-26 03:40:27 -06:00
|
|
|
def getDbFolder(self):
|
|
|
|
'''Gets the folder, on the filesystem, where the database (Data.fs and
|
|
|
|
sub-folders) lies.'''
|
|
|
|
return os.path.dirname(self.getTool().getApp()._p_jar.db().getName())
|
|
|
|
|
|
|
|
def getFsFolder(self, create=False):
|
|
|
|
'''Gets the folder where binary files tied to this object will be stored
|
|
|
|
on the filesystem. If p_create is True and the folder does not exist,
|
|
|
|
it is created (together with potentially missing parent folders).
|
|
|
|
This folder is returned as a tuple (s_baseDbFolder, s_subPath).'''
|
|
|
|
objId = self.id
|
|
|
|
# Get the root folder where Data.fs lies.
|
|
|
|
dbFolder = self.getDbFolder()
|
|
|
|
# Build the list of path elements within this db folder.
|
|
|
|
path = []
|
|
|
|
inConfig = False
|
|
|
|
for elem in self.getPhysicalPath():
|
|
|
|
if not elem: continue
|
|
|
|
if elem == 'data': continue
|
|
|
|
if elem == 'config': inConfig = True
|
|
|
|
if not path or ((len(path) == 1) and inConfig):
|
|
|
|
# This object is at the root of the filesystem.
|
|
|
|
if NUMBERED_ID.match(elem):
|
|
|
|
path.append(elem[-4:])
|
|
|
|
path.append(elem)
|
|
|
|
# We are done if elem corresponds to the object id.
|
|
|
|
if elem == objId: break
|
|
|
|
path = os.sep.join(path)
|
|
|
|
if create:
|
|
|
|
fullPath = os.path.join(dbFolder, path)
|
|
|
|
if not os.path.exists(fullPath): os.makedirs(fullPath)
|
|
|
|
return dbFolder, path
|
|
|
|
|
2013-06-27 04:57:39 -05:00
|
|
|
def view(self):
|
|
|
|
'''Returns the view PX.'''
|
2013-08-21 05:35:30 -05:00
|
|
|
obj = self.appy()
|
|
|
|
return obj.pxView({'obj': obj, 'tool': obj.tool})
|
2013-06-27 04:57:39 -05:00
|
|
|
|
|
|
|
def edit(self):
|
|
|
|
'''Returns the edit PX.'''
|
2013-08-21 05:35:30 -05:00
|
|
|
obj = self.appy()
|
|
|
|
return obj.pxEdit({'obj': obj, 'tool': obj.tool})
|
|
|
|
|
|
|
|
def ajax(self):
|
|
|
|
'''Called via an Ajax request to render some PX whose name is in the
|
|
|
|
request.'''
|
|
|
|
obj = self.appy()
|
|
|
|
return obj.pxAjax({'obj': obj, 'tool': obj.tool})
|
2013-06-27 04:57:39 -05:00
|
|
|
|
2013-01-14 09:58:30 -06:00
|
|
|
def setLock(self, user, page):
|
|
|
|
'''A p_user edits a given p_page on this object: we will set a lock, to
|
|
|
|
prevent other users to edit this page at the same time.'''
|
|
|
|
if not hasattr(self.aq_base, 'locks'):
|
|
|
|
# Create the persistent mapping that will store the lock
|
2013-01-18 04:26:01 -06:00
|
|
|
# ~{s_page: (s_userId, DateTime_lockDate)}~
|
2013-01-14 09:58:30 -06:00
|
|
|
from persistent.mapping import PersistentMapping
|
|
|
|
self.locks = PersistentMapping()
|
|
|
|
# Raise an error is the page is already locked by someone else. If the
|
|
|
|
# page is already locked by the same user, we don't mind: he could have
|
|
|
|
# used back/forward buttons of its browser...
|
2013-08-21 05:35:30 -05:00
|
|
|
userId = user.login
|
2013-01-18 07:32:29 -06:00
|
|
|
if (page in self.locks) and (userId != self.locks[page][0]):
|
2014-05-03 15:45:51 -05:00
|
|
|
self.raiseUnauthorized('This page is locked.')
|
2013-01-14 09:58:30 -06:00
|
|
|
# Set the lock
|
2013-01-18 04:26:01 -06:00
|
|
|
from DateTime import DateTime
|
|
|
|
self.locks[page] = (userId, DateTime())
|
2013-01-14 09:58:30 -06:00
|
|
|
|
|
|
|
def isLocked(self, user, page):
|
|
|
|
'''Is this page locked? If the page is locked by the same user, we don't
|
|
|
|
mind and consider the page as unlocked. If the page is locked, this
|
2013-01-18 04:26:01 -06:00
|
|
|
method returns the tuple (userId, lockDate).'''
|
2013-01-14 09:58:30 -06:00
|
|
|
if hasattr(self.aq_base, 'locks') and (page in self.locks):
|
2013-08-21 05:35:30 -05:00
|
|
|
if (user.login != self.locks[page][0]): return self.locks[page]
|
2013-01-14 09:58:30 -06:00
|
|
|
|
2013-05-22 03:27:31 -05:00
|
|
|
def removeLock(self, page, force=False):
|
|
|
|
'''Removes the lock on the current page. This happens:
|
|
|
|
- after the page has been saved: the lock must be released;
|
|
|
|
- or when an admin wants to force the deletion of a lock that was
|
|
|
|
left on p_page for too long (p_force=True).
|
|
|
|
'''
|
2013-01-14 09:58:30 -06:00
|
|
|
if page not in self.locks: return
|
|
|
|
# Raise an error if the user that saves changes is not the one that
|
2013-05-22 03:27:31 -05:00
|
|
|
# has locked the page (excepted if p_force is True)
|
|
|
|
if not force:
|
2013-08-21 05:35:30 -05:00
|
|
|
userId = self.getTool().getUser().login
|
2013-05-22 03:27:31 -05:00
|
|
|
if self.locks[page][0] != userId:
|
2014-05-03 15:45:51 -05:00
|
|
|
self.raiseUnauthorized('This page was locked by someone else.')
|
2013-01-14 09:58:30 -06:00
|
|
|
# Remove the lock
|
|
|
|
del self.locks[page]
|
|
|
|
|
|
|
|
def removeMyLock(self, user, page):
|
|
|
|
'''If p_user has set a lock on p_page, this method removes it. This
|
|
|
|
method is called when the user that locked a page consults
|
2013-08-21 15:25:27 -05:00
|
|
|
pxView for this page. In this case, we consider that the user has
|
2013-01-14 09:58:30 -06:00
|
|
|
left the edit page in an unexpected way and we remove the lock.'''
|
|
|
|
if hasattr(self.aq_base, 'locks') and (page in self.locks) and \
|
2013-08-21 05:35:30 -05:00
|
|
|
(user.login == self.locks[page][0]):
|
2013-01-14 09:58:30 -06:00
|
|
|
del self.locks[page]
|
|
|
|
|
2013-05-22 03:27:31 -05:00
|
|
|
def onUnlock(self):
|
|
|
|
'''Called when an admin wants to remove a lock that was left for too
|
|
|
|
long by some user.'''
|
|
|
|
rq = self.REQUEST
|
|
|
|
tool = self.getTool()
|
|
|
|
obj = tool.getObject(rq['objectUid'])
|
|
|
|
obj.removeLock(rq['pageName'], force=True)
|
|
|
|
urlBack = self.getUrl(rq['HTTP_REFERER'])
|
2014-03-24 16:55:00 -05:00
|
|
|
self.say(self.translate('action_done'))
|
2013-05-22 03:27:31 -05:00
|
|
|
self.goto(urlBack)
|
|
|
|
|
2010-08-05 11:23:17 -05:00
|
|
|
def intraFieldValidation(self, errors, values):
|
|
|
|
'''This method performs field-specific validation for every field from
|
|
|
|
the page that is being created or edited. For every field whose
|
|
|
|
validation generates an error, we add an entry in p_errors. For every
|
|
|
|
field, we add in p_values an entry with the "ready-to-store" field
|
|
|
|
value.'''
|
|
|
|
rq = self.REQUEST
|
2013-09-20 10:42:07 -05:00
|
|
|
for field in self.getAppyTypes('edit', rq.form.get('page')):
|
2014-09-03 11:18:27 -05:00
|
|
|
if not field.validable or not field.isClientVisible(self): continue
|
2014-09-05 10:13:23 -05:00
|
|
|
value = field.getRequestValue(self)
|
2013-09-20 10:42:07 -05:00
|
|
|
message = field.validate(self, value)
|
2010-08-05 11:23:17 -05:00
|
|
|
if message:
|
2013-09-20 10:42:07 -05:00
|
|
|
setattr(errors, field.name, message)
|
2010-08-05 11:23:17 -05:00
|
|
|
else:
|
2014-09-05 10:13:23 -05:00
|
|
|
setattr(values, field.name, field.getStorableValue(self, value))
|
2011-10-19 02:37:44 -05:00
|
|
|
# Validate sub-fields within Lists
|
2013-09-20 10:42:07 -05:00
|
|
|
if field.type != 'List': continue
|
2011-10-19 02:37:44 -05:00
|
|
|
i = -1
|
|
|
|
for row in value:
|
|
|
|
i += 1
|
2013-09-20 10:42:07 -05:00
|
|
|
for name, subField in field.fields:
|
|
|
|
message = subField.validate(self, getattr(row,name,None))
|
2011-10-19 02:37:44 -05:00
|
|
|
if message:
|
2013-09-20 10:42:07 -05:00
|
|
|
setattr(errors, '%s*%d' % (subField.name, i), message)
|
2010-08-05 11:23:17 -05:00
|
|
|
|
|
|
|
def interFieldValidation(self, errors, values):
|
|
|
|
'''This method is called when individual validation of all fields
|
|
|
|
succeed (when editing or creating an object). Then, this method
|
|
|
|
performs inter-field validation. This way, the user must first
|
|
|
|
correct individual fields before being confronted to potential
|
|
|
|
inter-field validation errors.'''
|
|
|
|
obj = self.appy()
|
|
|
|
if not hasattr(obj, 'validate'): return
|
2011-02-06 10:39:36 -06:00
|
|
|
msg = obj.validate(values, errors)
|
2010-10-14 07:43:56 -05:00
|
|
|
# Those custom validation methods may have added fields in the given
|
2010-08-05 11:23:17 -05:00
|
|
|
# p_errors object. Within this object, for every error message that is
|
|
|
|
# not a string, we replace it with the standard validation error for the
|
|
|
|
# corresponding field.
|
|
|
|
for key, value in errors.__dict__.iteritems():
|
|
|
|
resValue = value
|
|
|
|
if not isinstance(resValue, basestring):
|
2010-11-16 08:32:47 -06:00
|
|
|
resValue = self.translate('field_invalid')
|
2010-08-05 11:23:17 -05:00
|
|
|
setattr(errors, key, resValue)
|
2011-02-06 10:39:36 -06:00
|
|
|
return msg
|
2010-08-05 11:23:17 -05:00
|
|
|
|
2009-10-18 07:52:27 -05:00
|
|
|
def onUpdate(self):
|
|
|
|
'''This method is executed when a user wants to update an object.
|
2011-11-25 11:01:20 -06:00
|
|
|
The object may be a temporary object created in /temp_folder.
|
|
|
|
In this case, the update consists in moving it to its "final" place.
|
|
|
|
If the object is not a temporary one, this method updates its
|
|
|
|
fields in the database.'''
|
2009-10-18 07:52:27 -05:00
|
|
|
rq = self.REQUEST
|
2010-11-22 02:36:14 -06:00
|
|
|
tool = self.getTool()
|
2012-06-03 11:34:56 -05:00
|
|
|
errorMessage = self.translate('validation_error')
|
2012-12-18 15:49:26 -06:00
|
|
|
isNew = self.isTemporary()
|
2014-06-15 17:58:45 -05:00
|
|
|
inPopup = rq.get('popup') == '1'
|
2014-10-24 08:55:45 -05:00
|
|
|
# If this object is created from an initiator, get info about him
|
2014-10-21 02:25:37 -05:00
|
|
|
initiator, initiatorField = self.getInitiatorInfo()
|
|
|
|
initiatorPage = initiatorField and initiatorField.pageName or None
|
2014-10-24 08:55:45 -05:00
|
|
|
# If the user clicked on 'Cancel', go back to the previous page
|
2013-01-18 07:32:29 -06:00
|
|
|
buttonClicked = rq.get('button')
|
|
|
|
if buttonClicked == 'cancel':
|
2014-10-24 08:55:45 -05:00
|
|
|
if inPopup: back = tool.backFromPopup()
|
|
|
|
elif initiator: # Go back to the initiator page
|
2011-09-20 12:21:48 -05:00
|
|
|
urlBack = initiator.getUrl(page=initiatorPage, nav='')
|
2009-10-25 15:42:08 -05:00
|
|
|
else:
|
2014-10-24 08:55:45 -05:00
|
|
|
if isNew: urlBack = tool.getHomePage() # Go back to home page
|
2011-09-20 12:21:48 -05:00
|
|
|
else:
|
2014-10-24 08:55:45 -05:00
|
|
|
# Return to the same page, excepted if unshowable on view.
|
|
|
|
phaseObj = self.getAppyPhases(True, 'view')
|
|
|
|
pageInfo = phaseObj.getPageInfo(rq['page'], 'view')
|
|
|
|
if not pageInfo: urlBack = tool.getHomePage()
|
|
|
|
else: urlBack = self.getUrl(page=pageInfo.page.name)
|
2012-06-03 11:34:56 -05:00
|
|
|
self.say(self.translate('object_canceled'))
|
2013-01-14 09:58:30 -06:00
|
|
|
self.removeLock(rq['page'])
|
2014-06-15 17:58:45 -05:00
|
|
|
if inPopup: return back
|
2010-09-17 08:32:48 -05:00
|
|
|
return self.goto(urlBack)
|
2009-10-18 07:52:27 -05:00
|
|
|
|
2010-08-05 11:23:17 -05:00
|
|
|
# Object for storing validation errors
|
2011-10-26 03:21:09 -05:00
|
|
|
errors = Object()
|
2010-08-05 11:23:17 -05:00
|
|
|
# Object for storing the (converted) values from the request
|
2011-10-26 03:21:09 -05:00
|
|
|
values = Object()
|
2010-08-05 11:23:17 -05:00
|
|
|
|
2009-10-18 07:52:27 -05:00
|
|
|
# Trigger field-specific validation
|
2010-08-05 11:23:17 -05:00
|
|
|
self.intraFieldValidation(errors, values)
|
|
|
|
if errors.__dict__:
|
2014-03-04 08:03:37 -06:00
|
|
|
for k,v in errors.__dict__.iteritems(): rq.set('%s_error' % k, v)
|
2011-02-12 10:09:11 -06:00
|
|
|
self.say(errorMessage)
|
2011-02-15 13:15:58 -06:00
|
|
|
return self.gotoEdit()
|
2010-08-05 11:23:17 -05:00
|
|
|
|
|
|
|
# Trigger inter-field validation
|
2011-02-06 10:39:36 -06:00
|
|
|
msg = self.interFieldValidation(errors, values)
|
|
|
|
if not msg: msg = errorMessage
|
2010-08-05 11:23:17 -05:00
|
|
|
if errors.__dict__:
|
2014-03-04 08:03:37 -06:00
|
|
|
for k,v in errors.__dict__.iteritems(): rq.set('%s_error' % k, v)
|
2011-02-12 10:09:11 -06:00
|
|
|
self.say(msg)
|
2011-02-15 13:15:58 -06:00
|
|
|
return self.gotoEdit()
|
2010-08-05 11:23:17 -05:00
|
|
|
|
2010-11-22 02:36:14 -06:00
|
|
|
# Before saving data, must we ask a confirmation by the user ?
|
|
|
|
appyObj = self.appy()
|
|
|
|
saveConfirmed = rq.get('confirmed') == 'True'
|
|
|
|
if hasattr(appyObj, 'confirm') and not saveConfirmed:
|
|
|
|
msg = appyObj.confirm(values)
|
|
|
|
if msg:
|
|
|
|
rq.set('confirmMsg', msg.replace("'", "\\'"))
|
2011-02-15 13:15:58 -06:00
|
|
|
return self.gotoEdit()
|
2010-11-22 02:36:14 -06:00
|
|
|
|
2010-08-05 11:23:17 -05:00
|
|
|
# Create or update the object in the database
|
2011-10-11 10:32:23 -05:00
|
|
|
obj, msg = self.createOrUpdate(isNew, values, initiator, initiatorField)
|
2010-08-05 11:23:17 -05:00
|
|
|
|
|
|
|
# Redirect the user to the appropriate page
|
2012-06-03 11:34:56 -05:00
|
|
|
if not msg: msg = self.translate('object_saved')
|
2011-01-28 07:36:30 -06:00
|
|
|
# If the object has already been deleted (ie, it is a kind of transient
|
|
|
|
# object like a one-shot form and has already been deleted in method
|
2014-06-15 17:58:45 -05:00
|
|
|
# onEdit) or if the user can't access the object anymore, redirect him
|
|
|
|
# to the user's home page.
|
|
|
|
if not getattr(obj.getParentNode().aq_base, obj.id, None) or \
|
|
|
|
not obj.mayView():
|
|
|
|
if inPopup: return tool.backFromPopup()
|
|
|
|
return self.goto(tool.getHomePage(), msg)
|
2013-01-18 07:32:29 -06:00
|
|
|
if (buttonClicked == 'save') or saveConfirmed:
|
2011-02-12 10:09:11 -06:00
|
|
|
obj.say(msg)
|
2014-06-15 17:58:45 -05:00
|
|
|
if inPopup: return tool.backFromPopup()
|
2011-09-20 12:21:48 -05:00
|
|
|
if isNew and initiator:
|
|
|
|
return self.goto(initiator.getUrl(page=initiatorPage, nav=''))
|
2014-10-24 08:55:45 -05:00
|
|
|
# Return to the same page, if showable on view
|
|
|
|
phaseObj = self.getAppyPhases(True, 'view')
|
|
|
|
pageInfo = phaseObj.getPageInfo(rq['page'], 'view')
|
|
|
|
if not pageInfo: return self.goto(tool.getHomePage(), msg)
|
|
|
|
return self.goto(obj.getUrl(page=pageInfo.page.name))
|
2014-06-23 05:54:32 -05:00
|
|
|
# Get the current page name. We keep it in "pageName" because rq['page']
|
|
|
|
# can be changed by m_getAppyPhases called below.
|
|
|
|
pageName = rq['page']
|
2014-10-24 08:55:45 -05:00
|
|
|
if buttonClicked in ('previous', 'next'):
|
|
|
|
# Go to the previous or next page for this object. We recompute the
|
|
|
|
# list of phases and pages because things may have changed since the
|
|
|
|
# object has been updated (ie, additional pages may be shown or
|
|
|
|
# hidden now, so the next and previous pages may have changed).
|
|
|
|
# Moreover, previous and next pages may not be available in "edit"
|
|
|
|
# mode, so we return the edit or view pages depending on page.show.
|
|
|
|
phaseObj = self.getAppyPhases(True, 'edit')
|
|
|
|
methodName = 'get%sPage' % buttonClicked.capitalize()
|
|
|
|
pageName, pageInfo = getattr(phaseObj, methodName)(pageName)
|
2010-10-19 03:47:42 -05:00
|
|
|
if pageName:
|
2010-09-17 08:32:48 -05:00
|
|
|
# Return to the edit or view page?
|
2013-08-21 05:35:30 -05:00
|
|
|
if pageInfo.showOnEdit:
|
2012-12-18 15:49:26 -06:00
|
|
|
# I do not use gotoEdit here because I really need to
|
|
|
|
# redirect the user to the edit page. Indeed, the object
|
|
|
|
# edit URL may have moved from temp_folder to another place.
|
2014-06-15 17:58:45 -05:00
|
|
|
return self.goto(obj.getUrl(mode='edit', page=pageName,
|
|
|
|
inPopup=inPopup))
|
2010-09-13 14:04:10 -05:00
|
|
|
else:
|
2014-06-15 17:58:45 -05:00
|
|
|
return self.goto(obj.getUrl(page=pageName, inPopup=inPopup))
|
2009-10-18 07:52:27 -05:00
|
|
|
else:
|
2011-02-12 10:09:11 -06:00
|
|
|
obj.say(msg)
|
2014-06-15 17:58:45 -05:00
|
|
|
return self.goto(obj.getUrl(inPopup=inPopup))
|
2011-02-15 13:15:58 -06:00
|
|
|
return obj.gotoEdit()
|
2009-07-28 03:14:40 -05:00
|
|
|
|
2011-11-25 11:01:20 -06:00
|
|
|
def reindex(self, indexes=None, unindex=False):
|
|
|
|
'''Reindexes this object the catalog. If names of indexes are specified
|
|
|
|
in p_indexes, recataloging is limited to those indexes. If p_unindex
|
|
|
|
is True, instead of cataloguing the object, it uncatalogs it.'''
|
2012-03-27 08:49:41 -05:00
|
|
|
path = '/'.join(self.getPhysicalPath())
|
2011-11-25 11:01:20 -06:00
|
|
|
catalog = self.getPhysicalRoot().catalog
|
|
|
|
if unindex:
|
2012-03-27 08:49:41 -05:00
|
|
|
catalog.uncatalog_object(path)
|
2011-11-25 11:01:20 -06:00
|
|
|
else:
|
2011-11-28 15:50:01 -06:00
|
|
|
if indexes:
|
2012-03-27 08:49:41 -05:00
|
|
|
catalog.catalog_object(self, path, idxs=indexes)
|
2011-11-28 15:50:01 -06:00
|
|
|
else:
|
2012-09-04 11:00:22 -05:00
|
|
|
# Get the list of indexes that apply on this object. Else, Zope
|
|
|
|
# will reindex all indexes defined in the catalog, and through
|
|
|
|
# acquisition, wrong methods can be called on wrong objects.
|
|
|
|
iNames = self.wrapperClass.getIndexes().keys()
|
|
|
|
catalog.catalog_object(self, path, idxs=iNames)
|
2011-11-25 11:01:20 -06:00
|
|
|
|
2012-11-23 08:20:12 -06:00
|
|
|
def xml(self, action=None):
|
|
|
|
'''If no p_action is defined, this method returns the XML version of
|
|
|
|
this object. Else, it calls method named p_action on the
|
2013-10-08 15:41:21 -05:00
|
|
|
corresponding Appy wrapper and returns, as XML, its result.'''
|
2012-11-23 08:20:12 -06:00
|
|
|
self.REQUEST.RESPONSE.setHeader('Content-Type','text/xml;charset=utf-8')
|
|
|
|
# Check if the user is allowed to consult this object
|
2014-05-03 15:45:51 -05:00
|
|
|
if not self.mayView(): return XmlMarshaller().marshall('Unauthorized')
|
2012-11-23 08:20:12 -06:00
|
|
|
if not action:
|
|
|
|
marshaller = XmlMarshaller(rootTag=self.getClass().__name__,
|
|
|
|
dumpUnicode=True)
|
|
|
|
res = marshaller.marshall(self, objectType='appy')
|
|
|
|
else:
|
|
|
|
appyObj = self.appy()
|
|
|
|
try:
|
|
|
|
methodRes = getattr(appyObj, action)()
|
2013-10-08 15:41:21 -05:00
|
|
|
if isinstance(methodRes, Px):
|
|
|
|
res = methodRes({'self': self.appy()})
|
|
|
|
elif isinstance(methodRes, file):
|
|
|
|
res = methodRes.read()
|
|
|
|
methodRes.close()
|
2013-10-09 14:23:49 -05:00
|
|
|
elif isinstance(methodRes, basestring) and \
|
|
|
|
methodRes.startswith('<?xml'): # Already XML
|
|
|
|
return methodRes
|
2013-10-08 15:41:21 -05:00
|
|
|
else:
|
2014-12-09 04:40:30 -06:00
|
|
|
marshaller = XmlMarshaller()
|
|
|
|
oType = isinstance(methodRes, Object) and 'popo' or 'appy'
|
|
|
|
res = marshaller.marshall(methodRes, objectType=oType)
|
2012-11-23 08:20:12 -06:00
|
|
|
except Exception, e:
|
2014-02-26 03:40:27 -06:00
|
|
|
tb = sutils.Traceback.get()
|
2014-12-08 07:52:04 -06:00
|
|
|
res = XmlMarshaller(rootTag='exception').marshall(tb)
|
2014-12-12 07:47:39 -06:00
|
|
|
self.log(tb, type='error')
|
2014-12-09 08:19:28 -06:00
|
|
|
import transaction
|
|
|
|
transaction.abort()
|
2012-11-23 08:20:12 -06:00
|
|
|
return res
|
|
|
|
|
2011-02-12 10:09:11 -06:00
|
|
|
def say(self, msg, type='info'):
|
|
|
|
'''Prints a p_msg in the user interface. p_logLevel may be "info",
|
|
|
|
"warning" or "error".'''
|
2011-11-25 11:01:20 -06:00
|
|
|
rq = self.REQUEST
|
2011-12-05 11:15:45 -06:00
|
|
|
if 'messages' not in rq.SESSION.keys():
|
|
|
|
plist = self.getProductConfig().PersistentList
|
|
|
|
messages = rq.SESSION['messages'] = plist()
|
2011-11-25 11:01:20 -06:00
|
|
|
else:
|
2011-12-05 11:15:45 -06:00
|
|
|
messages = rq.SESSION['messages']
|
|
|
|
messages.append( (type, msg) )
|
2011-02-12 10:09:11 -06:00
|
|
|
|
|
|
|
def log(self, msg, type='info'):
|
|
|
|
'''Logs a p_msg in the log file. p_logLevel may be "info", "warning"
|
|
|
|
or "error".'''
|
|
|
|
logger = self.getProductConfig().logger
|
|
|
|
if type == 'warning': logMethod = logger.warn
|
|
|
|
elif type == 'error': logMethod = logger.error
|
|
|
|
else: logMethod = logger.info
|
2014-09-01 07:14:32 -05:00
|
|
|
user = self.getTool().getUser()
|
|
|
|
# There could be not user at all (even not "anon") if we are trying to
|
|
|
|
# authenticate an inexistent user for example.
|
|
|
|
login = user and user.login or 'anon'
|
|
|
|
logMethod('%s: %s' % (login, msg))
|
2011-02-12 10:09:11 -06:00
|
|
|
|
2011-11-25 11:01:20 -06:00
|
|
|
def do(self):
|
|
|
|
'''Performs some action from the user interface.'''
|
|
|
|
rq = self.REQUEST
|
|
|
|
action = rq['action']
|
|
|
|
if rq.get('objectUid', None):
|
|
|
|
obj = self.getTool().getObject(rq['objectUid'])
|
2011-09-08 09:33:16 -05:00
|
|
|
else:
|
2011-11-25 11:01:20 -06:00
|
|
|
obj = self
|
2012-05-09 02:45:15 -05:00
|
|
|
if rq.get('appy', None) == '1': obj = obj.appy()
|
|
|
|
return getattr(obj, 'on'+action)()
|
2011-07-26 15:15:04 -05:00
|
|
|
|
2014-05-03 15:45:51 -05:00
|
|
|
def raiseUnauthorized(self, msg=None):
|
|
|
|
'''Raise an error "Unauthorized access".'''
|
|
|
|
from AccessControl import Unauthorized
|
|
|
|
if msg: raise Unauthorized(msg)
|
|
|
|
raise Unauthorized()
|
|
|
|
|
2013-01-10 03:56:22 -06:00
|
|
|
def rememberPreviousData(self, fields):
|
2009-12-14 13:22:55 -06:00
|
|
|
'''This method is called before updating an object and remembers, for
|
|
|
|
every historized field, the previous value. Result is a dict
|
|
|
|
~{s_fieldName: previousFieldValue}~'''
|
|
|
|
res = {}
|
2013-01-10 03:56:22 -06:00
|
|
|
for field in fields:
|
2014-09-03 11:18:27 -05:00
|
|
|
if not field.getAttribute(self, 'historized'): continue
|
|
|
|
res[field.name] = field.getValue(self)
|
2009-12-14 13:22:55 -06:00
|
|
|
return res
|
|
|
|
|
2011-09-08 09:33:16 -05:00
|
|
|
def addHistoryEvent(self, action, **kw):
|
|
|
|
'''Adds an event in the object history.'''
|
2013-08-21 05:35:30 -05:00
|
|
|
user = self.getTool().getUser()
|
|
|
|
userId = user and user.login or 'system'
|
2011-09-08 09:33:16 -05:00
|
|
|
from DateTime import DateTime
|
|
|
|
event = {'action': action, 'actor': userId, 'time': DateTime(),
|
|
|
|
'comments': ''}
|
|
|
|
event.update(kw)
|
2011-11-25 11:01:20 -06:00
|
|
|
if 'review_state' not in event: event['review_state'] = self.State()
|
2011-09-08 09:33:16 -05:00
|
|
|
# Add the event to the history
|
2014-10-07 06:14:16 -05:00
|
|
|
self.workflow_history['appy'] += (event,)
|
2011-09-08 09:33:16 -05:00
|
|
|
|
2010-12-17 07:46:55 -06:00
|
|
|
def addDataChange(self, changes, notForPreviouslyEmptyValues=False):
|
2010-01-14 01:56:04 -06:00
|
|
|
'''This method allows to add "manually" a data change into the objet's
|
|
|
|
history. Indeed, data changes are "automatically" recorded only when
|
|
|
|
a HTTP form is uploaded, not if, in the code, a setter is called on
|
2010-12-17 07:46:55 -06:00
|
|
|
a field. The method is also called by m_historizeData below, that
|
|
|
|
performs "automatic" recording when a HTTP form is uploaded. Field
|
|
|
|
changes for which the previous value was empty are not recorded into
|
2014-09-03 11:18:27 -05:00
|
|
|
the history if p_notForPreviouslyEmptyValues is True.
|
|
|
|
|
|
|
|
For a multilingual string field, p_changes can contain a key for
|
|
|
|
every language, of the form <field name>-<language>.'''
|
2010-10-14 07:43:56 -05:00
|
|
|
# Add to the p_changes dict the field labels
|
2014-09-03 11:18:27 -05:00
|
|
|
for name in changes.keys():
|
|
|
|
# "name" can contain the language for multilingual fields.
|
|
|
|
if '-' in name:
|
|
|
|
fieldName, lg = name.split('-')
|
2010-12-17 07:46:55 -06:00
|
|
|
else:
|
2014-09-03 11:18:27 -05:00
|
|
|
fieldName = name
|
|
|
|
lg = None
|
|
|
|
field = self.getAppyType(fieldName)
|
|
|
|
if notForPreviouslyEmptyValues:
|
|
|
|
# Check if the previous field value was empty
|
|
|
|
if lg:
|
|
|
|
isEmpty = not changes[name] or not changes[name].get(lg)
|
|
|
|
else:
|
2014-09-05 10:13:23 -05:00
|
|
|
isEmpty = field.isEmptyValue(self, changes[name])
|
2014-09-03 11:18:27 -05:00
|
|
|
if isEmpty:
|
|
|
|
del changes[name]
|
|
|
|
else:
|
|
|
|
changes[name] = (changes[name], field.labelId)
|
2011-09-08 09:33:16 -05:00
|
|
|
# Add an event in the history
|
|
|
|
self.addHistoryEvent('_datachange_', changes=changes)
|
2010-01-14 01:56:04 -06:00
|
|
|
|
2009-12-14 13:22:55 -06:00
|
|
|
def historizeData(self, previousData):
|
|
|
|
'''Records in the object history potential changes on historized fields.
|
|
|
|
p_previousData contains the values, before an update, of the
|
|
|
|
historized fields, while p_self already contains the (potentially)
|
|
|
|
modified values.'''
|
|
|
|
# Remove from previousData all values that were not changed
|
2014-09-03 11:18:27 -05:00
|
|
|
for name in previousData.keys():
|
|
|
|
field = self.getAppyType(name)
|
|
|
|
prev = previousData[name]
|
|
|
|
curr = field.getValue(self)
|
2011-03-22 10:45:46 -05:00
|
|
|
try:
|
|
|
|
if (prev == curr) or ((prev == None) and (curr == '')) or \
|
|
|
|
((prev == '') and (curr == None)):
|
2014-09-03 11:18:27 -05:00
|
|
|
del previousData[name]
|
|
|
|
continue
|
2011-03-22 10:45:46 -05:00
|
|
|
except UnicodeDecodeError, ude:
|
|
|
|
# The string comparisons above may imply silent encoding-related
|
|
|
|
# conversions that may produce this exception.
|
2014-09-03 11:18:27 -05:00
|
|
|
continue
|
|
|
|
# In some cases the old value must be formatted.
|
|
|
|
if field.type == 'Ref':
|
2014-10-03 05:44:26 -05:00
|
|
|
previousData[name] = [r.o.getShownValue('title') \
|
|
|
|
for r in previousData[name]]
|
2014-09-05 10:13:23 -05:00
|
|
|
elif field.type == 'String':
|
|
|
|
languages = field.getAttribute(self, 'languages')
|
|
|
|
if len(languages) > 1:
|
|
|
|
# Consider every language-specific value as a first-class
|
|
|
|
# value.
|
|
|
|
del previousData[name]
|
|
|
|
for lg in languages:
|
|
|
|
lgPrev = prev and prev.get(lg) or None
|
|
|
|
lgCurr = curr and curr.get(lg) or None
|
|
|
|
if lgPrev == lgCurr: continue
|
|
|
|
previousData['%s-%s' % (name, lg)] = lgPrev
|
2009-12-14 13:22:55 -06:00
|
|
|
if previousData:
|
2010-10-14 07:43:56 -05:00
|
|
|
self.addDataChange(previousData)
|
2009-12-14 13:22:55 -06:00
|
|
|
|
2011-01-28 07:36:30 -06:00
|
|
|
def goto(self, url, msg=None):
|
2009-10-25 15:42:08 -05:00
|
|
|
'''Brings the user to some p_url after an action has been executed.'''
|
2011-12-05 11:15:45 -06:00
|
|
|
if msg: self.say(msg)
|
2010-09-17 08:32:48 -05:00
|
|
|
return self.REQUEST.RESPONSE.redirect(url)
|
2009-10-25 15:42:08 -05:00
|
|
|
|
2011-02-15 13:15:58 -06:00
|
|
|
def gotoEdit(self):
|
|
|
|
'''Brings the user to the edit page for this object. This method takes
|
|
|
|
care of not carrying any password value. Unlike m_goto above, there
|
2013-08-21 05:35:30 -05:00
|
|
|
is no HTTP redirect here: we execute directly PX "edit" and we
|
2011-02-15 13:15:58 -06:00
|
|
|
return the result.'''
|
|
|
|
page = self.REQUEST.get('page', 'main')
|
|
|
|
for field in self.getAppyTypes('edit', page):
|
2012-02-16 11:13:51 -06:00
|
|
|
if (field.type == 'String') and (field.format in (3,4)):
|
2011-02-15 13:15:58 -06:00
|
|
|
self.REQUEST.set(field.name, '')
|
2013-08-21 05:35:30 -05:00
|
|
|
return self.edit()
|
2011-02-15 13:15:58 -06:00
|
|
|
|
2014-10-21 02:25:37 -05:00
|
|
|
def gotoTied(self):
|
|
|
|
'''Redirects the user to an object tied to this one.'''
|
|
|
|
return self.getAppyType(self.REQUEST['field']).onGotoTied(self)
|
|
|
|
|
2012-06-02 07:36:49 -05:00
|
|
|
def getCreateFolder(self):
|
|
|
|
'''When an object must be created from this one through a Ref field, we
|
|
|
|
must know where to put the newly create object: within this one if it
|
|
|
|
is folderish, besides this one in its parent else.
|
|
|
|
'''
|
|
|
|
if self.isPrincipiaFolderish: return self
|
|
|
|
return self.getParentNode()
|
|
|
|
|
2014-03-05 09:19:11 -06:00
|
|
|
def getFieldValue(self, name, layoutType=None, outerValue=None):
|
|
|
|
'''Returns the database value of field named p_name for p_self.'''
|
2015-02-04 02:27:07 -06:00
|
|
|
if layoutType == 'search': return # No object in search screens
|
2013-09-20 10:42:07 -05:00
|
|
|
field = self.getAppyType(name)
|
2014-03-19 17:13:31 -05:00
|
|
|
if field.type == 'Pod': return
|
2014-03-05 09:19:11 -06:00
|
|
|
if '*' not in name: return field.getValue(self)
|
|
|
|
# The field is an inner field from a List.
|
|
|
|
listName, name, i = name.split('*')
|
|
|
|
listType = self.getAppyType(listName)
|
|
|
|
return listType.getInnerValue(self, outerValue, name, int(i))
|
2010-08-05 11:23:17 -05:00
|
|
|
|
2011-10-19 02:37:44 -05:00
|
|
|
def getRequestFieldValue(self, name):
|
|
|
|
'''Gets the value of field p_name as may be present in the request.'''
|
|
|
|
# Return the request value for standard fields.
|
|
|
|
if '*' not in name:
|
2014-09-05 10:13:23 -05:00
|
|
|
return self.getAppyType(name).getRequestValue(self)
|
2011-10-19 02:37:44 -05:00
|
|
|
# For sub-fields within Lists, the corresponding request values have
|
|
|
|
# already been computed in the request key corresponding to the whole
|
|
|
|
# List.
|
|
|
|
listName, name, rowIndex = name.split('*')
|
|
|
|
rowIndex = int(rowIndex)
|
|
|
|
if rowIndex == -1: return ''
|
|
|
|
allValues = self.REQUEST.get(listName)
|
|
|
|
if not allValues: return ''
|
|
|
|
return getattr(allValues[rowIndex], name, '')
|
|
|
|
|
2010-11-13 10:54:08 -06:00
|
|
|
def isDebug(self):
|
|
|
|
'''Are we in debug mode ?'''
|
|
|
|
for arg in sys.argv:
|
|
|
|
if arg == 'debug-mode=on': return True
|
|
|
|
|
|
|
|
def getClass(self, reloaded=False):
|
|
|
|
'''Returns the Appy class that dictates self's behaviour.'''
|
|
|
|
if not reloaded:
|
|
|
|
return self.getTool().getAppyClass(self.__class__.__name__)
|
|
|
|
else:
|
|
|
|
klass = self.appy().klass
|
|
|
|
moduleName = klass.__module__
|
|
|
|
exec 'import %s' % moduleName
|
|
|
|
exec 'reload(%s)' % moduleName
|
|
|
|
exec 'res = %s.%s' % (moduleName, klass.__name__)
|
2010-11-16 08:32:47 -06:00
|
|
|
# More manipulations may have occurred in m_update
|
|
|
|
if hasattr(res, 'update'):
|
2011-12-05 03:52:18 -06:00
|
|
|
parentName= res.__bases__[-1].__name__
|
|
|
|
moduleName= 'Products.%s.wrappers' % self.getTool().getAppName()
|
2010-11-16 08:32:47 -06:00
|
|
|
exec 'import %s' % moduleName
|
|
|
|
exec 'parent = %s.%s' % (moduleName, parentName)
|
|
|
|
res.update(parent)
|
2010-11-13 10:54:08 -06:00
|
|
|
return res
|
|
|
|
|
2013-08-21 05:35:30 -05:00
|
|
|
def getAppyType(self, name, className=None):
|
2010-08-05 11:23:17 -05:00
|
|
|
'''Returns the Appy type named p_name. If no p_className is defined, the
|
|
|
|
field is supposed to belong to self's class.'''
|
2011-10-19 02:37:44 -05:00
|
|
|
isInnerType = '*' in name # An inner type lies within a List type.
|
|
|
|
subName = None
|
2012-03-01 10:35:23 -06:00
|
|
|
if isInnerType:
|
|
|
|
elems = name.split('*')
|
|
|
|
if len(elems) == 2: name, subName = elems
|
|
|
|
else: name, subName, i = elems
|
2011-09-14 14:01:58 -05:00
|
|
|
if not className:
|
|
|
|
klass = self.__class__.wrapperClass
|
|
|
|
else:
|
|
|
|
klass = self.getTool().getAppyClass(className, wrapper=True)
|
|
|
|
res = getattr(klass, name, None)
|
2011-10-19 02:37:44 -05:00
|
|
|
if res and isInnerType: res = res.getField(subName)
|
2011-09-14 14:01:58 -05:00
|
|
|
return res
|
2010-08-05 11:23:17 -05:00
|
|
|
|
|
|
|
def getAllAppyTypes(self, className=None):
|
|
|
|
'''Returns the ordered list of all Appy types for self's class if
|
|
|
|
p_className is not specified, or for p_className else.'''
|
2011-09-14 14:01:58 -05:00
|
|
|
if not className:
|
|
|
|
klass = self.__class__.wrapperClass
|
|
|
|
else:
|
|
|
|
klass = self.getTool().getAppyClass(className, wrapper=True)
|
|
|
|
return klass.__fields__
|
2010-08-05 11:23:17 -05:00
|
|
|
|
2013-08-21 05:35:30 -05:00
|
|
|
def getGroupedFields(self, layoutType, pageName, cssJs=None):
|
|
|
|
'''Returns the fields sorted by group. If a dict is given in p_cssJs,
|
|
|
|
we will add it in the css and js files required by the fields.'''
|
2009-06-29 07:06:01 -05:00
|
|
|
res = []
|
2013-08-21 05:35:30 -05:00
|
|
|
groups = {} # The already encountered groups.
|
2012-05-05 10:04:19 -05:00
|
|
|
# If a dict is given in p_cssJs, we must fill it with the CSS and JS
|
2013-08-21 05:35:30 -05:00
|
|
|
# files required for every returned field.
|
2012-05-05 10:04:19 -05:00
|
|
|
collectCssJs = isinstance(cssJs, dict)
|
|
|
|
css = js = None
|
2011-09-14 14:01:58 -05:00
|
|
|
# If param "refresh" is there, we must reload the Python class
|
|
|
|
refresh = ('refresh' in self.REQUEST)
|
|
|
|
if refresh:
|
2010-11-13 10:54:08 -06:00
|
|
|
klass = self.getClass(reloaded=True)
|
2013-08-21 05:35:30 -05:00
|
|
|
for field in self.getAllAppyTypes():
|
|
|
|
if refresh: field = field.reload(klass, self)
|
|
|
|
if field.page.name != pageName: continue
|
|
|
|
if not field.isShowable(self, layoutType): continue
|
2012-05-05 10:04:19 -05:00
|
|
|
if collectCssJs:
|
|
|
|
if css == None: css = []
|
2013-08-21 05:35:30 -05:00
|
|
|
field.getCss(layoutType, css)
|
2012-05-05 10:04:19 -05:00
|
|
|
if js == None: js = []
|
2013-08-21 05:35:30 -05:00
|
|
|
field.getJs(layoutType, js)
|
|
|
|
if not field.group:
|
|
|
|
res.append(field)
|
2009-06-29 07:06:01 -05:00
|
|
|
else:
|
2013-09-24 05:26:31 -05:00
|
|
|
# Insert the UiGroup instance corresponding to field.group.
|
2013-08-21 05:35:30 -05:00
|
|
|
uiGroup = field.group.insertInto(res, groups, field.page,
|
|
|
|
self.meta_type)
|
2013-09-24 05:26:31 -05:00
|
|
|
uiGroup.addElement(field)
|
2012-05-05 10:04:19 -05:00
|
|
|
if collectCssJs:
|
2013-08-21 05:35:30 -05:00
|
|
|
cssJs['css'] = css or ()
|
|
|
|
cssJs['js'] = js or ()
|
2009-06-29 07:06:01 -05:00
|
|
|
return res
|
|
|
|
|
2014-10-22 15:17:26 -05:00
|
|
|
def getAppyTypes(self, layoutType, pageName, type=None):
|
2012-11-23 08:20:12 -06:00
|
|
|
'''Returns the list of fields that belong to a given page (p_pageName)
|
|
|
|
for a given p_layoutType. If p_pageName is None, fields of all pages
|
2014-10-22 15:17:26 -05:00
|
|
|
are returned. If p_type is defined, only fields of this p_type are
|
|
|
|
returned. '''
|
2009-06-29 07:06:01 -05:00
|
|
|
res = []
|
2012-11-23 08:20:12 -06:00
|
|
|
for field in self.getAllAppyTypes():
|
|
|
|
if pageName and (field.page.name != pageName): continue
|
2014-10-22 15:17:26 -05:00
|
|
|
if type and (field.type != type): continue
|
2015-01-19 18:03:23 -06:00
|
|
|
if not field.isRenderable(layoutType): continue
|
2012-11-23 08:20:12 -06:00
|
|
|
if not field.isShowable(self, layoutType): continue
|
|
|
|
res.append(field)
|
2009-06-29 07:06:01 -05:00
|
|
|
return res
|
|
|
|
|
2014-03-04 08:03:37 -06:00
|
|
|
def getSlavesRequestInfo(self, pageName):
|
|
|
|
'''When slave fields must be updated via Ajax requests, we must carry
|
|
|
|
some information from the global request object to the ajax requests:
|
|
|
|
- the selected values in slave fields;
|
|
|
|
- validation errors.'''
|
|
|
|
requestValues = {}
|
|
|
|
errors = {}
|
2014-03-03 11:54:21 -06:00
|
|
|
req = self.REQUEST
|
|
|
|
for field in self.getAllAppyTypes():
|
|
|
|
if field.page.name != pageName: continue
|
|
|
|
if field.masterValue and callable(field.masterValue):
|
2014-03-04 08:03:37 -06:00
|
|
|
# We have a slave field that is updated via ajax requests.
|
2014-03-03 11:54:21 -06:00
|
|
|
name = field.name
|
2014-03-04 08:03:37 -06:00
|
|
|
# Remember the request value for this field if present.
|
2014-03-03 11:54:21 -06:00
|
|
|
if req.has_key(name) and req[name]:
|
2014-03-04 08:03:37 -06:00
|
|
|
requestValues[name] = req[name]
|
|
|
|
# Remember the validation error for this field if present.
|
|
|
|
errorKey = '%s_error' % name
|
|
|
|
if req.has_key(errorKey):
|
|
|
|
errors[name] = req[errorKey]
|
|
|
|
return sutils.getStringDict(requestValues), sutils.getStringDict(errors)
|
2014-03-03 11:54:21 -06:00
|
|
|
|
2012-05-05 10:04:19 -05:00
|
|
|
def getCssJs(self, fields, layoutType, res):
|
|
|
|
'''Gets, in p_res ~{'css':[s_css], 'js':[s_js]}~ the lists of
|
|
|
|
Javascript and CSS files required by Appy types p_fields when shown
|
|
|
|
on p_layoutType.'''
|
2012-03-01 10:35:23 -06:00
|
|
|
# Lists css and js below are not sets, because order of Javascript
|
2010-12-17 07:46:55 -06:00
|
|
|
# inclusion can be important, and this could be losed by using sets.
|
2010-08-05 11:23:17 -05:00
|
|
|
css = []
|
|
|
|
js = []
|
2010-12-17 07:46:55 -06:00
|
|
|
for field in fields:
|
2012-05-05 10:04:19 -05:00
|
|
|
field.getCss(layoutType, css)
|
|
|
|
field.getJs(layoutType, js)
|
|
|
|
res['css'] = css
|
|
|
|
res['js'] = js
|
2010-08-05 11:23:17 -05:00
|
|
|
|
2013-04-26 19:15:44 -05:00
|
|
|
def getCssFor(self, elem):
|
|
|
|
'''Gets the name of the CSS class to use for styling some p_elem. If
|
|
|
|
self's class does not define a dict "styles", the defaut CSS class
|
|
|
|
to use will be named p_elem.'''
|
|
|
|
klass = self.getClass()
|
|
|
|
if hasattr(klass, 'styles') and (elem in klass.styles):
|
|
|
|
return klass.styles[elem]
|
|
|
|
return elem
|
|
|
|
|
2010-10-19 03:47:42 -05:00
|
|
|
def getAppyPhases(self, currentOnly=False, layoutType='view'):
|
2009-06-29 07:06:01 -05:00
|
|
|
'''Gets the list of phases that are defined for this content type. If
|
2010-10-19 03:47:42 -05:00
|
|
|
p_currentOnly is True, the search is limited to the phase where the
|
|
|
|
current page (as defined in the request) lies.'''
|
2009-06-29 07:06:01 -05:00
|
|
|
# Get the list of phases
|
|
|
|
res = [] # Ordered list of phases
|
|
|
|
phases = {} # Dict of phases
|
2013-08-21 05:35:30 -05:00
|
|
|
for field in self.getAllAppyTypes():
|
|
|
|
fieldPhase = field.page.phase
|
|
|
|
if fieldPhase not in phases:
|
|
|
|
phase = gen.Phase(fieldPhase, self)
|
|
|
|
res.append(phase)
|
|
|
|
phases[fieldPhase] = phase
|
2009-06-29 07:06:01 -05:00
|
|
|
else:
|
2013-08-21 05:35:30 -05:00
|
|
|
phase = phases[fieldPhase]
|
|
|
|
phase.addPage(field, self, layoutType)
|
|
|
|
if (field.type == 'Ref') and field.navigable:
|
|
|
|
phase.addPageLinks(field, self)
|
2009-06-29 07:06:01 -05:00
|
|
|
# Remove phases that have no visible page
|
|
|
|
for i in range(len(res)-1, -1, -1):
|
2013-08-21 05:35:30 -05:00
|
|
|
if not res[i].pages:
|
|
|
|
del phases[res[i].name]
|
2009-06-29 07:06:01 -05:00
|
|
|
del res[i]
|
2012-12-07 04:23:08 -06:00
|
|
|
# Compute next/previous phases of every phase
|
2009-06-29 07:06:01 -05:00
|
|
|
for ph in phases.itervalues():
|
2012-12-07 04:23:08 -06:00
|
|
|
ph.computeNextPrevious(res)
|
2009-06-29 07:06:01 -05:00
|
|
|
ph.totalNbOfPhases = len(res)
|
2010-10-19 03:47:42 -05:00
|
|
|
# Restrict the result to the current phase if required
|
2009-06-29 07:06:01 -05:00
|
|
|
if currentOnly:
|
2010-10-19 03:47:42 -05:00
|
|
|
rq = self.REQUEST
|
2012-06-02 10:39:05 -05:00
|
|
|
page = rq.get('page', None)
|
|
|
|
if not page:
|
|
|
|
if layoutType == 'edit': page = self.getDefaultEditPage()
|
|
|
|
else: page = self.getDefaultViewPage()
|
2013-08-21 05:35:30 -05:00
|
|
|
for phase in res:
|
|
|
|
if page in phase.pages:
|
|
|
|
return phase
|
2010-10-19 03:47:42 -05:00
|
|
|
# If I am here, it means that the page as defined in the request,
|
2012-06-02 10:39:05 -05:00
|
|
|
# or the default page, is not existing nor visible in any phase.
|
2010-10-29 07:36:36 -05:00
|
|
|
# In this case I find the first visible page among all phases.
|
|
|
|
viewAttr = 'showOn%s' % layoutType.capitalize()
|
|
|
|
for phase in res:
|
2013-08-21 05:35:30 -05:00
|
|
|
for page in phase.pages:
|
|
|
|
if getattr(phase.pagesInfo[page], viewAttr):
|
2010-10-29 07:36:36 -05:00
|
|
|
rq.set('page', page)
|
|
|
|
pageFound = True
|
|
|
|
break
|
|
|
|
return phase
|
2009-06-29 07:06:01 -05:00
|
|
|
else:
|
2012-11-29 13:45:21 -06:00
|
|
|
# Return an empty list if we have a single, link-free page within
|
|
|
|
# a single phase.
|
2013-08-21 05:35:30 -05:00
|
|
|
if (len(res) == 1) and (len(res[0].pages) == 1) and \
|
|
|
|
not res[0].pagesInfo[res[0].pages[0]].links:
|
|
|
|
return
|
2009-06-29 07:06:01 -05:00
|
|
|
return res
|
|
|
|
|
2014-12-30 04:23:03 -06:00
|
|
|
def highlight(self, text):
|
|
|
|
'''This method highlights parts of p_value if we are in the context of
|
|
|
|
a query whose keywords must be highlighted.'''
|
|
|
|
# Must we highlight something?
|
|
|
|
criteria = self.REQUEST.SESSION.get('searchCriteria')
|
|
|
|
if not criteria or ('SearchableText' not in criteria): return text
|
|
|
|
# Highlight every variant of every keyword
|
|
|
|
for word in criteria['SearchableText'].strip().split():
|
|
|
|
sWord = word.strip(' *').lower()
|
|
|
|
for variant in (sWord, sWord.capitalize(), sWord.upper()):
|
|
|
|
text = text.replace(variant, '***+%s-***' % variant)
|
|
|
|
# If I replace immediately with the opening and ending "span"
|
|
|
|
# tag (see below), I will have problems if the next keyword is
|
|
|
|
# included in the tag, ie "la" (in 'class', or "spa" (in
|
|
|
|
# 'span').
|
|
|
|
text = text.replace('***+', '<span class="highlight">')
|
|
|
|
return text.replace('-***', '</span>')
|
|
|
|
|
2013-04-11 09:01:52 -05:00
|
|
|
def getSupTitle(self, navInfo=''):
|
|
|
|
'''Gets the html code (icons,...) that can be shown besides the title
|
|
|
|
of an object.'''
|
2014-04-29 12:02:06 -05:00
|
|
|
obj = self.appy()
|
|
|
|
if hasattr(obj, 'getSupTitle'): return obj.getSupTitle(navInfo)
|
2012-10-31 15:17:31 -05:00
|
|
|
return ''
|
|
|
|
|
|
|
|
def getSubTitle(self):
|
|
|
|
'''Gets the content that must appear below the title of an object.'''
|
2014-04-29 12:02:06 -05:00
|
|
|
obj = self.appy()
|
|
|
|
if hasattr(obj, 'getSubTitle'): return obj.getSubTitle()
|
|
|
|
return ''
|
|
|
|
|
|
|
|
def getSupBreadCrumb(self):
|
|
|
|
'''Gets the html code that can be shown besides the title of an object
|
|
|
|
in the breadcrumb.'''
|
|
|
|
obj = self.appy()
|
|
|
|
if hasattr(obj, 'getSupBreadCrumb'): return obj.getSupBreadCrumb()
|
|
|
|
return ''
|
|
|
|
|
|
|
|
def getSubBreadCrumb(self):
|
|
|
|
'''Gets the content that must appear below the title of an object in the
|
|
|
|
breadcrumb.'''
|
|
|
|
obj = self.appy()
|
|
|
|
if hasattr(obj, 'getSubBreadCrumb'): return obj.getSubBreadCrumb()
|
2012-10-31 15:17:31 -05:00
|
|
|
return ''
|
|
|
|
|
2014-09-23 11:38:55 -05:00
|
|
|
def getListTitle(self, mode='link', nav='', target=None, page='main',
|
2014-12-30 04:23:03 -06:00
|
|
|
inPopup=False, selectJs=None, highlight=False):
|
2014-09-23 11:38:55 -05:00
|
|
|
'''Gets the title as it must appear in lists of objects (ie in lists of
|
|
|
|
tied objects in a Ref, in query results...).
|
|
|
|
|
|
|
|
In most cases, a title must appear as a link that leads to the object
|
|
|
|
view layout. In this case (p_mode == "link"):
|
|
|
|
* p_nav is the navigation parameter allowing navigation between
|
|
|
|
this object and others;
|
|
|
|
* p_target specifies if the link must be opened in the popup or not;
|
|
|
|
* p_page specifies which page to show on the target object view;
|
|
|
|
* p_inPopup indicates if we are already in the popup or not.
|
|
|
|
|
|
|
|
Another p_mode is "select". In this case, we are in a popup for
|
|
|
|
selecting objects: every title must not be a link, but clicking on it
|
|
|
|
must trigger Javascript code (in p_selectJs) that will select this
|
|
|
|
object.
|
|
|
|
|
|
|
|
The last p_mode is "text". In this case, we simply show the object
|
|
|
|
title but with no tied action (link, select).
|
2014-12-30 04:23:03 -06:00
|
|
|
|
|
|
|
If p_highlight is True, keywords will be highlighted if we are in the
|
|
|
|
context of a query with keywords.
|
2014-09-23 11:38:55 -05:00
|
|
|
'''
|
|
|
|
# Compute common parts
|
|
|
|
cssClass = self.getCssFor('title')
|
2014-12-30 04:23:03 -06:00
|
|
|
# Get the title, with highlighted parts when relevant
|
2014-09-23 11:38:55 -05:00
|
|
|
title = self.getShownValue('title')
|
2014-12-30 04:23:03 -06:00
|
|
|
if highlight: title = self.highlight(title)
|
2014-09-23 11:38:55 -05:00
|
|
|
if mode == 'link':
|
|
|
|
inPopup = inPopup or (target.target != '_self')
|
|
|
|
url = self.getUrl(page=page, nav=nav, inPopup=inPopup)
|
|
|
|
onClick = target.openPopup and \
|
|
|
|
(' onclick="%s"' % target.openPopup) or ''
|
|
|
|
res = '<a href="%s" class="%s" target="%s"%s>%s</a>' % \
|
|
|
|
(url, cssClass, target.target, onClick, title)
|
|
|
|
elif mode == 'select':
|
|
|
|
res = '<span class="%s clickable" onclick="%s">%s</span>' % \
|
|
|
|
(cssClass, selectJs, title)
|
|
|
|
elif mode == 'text':
|
|
|
|
res = '<span class="%s">%s</span>' % (cssClass, title)
|
|
|
|
return res
|
|
|
|
|
2014-04-21 05:11:41 -05:00
|
|
|
# Workflow methods ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
def initializeWorkflow(self):
|
|
|
|
'''Called when an object is created, be it temp or not, for initializing
|
|
|
|
workflow-related data on the object.'''
|
2011-07-26 15:15:04 -05:00
|
|
|
wf = self.getWorkflow()
|
|
|
|
# Get the initial workflow state
|
2011-11-25 11:01:20 -06:00
|
|
|
initialState = self.State(name=False)
|
2015-02-03 03:56:15 -06:00
|
|
|
# Create a Transition instance representing the initial transition
|
2011-12-05 08:11:29 -06:00
|
|
|
initialTransition = gen.Transition((initialState, initialState))
|
2015-02-03 03:56:15 -06:00
|
|
|
initialTransition.trigger('_init_', self, wf, '', doSay=False)
|
2011-07-26 15:15:04 -05:00
|
|
|
|
2011-09-08 09:33:16 -05:00
|
|
|
def getWorkflow(self, name=False, className=None):
|
|
|
|
'''Returns the workflow applicable for p_self (or for any instance of
|
|
|
|
p_className if given), or its name, if p_name is True.'''
|
|
|
|
if not className:
|
2012-06-01 08:57:19 -05:00
|
|
|
wrapperClass = self.wrapperClass
|
2011-09-08 09:33:16 -05:00
|
|
|
else:
|
2012-06-01 08:57:19 -05:00
|
|
|
wrapperClass = self.getTool().getAppyClass(className, wrapper=True)
|
|
|
|
wf = wrapperClass.getWorkflow()
|
2011-07-26 15:15:04 -05:00
|
|
|
if not name: return wf
|
|
|
|
return WorkflowDescriptor.getWorkflowName(wf)
|
2009-06-29 07:06:01 -05:00
|
|
|
|
2014-05-02 05:35:09 -05:00
|
|
|
def getWorkflowLabel(self, name=None):
|
|
|
|
'''Gets the i18n label for p_name (which can denote a state or a
|
|
|
|
transition), or for the current object state if p_name is None.'''
|
|
|
|
name = name or self.State()
|
2015-01-02 09:16:48 -06:00
|
|
|
if name == 'create_from_predecessor': return name
|
2014-05-02 05:35:09 -05:00
|
|
|
return '%s_%s' % (self.getWorkflow(name=True), name)
|
2009-06-29 07:06:01 -05:00
|
|
|
|
2014-04-21 05:11:41 -05:00
|
|
|
def getTransitions(self, includeFake=True, includeNotShowable=False,
|
|
|
|
grouped=True):
|
|
|
|
'''This method returns info about transitions (as UiTransition
|
|
|
|
instances) that one can trigger from the user interface.
|
|
|
|
* if p_includeFake is True, it retrieves transitions that the user
|
|
|
|
can't trigger, but for which he needs to know for what reason he
|
|
|
|
can't trigger it;
|
|
|
|
* if p_includeNotShowable is True, it includes transitions for which
|
|
|
|
show=False. Indeed, because "showability" is only a UI concern,
|
|
|
|
and not a security concern, in some cases it has sense to set
|
|
|
|
includeNotShowable=True, because those transitions are triggerable
|
|
|
|
from a security point of view.
|
|
|
|
* If p_grouped is True, transitions are grouped according to their
|
|
|
|
"group" attribute, in a similar way to fields or searches.
|
|
|
|
'''
|
|
|
|
res = []
|
|
|
|
groups = {} # The already encountered groups of transitions.
|
|
|
|
wfPage = gen.Page('workflow')
|
|
|
|
wf = self.getWorkflow()
|
|
|
|
currentState = self.State(name=False)
|
|
|
|
# Loop on every transition
|
|
|
|
for name in dir(wf):
|
|
|
|
transition = getattr(wf, name)
|
|
|
|
if (transition.__class__.__name__ != 'Transition'): continue
|
|
|
|
# Filter transitions that do not have currentState as start state
|
|
|
|
if not transition.hasState(currentState, True): continue
|
|
|
|
# Check if the transition can be triggered
|
|
|
|
mayTrigger = transition.isTriggerable(self, wf)
|
|
|
|
# Compute the condition that will lead to including or not this
|
|
|
|
# transition
|
|
|
|
if not includeFake:
|
|
|
|
includeIt = mayTrigger
|
|
|
|
else:
|
|
|
|
includeIt = mayTrigger or isinstance(mayTrigger, gen.No)
|
|
|
|
if not includeNotShowable:
|
|
|
|
includeIt = includeIt and transition.isShowable(wf, self)
|
|
|
|
if not includeIt: continue
|
|
|
|
# Create the UiTransition instance.
|
|
|
|
info = UiTransition(name, transition, self, mayTrigger)
|
|
|
|
# Add the transition into the result.
|
|
|
|
if not transition.group or not grouped:
|
|
|
|
res.append(info)
|
|
|
|
else:
|
|
|
|
# Insert the UiGroup instance corresponding to transition.group.
|
|
|
|
uiGroup = transition.group.insertInto(res, groups, wfPage,
|
|
|
|
self.__class__.__name__, content='transitions')
|
|
|
|
uiGroup.addElement(info)
|
|
|
|
return res
|
|
|
|
|
2012-07-11 10:27:40 -05:00
|
|
|
def applyUserIdChange(self, oldId, newId):
|
|
|
|
'''A user whose ID was p_oldId has now p_newId. If the old ID was
|
|
|
|
mentioned in self's local roles, update it to the new ID. This
|
|
|
|
method returns 1 if a change occurred, 0 else.'''
|
|
|
|
if oldId in self.__ac_local_roles__:
|
|
|
|
localRoles = self.__ac_local_roles__.copy()
|
|
|
|
localRoles[newId] = localRoles[oldId]
|
|
|
|
del localRoles[oldId]
|
|
|
|
self.__ac_local_roles__ = localRoles
|
|
|
|
self.reindex()
|
|
|
|
return 1
|
|
|
|
return 0
|
|
|
|
|
2014-09-03 11:18:27 -05:00
|
|
|
def findNewValue(self, field, language, history, stopIndex):
|
2013-01-07 08:30:13 -06:00
|
|
|
'''This function tries to find a more recent version of value of p_field
|
2014-09-03 11:18:27 -05:00
|
|
|
on p_self. In the case of a multilingual field, p_language is
|
|
|
|
specified. The method first tries to find it in
|
|
|
|
history[:stopIndex+1]. If it does not find it there, it returns the
|
|
|
|
current value on p_obj.'''
|
2013-01-07 08:30:13 -06:00
|
|
|
i = stopIndex + 1
|
2014-09-03 11:18:27 -05:00
|
|
|
name = language and ('%s-%s' % (field.name, language)) or field.name
|
2013-01-07 08:30:13 -06:00
|
|
|
while (i-1) >= 0:
|
|
|
|
i -= 1
|
|
|
|
if history[i]['action'] != '_datachange_': continue
|
2014-09-03 11:18:27 -05:00
|
|
|
if name not in history[i]['changes']: continue
|
2013-01-07 08:30:13 -06:00
|
|
|
# We have found it!
|
2014-09-03 11:18:27 -05:00
|
|
|
return history[i]['changes'][name][0] or ''
|
|
|
|
# A most recent version was not found in the history: return the current
|
|
|
|
# field value.
|
|
|
|
val = field.getValue(self)
|
|
|
|
if not language: return val or ''
|
|
|
|
return val and val.get(language) or ''
|
2013-01-07 08:30:13 -06:00
|
|
|
|
|
|
|
def getHistoryTexts(self, event):
|
|
|
|
'''Returns a tuple (insertText, deleteText) containing texts to show on,
|
|
|
|
respectively, inserted and deleted chunks of text in a XHTML diff.'''
|
|
|
|
tool = self.getTool()
|
2014-09-03 11:18:27 -05:00
|
|
|
mapping = {'userName': tool.getUserName(event['actor'])}
|
2013-01-07 08:30:13 -06:00
|
|
|
res = []
|
|
|
|
for type in ('insert', 'delete'):
|
|
|
|
msg = self.translate('history_%s' % type, mapping=mapping)
|
|
|
|
date = tool.formatDate(event['time'], withHour=True)
|
|
|
|
msg = '%s: %s' % (date, msg)
|
2014-09-03 11:18:27 -05:00
|
|
|
res.append(msg)
|
2013-01-07 08:30:13 -06:00
|
|
|
return res
|
|
|
|
|
2014-09-03 11:18:27 -05:00
|
|
|
def hasHistory(self, name=None):
|
|
|
|
'''Has this object an history? If p_name is specified, the question
|
|
|
|
becomes: has this object an history for field p_name?'''
|
|
|
|
if not hasattr(self.aq_base, 'workflow_history') or \
|
|
|
|
not self.workflow_history: return
|
2014-11-25 07:56:38 -06:00
|
|
|
# Return False if the user can't consult the object history
|
|
|
|
klass = self.getClass()
|
|
|
|
if hasattr(klass, 'showHistory'):
|
|
|
|
show = klass.showHistory
|
|
|
|
if callable(show): show = klass.showHistory(self.appy())
|
|
|
|
if not show: return
|
|
|
|
# Get the object history
|
2014-09-03 11:18:27 -05:00
|
|
|
history = self.workflow_history['appy']
|
|
|
|
if not name:
|
|
|
|
for event in history:
|
|
|
|
if event['action'] and (event['comments'] != '_invisible_'):
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
field = self.getAppyType(name)
|
2014-09-05 10:13:23 -05:00
|
|
|
# Is this field a multilingual field ?
|
|
|
|
languages = None
|
|
|
|
if field.type == 'String':
|
|
|
|
languages = field.getAttribute(self, 'languages')
|
|
|
|
multilingual = len(languages) > 1
|
2014-09-03 11:18:27 -05:00
|
|
|
for event in history:
|
|
|
|
if event['action'] != '_datachange_': continue
|
|
|
|
# Is there a value present for this field in this data change?
|
|
|
|
if not multilingual:
|
|
|
|
if (name in event['changes']) and \
|
|
|
|
(event['changes'][name][0]):
|
2013-01-08 09:58:29 -06:00
|
|
|
return True
|
2014-09-03 11:18:27 -05:00
|
|
|
else:
|
|
|
|
# At least one language-specific value must be present
|
2014-09-05 10:13:23 -05:00
|
|
|
for lg in languages:
|
2014-09-03 11:18:27 -05:00
|
|
|
lgName = '%s-%s' % (field.name, lg)
|
|
|
|
if (lgName in event['changes']) and \
|
|
|
|
event['changes'][lgName][0]:
|
|
|
|
return True
|
2013-01-08 09:58:29 -06:00
|
|
|
|
2011-01-28 19:18:14 -06:00
|
|
|
def getHistory(self, startNumber=0, reverse=True, includeInvisible=False,
|
|
|
|
batchSize=5):
|
2014-09-03 11:18:27 -05:00
|
|
|
'''Returns a copy of the history for this object, sorted in p_reverse
|
|
|
|
order if specified (most recent change first), whose invisible events
|
|
|
|
have been removed if p_includeInvisible is True.'''
|
|
|
|
history = list(self.workflow_history['appy'][1:])
|
2009-12-14 13:22:55 -06:00
|
|
|
if not includeInvisible:
|
|
|
|
history = [e for e in history if e['comments'] != '_invisible_']
|
|
|
|
if reverse: history.reverse()
|
2013-01-07 08:30:13 -06:00
|
|
|
# Keep only events which are within the batch.
|
|
|
|
res = []
|
|
|
|
stopIndex = startNumber + batchSize - 1
|
|
|
|
i = -1
|
|
|
|
while (i+1) < len(history):
|
|
|
|
i += 1
|
|
|
|
# Ignore events outside range startNumber:startNumber+batchSize
|
|
|
|
if i < startNumber: continue
|
|
|
|
if i > stopIndex: break
|
|
|
|
if history[i]['action'] == '_datachange_':
|
|
|
|
# Take a copy of the event: we will modify it and replace
|
|
|
|
# fields' old values by their formatted counterparts.
|
|
|
|
event = history[i].copy()
|
|
|
|
event['changes'] = {}
|
|
|
|
for name, oldValue in history[i]['changes'].iteritems():
|
2014-09-03 11:18:27 -05:00
|
|
|
# "name" can specify a language-specific part in a
|
|
|
|
# multilingual field. "oldValue" is a tuple
|
|
|
|
# (value, fieldName).
|
|
|
|
if '-' in name:
|
|
|
|
fieldName, lg = name.split('-')
|
|
|
|
else:
|
|
|
|
fieldName = name
|
|
|
|
lg = None
|
|
|
|
field = self.getAppyType(fieldName)
|
2013-01-07 08:30:13 -06:00
|
|
|
# Field 'name' may not exist, if the history has been
|
|
|
|
# transferred from another site. In this case we can't show
|
|
|
|
# this data change.
|
|
|
|
if not field: continue
|
|
|
|
if (field.type == 'String') and \
|
|
|
|
(field.format == gen.String.XHTML):
|
|
|
|
# For rich text fields, instead of simply showing the
|
|
|
|
# previous value, we propose a diff with the next
|
2013-01-10 04:47:39 -06:00
|
|
|
# version, excepted if the previous value is empty.
|
2014-09-03 11:18:27 -05:00
|
|
|
if lg: isEmpty = not oldValue[0]
|
2014-09-05 10:13:23 -05:00
|
|
|
else: isEmpty = field.isEmptyValue(self, oldValue[0])
|
2014-09-03 11:18:27 -05:00
|
|
|
if isEmpty:
|
2013-01-07 08:30:13 -06:00
|
|
|
val = '-'
|
|
|
|
else:
|
2014-09-03 11:18:27 -05:00
|
|
|
newValue= self.findNewValue(field, lg, history, i-1)
|
2013-01-07 08:30:13 -06:00
|
|
|
# Compute the diff between oldValue and newValue
|
|
|
|
iMsg, dMsg = self.getHistoryTexts(event)
|
|
|
|
comparator= HtmlDiff(oldValue[0],newValue,iMsg,dMsg)
|
|
|
|
val = comparator.get()
|
|
|
|
else:
|
2014-09-03 11:18:27 -05:00
|
|
|
fmt = lg and 'getUnilingualFormattedValue' or \
|
|
|
|
'getFormattedValue'
|
|
|
|
val = getattr(field, fmt)(self, oldValue[0]) or '-'
|
2013-01-07 08:30:13 -06:00
|
|
|
if isinstance(val, list) or isinstance(val, tuple):
|
|
|
|
val = '<ul>%s</ul>' % \
|
|
|
|
''.join(['<li>%s</li>' % v for v in val])
|
2014-09-03 11:18:27 -05:00
|
|
|
event['changes'][name] = (val, oldValue[1])
|
2013-01-07 08:30:13 -06:00
|
|
|
else:
|
|
|
|
event = history[i]
|
|
|
|
res.append(event)
|
2013-08-21 15:25:27 -05:00
|
|
|
return Object(events=res, totalNumber=len(history))
|
2009-12-14 13:22:55 -06:00
|
|
|
|
2015-01-26 10:26:05 -06:00
|
|
|
def getHistoryCollapse(self):
|
|
|
|
'''Gets a Collapsible instance for showing a collapse or expanded
|
|
|
|
history in this object.'''
|
|
|
|
return Collapsible('appyHistory', self.REQUEST)
|
|
|
|
|
2010-12-17 07:46:55 -06:00
|
|
|
def mayNavigate(self):
|
|
|
|
'''May the currently logged user see the navigation panel linked to
|
|
|
|
this object?'''
|
|
|
|
appyObj = self.appy()
|
|
|
|
if hasattr(appyObj, 'mayNavigate'): return appyObj.mayNavigate()
|
|
|
|
return True
|
|
|
|
|
2012-06-02 10:39:05 -05:00
|
|
|
def getDefaultViewPage(self):
|
|
|
|
'''Which view page must be shown by default?'''
|
|
|
|
appyObj = self.appy()
|
|
|
|
if hasattr(appyObj, 'getDefaultViewPage'):
|
|
|
|
return appyObj.getDefaultViewPage()
|
|
|
|
return 'main'
|
|
|
|
|
|
|
|
def getDefaultEditPage(self):
|
|
|
|
'''Which edit page must be shown by default?'''
|
|
|
|
appyObj = self.appy()
|
|
|
|
if hasattr(appyObj, 'getDefaultEditPage'):
|
|
|
|
return appyObj.getDefaultEditPage()
|
|
|
|
return 'main'
|
|
|
|
|
2012-02-23 08:58:06 -06:00
|
|
|
def mayAct(self):
|
2014-05-03 15:45:51 -05:00
|
|
|
'''m_mayAct allows to hide the whole set of actions for an object.
|
|
|
|
Indeed, beyond workflow security, it can be useful to hide controls
|
|
|
|
like "edit" icons/buttons. For example, if a user may only edit some
|
|
|
|
Ref fields with add=True on an object, when clicking on "edit", he
|
|
|
|
will see an empty edit form.'''
|
2012-02-23 08:58:06 -06:00
|
|
|
appyObj = self.appy()
|
|
|
|
if hasattr(appyObj, 'mayAct'): return appyObj.mayAct()
|
|
|
|
return True
|
|
|
|
|
2010-12-17 07:46:55 -06:00
|
|
|
def mayDelete(self):
|
2012-10-08 03:08:54 -05:00
|
|
|
'''May the currently logged user delete this object?'''
|
2013-08-23 11:57:27 -05:00
|
|
|
res = self.allows('delete')
|
2012-06-01 08:57:19 -05:00
|
|
|
if not res: return
|
|
|
|
# An additional, user-defined condition, may refine the base permission.
|
2010-12-17 07:46:55 -06:00
|
|
|
appyObj = self.appy()
|
|
|
|
if hasattr(appyObj, 'mayDelete'): return appyObj.mayDelete()
|
|
|
|
return True
|
|
|
|
|
2014-05-03 15:45:51 -05:00
|
|
|
def mayEdit(self, permission='write', permOnly=False, raiseError=False):
|
|
|
|
'''May the currently logged user edit this object? p_permission can be a
|
|
|
|
field-specific permission. If p_permOnly is True, the specific
|
|
|
|
user-defined condition is not evaluated. If p_raiseError is True, if
|
|
|
|
the user may not edit p_self, an error is raised.'''
|
|
|
|
res = self.allows(permission, raiseError=raiseError)
|
|
|
|
if not res: return
|
|
|
|
if permOnly: return res
|
|
|
|
# An additional, user-defined condition, may refine the base permission.
|
|
|
|
appyObj = self.appy()
|
|
|
|
if hasattr(appyObj, 'mayEdit'):
|
|
|
|
res = appyObj.mayEdit()
|
|
|
|
if not res and raiseError: self.raiseUnauthorized()
|
|
|
|
return res
|
|
|
|
return True
|
|
|
|
|
|
|
|
def mayView(self, permission='read', raiseError=False):
|
|
|
|
'''May the currently logged user view this object? p_permission can be a
|
|
|
|
field-specific permission. If p_raiseError is True, if the user may
|
|
|
|
not view p_self, an error is raised.'''
|
|
|
|
res = self.allows(permission, raiseError=raiseError)
|
2012-06-01 08:57:19 -05:00
|
|
|
if not res: return
|
|
|
|
# An additional, user-defined condition, may refine the base permission.
|
|
|
|
appyObj = self.appy()
|
2014-05-03 15:45:51 -05:00
|
|
|
if hasattr(appyObj, 'mayView'):
|
|
|
|
res = appyObj.mayView()
|
|
|
|
if not res and raiseError: self.raiseUnauthorized()
|
|
|
|
return res
|
2012-06-01 08:57:19 -05:00
|
|
|
return True
|
|
|
|
|
2014-04-15 14:46:13 -05:00
|
|
|
def onExecuteAction(self):
|
2014-04-21 05:11:41 -05:00
|
|
|
'''Called when a user wants to execute an Appy action on an object.'''
|
2009-10-20 09:57:00 -05:00
|
|
|
rq = self.REQUEST
|
2014-04-15 14:46:13 -05:00
|
|
|
return self.getAppyType(rq['fieldName']).onUiRequest(self, rq)
|
2009-10-20 09:57:00 -05:00
|
|
|
|
2011-11-25 11:01:20 -06:00
|
|
|
def onTrigger(self):
|
2014-04-21 05:11:41 -05:00
|
|
|
'''Called when a user wants to trigger a transition on an object.'''
|
2009-10-20 09:57:00 -05:00
|
|
|
rq = self.REQUEST
|
2014-04-21 05:11:41 -05:00
|
|
|
wf = self.getWorkflow()
|
|
|
|
# Get the transition
|
|
|
|
name = rq['transition']
|
|
|
|
transition = getattr(wf, name, None)
|
|
|
|
if not transition or (transition.__class__.__name__ != 'Transition'):
|
|
|
|
raise Exception('Transition "%s" not found.' % name)
|
|
|
|
return transition.onUiRequest(self, wf, name, rq)
|
2009-10-20 09:57:00 -05:00
|
|
|
|
2013-08-23 11:57:27 -05:00
|
|
|
def getRolesFor(self, permission):
|
|
|
|
'''Gets, according to the workflow, the roles that are currently granted
|
|
|
|
p_permission on this object.'''
|
|
|
|
state = self.State(name=False)
|
2014-05-14 08:10:41 -05:00
|
|
|
if permission not in state.permissions:
|
|
|
|
wf = self.getWorkflow().__name__
|
|
|
|
raise Exception('Permission "%s" not in permissions dict for ' \
|
|
|
|
'state %s.%s' % \
|
|
|
|
(permission, wf, self.State(name=True)))
|
2013-09-18 05:06:07 -05:00
|
|
|
roles = state.permissions[permission]
|
|
|
|
if roles: return [role.name for role in roles]
|
|
|
|
return ()
|
2013-08-23 11:57:27 -05:00
|
|
|
|
2009-08-04 07:39:43 -05:00
|
|
|
def appy(self):
|
2010-02-08 01:53:30 -06:00
|
|
|
'''Returns a wrapper object allowing to manipulate p_self the Appy
|
|
|
|
way.'''
|
2010-08-05 11:23:17 -05:00
|
|
|
# Create the dict for storing Appy wrapper on the REQUEST if needed.
|
2011-11-25 11:01:20 -06:00
|
|
|
rq = getattr(self, 'REQUEST', None)
|
2011-12-05 11:15:45 -06:00
|
|
|
if not rq:
|
|
|
|
# We are in test mode or Zope is starting. Use static variable
|
|
|
|
# config.fakeRequest instead.
|
|
|
|
rq = self.getProductConfig().fakeRequest
|
2011-12-05 03:52:18 -06:00
|
|
|
if not hasattr(rq, 'wrappers'): rq.wrappers = {}
|
2011-12-05 11:15:45 -06:00
|
|
|
# Return the Appy wrapper if already present in the cache
|
2014-04-25 05:14:50 -05:00
|
|
|
uid = self.id
|
2011-12-05 03:52:18 -06:00
|
|
|
if uid in rq.wrappers: return rq.wrappers[uid]
|
|
|
|
# Create the Appy wrapper, cache it in rq.wrappers and return it
|
2010-08-05 11:23:17 -05:00
|
|
|
wrapper = self.wrapperClass(self)
|
2011-12-05 03:52:18 -06:00
|
|
|
rq.wrappers[uid] = wrapper
|
2010-08-05 11:23:17 -05:00
|
|
|
return wrapper
|
2011-11-25 11:01:20 -06:00
|
|
|
|
|
|
|
# --------------------------------------------------------------------------
|
2012-11-05 03:21:27 -06:00
|
|
|
# Methods for computing values of standard Appy indexes
|
2011-11-25 11:01:20 -06:00
|
|
|
# --------------------------------------------------------------------------
|
|
|
|
def UID(self):
|
|
|
|
'''Returns the unique identifier for this object.'''
|
2014-04-01 11:34:12 -05:00
|
|
|
return self.id
|
2011-11-25 11:01:20 -06:00
|
|
|
|
|
|
|
def Title(self):
|
|
|
|
'''Returns the title for this object.'''
|
|
|
|
title = self.getAppyType('title')
|
2014-09-06 08:20:59 -05:00
|
|
|
if title: return title.getIndexValue(self)
|
2011-11-25 11:01:20 -06:00
|
|
|
return self.id
|
|
|
|
|
|
|
|
def SortableTitle(self):
|
|
|
|
'''Returns the title as must be stored in index "SortableTitle".'''
|
2014-02-26 03:40:27 -06:00
|
|
|
return sutils.normalizeText(self.Title())
|
2011-11-25 11:01:20 -06:00
|
|
|
|
|
|
|
def SearchableText(self):
|
|
|
|
'''This method concatenates the content of every field with
|
|
|
|
searchable=True for indexing purposes.'''
|
|
|
|
res = []
|
|
|
|
for field in self.getAllAppyTypes():
|
|
|
|
if not field.searchable: continue
|
|
|
|
res.append(field.getIndexValue(self, forSearch=True))
|
|
|
|
return res
|
|
|
|
|
|
|
|
def Creator(self):
|
|
|
|
'''Who create this object?'''
|
|
|
|
return self.creator
|
|
|
|
|
|
|
|
def Created(self):
|
|
|
|
'''When was this object created ?'''
|
|
|
|
return self.created
|
|
|
|
|
2012-11-05 03:21:27 -06:00
|
|
|
def Modified(self):
|
|
|
|
'''When was this object last modified ?'''
|
|
|
|
if hasattr(self.aq_base, 'modified'): return self.modified
|
|
|
|
return self.created
|
|
|
|
|
2011-11-25 11:01:20 -06:00
|
|
|
def State(self, name=True, initial=False):
|
|
|
|
'''Returns information about the current object state. If p_name is
|
|
|
|
True, the returned info is the state name. Else, it is the State
|
|
|
|
instance. If p_initial is True, instead of returning info about the
|
|
|
|
current state, it returns info about the workflow initial state.'''
|
|
|
|
wf = self.getWorkflow()
|
|
|
|
if initial or not hasattr(self.aq_base, 'workflow_history'):
|
|
|
|
# No workflow information is available (yet) on this object, or
|
|
|
|
# initial state is asked. In both cases, return info about this
|
|
|
|
# initial state.
|
|
|
|
res = 'active'
|
|
|
|
for elem in dir(wf):
|
|
|
|
attr = getattr(wf, elem)
|
|
|
|
if (attr.__class__.__name__ == 'State') and attr.initial:
|
|
|
|
res = elem
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
# Return info about the current object state
|
2014-10-07 06:14:16 -05:00
|
|
|
res = self.workflow_history['appy'][-1]['review_state']
|
2011-11-25 11:01:20 -06:00
|
|
|
# Return state name or state definition?
|
|
|
|
if name: return res
|
|
|
|
else: return getattr(wf, res)
|
|
|
|
|
|
|
|
def ClassName(self):
|
|
|
|
'''Returns the name of the (Zope) class for self.'''
|
|
|
|
return self.portal_type
|
|
|
|
|
2011-11-28 15:50:01 -06:00
|
|
|
def Allowed(self):
|
|
|
|
'''Returns the list of roles and users that are allowed to view this
|
|
|
|
object. This index value will be used within catalog queries for
|
|
|
|
filtering objects the user is allowed to see.'''
|
2013-08-23 11:57:27 -05:00
|
|
|
# Get, from the workflow, roles having permission 'read'.
|
|
|
|
res = self.getRolesFor('read')
|
|
|
|
# Add users or groups having, locally, this role on this object.
|
|
|
|
localRoles = getattr(self.aq_base, '__ac_local_roles__', None)
|
|
|
|
if not localRoles: return res
|
2011-11-28 15:50:01 -06:00
|
|
|
for id, roles in localRoles.iteritems():
|
|
|
|
for role in roles:
|
|
|
|
if role in res:
|
2013-08-23 11:57:27 -05:00
|
|
|
usr = 'user:%s' % id
|
|
|
|
if usr not in res: res.append(usr)
|
|
|
|
return res
|
2011-11-28 15:50:01 -06:00
|
|
|
|
2012-11-05 03:21:27 -06:00
|
|
|
def showState(self):
|
|
|
|
'''Must I show self's current state ?'''
|
|
|
|
stateShow = self.State(name=False).show
|
2009-06-29 07:06:01 -05:00
|
|
|
if callable(stateShow):
|
2012-11-05 03:21:27 -06:00
|
|
|
return stateShow(self.getWorkflow(), self.appy())
|
|
|
|
return stateShow
|
2009-06-29 07:06:01 -05:00
|
|
|
|
2013-03-18 07:13:29 -05:00
|
|
|
def showTransitions(self, layoutType):
|
|
|
|
'''Must we show the buttons/icons for triggering transitions on
|
|
|
|
p_layoutType?'''
|
|
|
|
# Never show transitions on edit pages.
|
|
|
|
if layoutType == 'edit': return
|
|
|
|
# Use the default value if self's class does not specify it.
|
|
|
|
klass = self.getClass()
|
|
|
|
if not hasattr(klass, 'showTransitions'): return (layoutType=='view')
|
|
|
|
showValue = klass.showTransitions
|
|
|
|
# This value can be a single value or a tuple/list of values.
|
|
|
|
if isinstance(showValue, basestring): return layoutType == showValue
|
|
|
|
return layoutType in showValue
|
|
|
|
|
2010-09-17 08:32:48 -05:00
|
|
|
getUrlDefaults = {'page':True, 'nav':True}
|
2014-12-08 07:52:04 -06:00
|
|
|
def getUrl(self, base=None, mode='view', inPopup=False, relative=False,
|
|
|
|
**kwargs):
|
2013-08-21 05:35:30 -05:00
|
|
|
'''Returns an URL for this object.
|
2010-09-17 08:32:48 -05:00
|
|
|
* If p_base is None, it will be the base URL for this object
|
2014-12-08 07:52:04 -06:00
|
|
|
(ie, Zope self.absolute_url() or an URL this is relative to the
|
|
|
|
root site if p_relative is True).
|
2010-11-22 02:36:14 -06:00
|
|
|
* p_mode can be "edit", "view" or "raw" (a non-param, base URL)
|
2014-06-15 17:58:45 -05:00
|
|
|
* If p_inPopup is True, the link will be opened in the Appy iframe.
|
|
|
|
An additional param "popup=1" will be added to URL params, in order
|
|
|
|
to tell Appy that the link target will be shown in a popup, in a
|
|
|
|
minimalistic way (no portlet...).
|
2010-09-17 08:32:48 -05:00
|
|
|
* p_kwargs can store additional parameters to add to the URL.
|
|
|
|
In this dict, every value that is a string will be added to the
|
|
|
|
URL as-is. Every value that is True will be replaced by the value
|
|
|
|
in the request for the corresponding key (if existing; else, the
|
|
|
|
param will not be included in the URL at all).'''
|
2010-11-22 02:36:14 -06:00
|
|
|
# Define the URL suffix
|
|
|
|
suffix = ''
|
2013-08-21 05:35:30 -05:00
|
|
|
if mode != 'raw': suffix = '/%s' % mode
|
2014-12-08 07:52:04 -06:00
|
|
|
# Define the base URL if omitted
|
2010-09-19 08:04:44 -05:00
|
|
|
if not base:
|
2014-12-08 07:52:04 -06:00
|
|
|
base = relative and self.absolute_url_path() or self.absolute_url()
|
|
|
|
base += suffix
|
2014-06-25 08:42:34 -05:00
|
|
|
existingParams = ''
|
|
|
|
else:
|
|
|
|
existingParams = urllib.splitquery(base)[1]
|
2014-12-08 07:52:04 -06:00
|
|
|
# If a raw URL is asked, remove any param and suffix
|
2010-11-22 02:36:14 -06:00
|
|
|
if mode == 'raw':
|
|
|
|
if '?' in base: base = base[:base.index('?')]
|
2014-12-08 07:52:04 -06:00
|
|
|
base = base.rstrip('/')
|
2010-11-22 02:36:14 -06:00
|
|
|
for mode in ('view', 'edit'):
|
2013-08-21 05:35:30 -05:00
|
|
|
if base.endswith(mode):
|
2014-12-08 07:52:04 -06:00
|
|
|
base = base[:-len(mode)].rstrip('/')
|
2010-11-22 02:36:14 -06:00
|
|
|
break
|
|
|
|
return base
|
2010-09-17 08:32:48 -05:00
|
|
|
# Manage default args
|
|
|
|
if not kwargs: kwargs = self.getUrlDefaults
|
|
|
|
if 'page' not in kwargs: kwargs['page'] = True
|
|
|
|
if 'nav' not in kwargs: kwargs['nav'] = True
|
|
|
|
# Create URL parameters from kwargs
|
|
|
|
params = []
|
|
|
|
for name, value in kwargs.iteritems():
|
|
|
|
if isinstance(value, basestring):
|
|
|
|
params.append('%s=%s' % (name, value))
|
|
|
|
elif self.REQUEST.get(name, ''):
|
|
|
|
params.append('%s=%s' % (name, self.REQUEST[name]))
|
2014-06-25 08:42:34 -05:00
|
|
|
# Manage inPopup
|
|
|
|
if inPopup and ('popup=' not in existingParams):
|
|
|
|
params.append('popup=1')
|
2010-09-17 08:32:48 -05:00
|
|
|
if params:
|
|
|
|
params = '&'.join(params)
|
|
|
|
if base.find('?') != -1: params = '&' + params
|
|
|
|
else: params = '?' + params
|
|
|
|
else:
|
|
|
|
params = ''
|
2010-09-19 08:04:44 -05:00
|
|
|
return '%s%s' % (base, params)
|
2009-10-18 07:52:27 -05:00
|
|
|
|
2011-11-28 15:50:01 -06:00
|
|
|
def getTool(self):
|
|
|
|
'''Returns the application tool.'''
|
|
|
|
return self.getPhysicalRoot().config
|
|
|
|
|
2013-07-24 08:53:19 -05:00
|
|
|
def getProductConfig(self, app=False):
|
|
|
|
'''Returns a reference to the config module. If p_app is True, it
|
|
|
|
returns the application config.'''
|
|
|
|
res = self.__class__.config
|
|
|
|
if app: res = res.appConfig
|
|
|
|
return res
|
2011-11-28 15:50:01 -06:00
|
|
|
|
2012-02-23 08:58:06 -06:00
|
|
|
def getParent(self):
|
|
|
|
'''If this object is stored within another one, this method returns it.
|
|
|
|
Else (if the object is stored directly within the tool or the root
|
|
|
|
data folder) it returns None.'''
|
|
|
|
parent = self.getParentNode()
|
2012-03-26 12:09:45 -05:00
|
|
|
# Not-Managers can't navigate back to the tool
|
2013-08-21 05:35:30 -05:00
|
|
|
if (parent.id == 'config') and \
|
|
|
|
not self.getTool().getUser().has_role('Manager'):
|
2012-03-26 12:09:45 -05:00
|
|
|
return False
|
2012-11-29 13:45:21 -06:00
|
|
|
if parent.meta_type not in ('Folder', 'Temporary Folder'): return parent
|
|
|
|
|
2014-12-15 12:36:00 -06:00
|
|
|
def getShownValue(self, name='title', language=None):
|
2014-09-06 08:20:59 -05:00
|
|
|
'''Call field.getShownValue on field named p_name.'''
|
2014-12-15 12:36:00 -06:00
|
|
|
field = self.getAppyType(name)
|
|
|
|
return field.getShownValue(self, field.getValue(self),
|
|
|
|
language=language)
|
2014-09-06 08:20:59 -05:00
|
|
|
|
2014-06-15 17:58:45 -05:00
|
|
|
def getBreadCrumb(self, inPopup=False):
|
2013-03-09 09:06:12 -06:00
|
|
|
'''Gets breadcrumb info about this object and its parents (if it must
|
|
|
|
be shown).'''
|
|
|
|
# Return an empty breadcrumb if it must not be shown.
|
|
|
|
klass = self.getClass()
|
|
|
|
if hasattr(klass, 'breadcrumb') and not klass.breadcrumb: return ()
|
|
|
|
# Compute the breadcrumb
|
2014-09-06 08:20:59 -05:00
|
|
|
title = self.getAppyType('title')
|
2014-06-15 17:58:45 -05:00
|
|
|
res = [Object(url=self.getUrl(inPopup=inPopup),
|
2014-09-06 08:20:59 -05:00
|
|
|
title=title.getShownValue(self, title.getValue(self)))]
|
2014-06-15 17:58:45 -05:00
|
|
|
# In a popup: limit the breadcrumb to the current object.
|
|
|
|
if inPopup: return res
|
2012-11-29 13:45:21 -06:00
|
|
|
parent = self.getParent()
|
2014-06-15 17:58:45 -05:00
|
|
|
if parent: res = parent.getBreadCrumb() + res
|
2012-11-29 13:45:21 -06:00
|
|
|
return res
|
2012-02-23 08:58:06 -06:00
|
|
|
|
2011-11-28 15:50:01 -06:00
|
|
|
def index_html(self):
|
2013-10-08 15:41:21 -05:00
|
|
|
'''Base method called when hitting this object.
|
|
|
|
- The standard behaviour is to redirect to /view.
|
|
|
|
- If a parameter named "do" is present in the request, it is supposed
|
|
|
|
to contain the name of a method to call on this object. In this
|
|
|
|
case, we call this method and return its result as XML.
|
|
|
|
- If method is POST, we consider the request to be XML data, that we
|
|
|
|
marshall to Python, and we call the method in param "do" with, as
|
|
|
|
arg, this marshalled Python object. While this could sound strange
|
|
|
|
to expect a query string containing a param "do" in a HTTP POST,
|
|
|
|
the HTTP spec does not prevent to do it.'''
|
2012-11-23 08:20:12 -06:00
|
|
|
rq = self.REQUEST
|
2013-10-08 15:41:21 -05:00
|
|
|
if (rq.REQUEST_METHOD == 'POST') and rq.QUERY_STRING:
|
|
|
|
# A POST method containing XML data.
|
|
|
|
rq.args = XmlUnmarshaller().parse(rq.stdin.getvalue())
|
|
|
|
# Find the name of the method to call.
|
|
|
|
methodName = rq.QUERY_STRING.split('=')[1]
|
|
|
|
return self.xml(action=methodName)
|
|
|
|
elif rq.has_key('do'):
|
2012-11-23 08:20:12 -06:00
|
|
|
# The user wants to call a method on this object and get its result
|
|
|
|
# as XML.
|
|
|
|
return self.xml(action=rq['do'])
|
|
|
|
else:
|
|
|
|
# The user wants to consult the view page for this object
|
|
|
|
return rq.RESPONSE.redirect(self.getUrl())
|
2011-11-28 15:50:01 -06:00
|
|
|
|
2011-01-19 13:51:43 -06:00
|
|
|
def getUserLanguage(self):
|
2011-01-17 07:49:56 -06:00
|
|
|
'''Gets the language (code) of the current user.'''
|
2014-03-28 06:25:42 -05:00
|
|
|
if not hasattr(self, 'REQUEST'):
|
|
|
|
return self.getProductConfig().appConfig.languages[0]
|
2014-09-10 11:21:14 -05:00
|
|
|
# Return the cached value on the request object if present
|
|
|
|
rq = self.REQUEST
|
|
|
|
if hasattr(rq, 'userLanguage'): return rq.userLanguage
|
2012-05-29 13:50:18 -05:00
|
|
|
# Try the value which comes from the cookie. Indeed, if such a cookie is
|
|
|
|
# present, it means that the user has explicitly chosen this language
|
|
|
|
# via the language selector.
|
2014-09-10 11:21:14 -05:00
|
|
|
if '_ZopeLg' in rq.cookies:
|
|
|
|
res = rq.cookies['_ZopeLg']
|
|
|
|
else:
|
|
|
|
# Try the LANGUAGE key from the request: it corresponds to the
|
|
|
|
# language as configured in the user's browser.
|
|
|
|
res = rq.get('LANGUAGE', None)
|
|
|
|
if not res:
|
|
|
|
# Try the HTTP_ACCEPT_LANGUAGE key from the request, which
|
|
|
|
# stores language preferences as defined in the user's browser.
|
|
|
|
# Several languages can be listed, from most to less wanted.
|
|
|
|
res = rq.get('HTTP_ACCEPT_LANGUAGE', None)
|
|
|
|
if res:
|
|
|
|
if ',' in res: res = res[:res.find(',')]
|
|
|
|
if '-' in res: res = res[:res.find('-')]
|
|
|
|
else:
|
|
|
|
res = self.getProductConfig().appConfig.languages[0]
|
|
|
|
# Cache this result
|
|
|
|
rq.userLanguage = res
|
2011-01-17 07:49:56 -06:00
|
|
|
return res
|
|
|
|
|
2012-06-27 06:27:24 -05:00
|
|
|
def getLanguageDirection(self, lang):
|
|
|
|
'''Determines if p_lang is a LTR or RTL language.'''
|
|
|
|
if lang in rtlLanguages: return 'rtl'
|
|
|
|
return 'ltr'
|
|
|
|
|
2011-02-23 04:30:44 -06:00
|
|
|
def formatText(self, text, format='html'):
|
|
|
|
'''Produces a representation of p_text into the desired p_format, which
|
2011-06-28 02:12:20 -05:00
|
|
|
is "html" by default.'''
|
|
|
|
if 'html' in format:
|
|
|
|
if format == 'html_from_text': text = cgi.escape(text)
|
2011-02-23 04:30:44 -06:00
|
|
|
res = text.replace('\r\n', '<br/>').replace('\n', '<br/>')
|
2012-05-03 03:51:54 -05:00
|
|
|
elif format == 'text':
|
|
|
|
res = text.replace('<br/>', '\n')
|
2011-02-23 04:30:44 -06:00
|
|
|
else:
|
|
|
|
res = text
|
|
|
|
return res
|
|
|
|
|
2010-10-14 07:43:56 -05:00
|
|
|
def translate(self, label, mapping={}, domain=None, default=None,
|
2011-09-10 18:59:22 -05:00
|
|
|
language=None, format='html', field=None):
|
2011-03-04 03:30:45 -06:00
|
|
|
'''Translates a given p_label into p_domain with p_mapping.
|
|
|
|
|
|
|
|
If p_field is given, p_label does not correspond to a full label
|
|
|
|
name, but to a label type linked to p_field: "label", "descr"
|
|
|
|
or "help". Indeed, in this case, a specific i18n mapping may be
|
|
|
|
available on the field, so we must merge this mapping into
|
2011-09-10 18:59:22 -05:00
|
|
|
p_mapping.'''
|
2009-10-18 07:52:27 -05:00
|
|
|
cfg = self.getProductConfig()
|
|
|
|
if not domain: domain = cfg.PROJECTNAME
|
2011-12-08 09:01:57 -06:00
|
|
|
# Get the label name, and the field-specific mapping if any.
|
|
|
|
if field:
|
2013-08-21 05:35:30 -05:00
|
|
|
if field.type != 'group':
|
|
|
|
fieldMapping = field.mapping[label]
|
2011-12-08 09:01:57 -06:00
|
|
|
if fieldMapping:
|
|
|
|
if callable(fieldMapping):
|
2013-08-21 05:35:30 -05:00
|
|
|
fieldMapping = field.callMethod(self, fieldMapping)
|
2011-12-08 09:01:57 -06:00
|
|
|
mapping.update(fieldMapping)
|
2013-08-21 05:35:30 -05:00
|
|
|
label = getattr(field, '%sId' % label)
|
2011-12-08 09:01:57 -06:00
|
|
|
# We will get the translation from a Translation object.
|
|
|
|
# In what language must we get the translation?
|
|
|
|
if not language: language = self.getUserLanguage()
|
|
|
|
tool = self.getTool()
|
|
|
|
try:
|
|
|
|
translation = getattr(tool, language).appy()
|
|
|
|
except AttributeError:
|
|
|
|
# We have no translation for this language. Fallback to 'en'.
|
|
|
|
translation = getattr(tool, 'en').appy()
|
|
|
|
res = getattr(translation, label, '')
|
|
|
|
if not res:
|
|
|
|
# Fallback to 'en'.
|
|
|
|
translation = getattr(tool, 'en').appy()
|
2011-01-14 02:06:25 -06:00
|
|
|
res = getattr(translation, label, '')
|
2014-09-11 09:41:08 -05:00
|
|
|
# If still no result, put a nice name derived from the label instead of
|
|
|
|
# a translated message.
|
|
|
|
if not res: res = produceNiceMessage(label.rsplit('_', 1)[-1])
|
2011-12-08 09:01:57 -06:00
|
|
|
else:
|
|
|
|
# Perform replacements, according to p_format.
|
|
|
|
res = self.formatText(res, format)
|
|
|
|
# Perform variable replacements
|
|
|
|
for name, repl in mapping.iteritems():
|
|
|
|
if not isinstance(repl, basestring): repl = str(repl)
|
|
|
|
res = res.replace('${%s}' % name, repl)
|
2010-11-10 08:15:00 -06:00
|
|
|
return res
|
2010-08-05 11:23:17 -05:00
|
|
|
|
|
|
|
def getPageLayout(self, layoutType):
|
2010-09-17 08:32:48 -05:00
|
|
|
'''Returns the layout corresponding to p_layoutType for p_self.'''
|
2014-09-11 09:41:08 -05:00
|
|
|
res = self.wrapperClass.getPageLayouts()[layoutType]
|
|
|
|
if isinstance(res, basestring): res = Table(res)
|
|
|
|
return res
|
2010-08-05 11:23:17 -05:00
|
|
|
|
2012-01-04 11:03:46 -06:00
|
|
|
def download(self, name=None):
|
|
|
|
'''Downloads the content of the file that is in the File field whose
|
|
|
|
name is in the request. This name can also represent an attribute
|
2012-04-19 02:20:15 -05:00
|
|
|
storing an image within a rich text field. If p_name is not given, it
|
|
|
|
is retrieved from the request.'''
|
2015-01-29 09:36:43 -06:00
|
|
|
rq = self.REQUEST
|
|
|
|
name = rq.get('name')
|
2010-08-05 11:23:17 -05:00
|
|
|
if not name: return
|
2014-05-03 15:45:51 -05:00
|
|
|
# Security check
|
2012-01-04 11:03:46 -06:00
|
|
|
if '_img_' not in name:
|
2014-05-03 15:45:51 -05:00
|
|
|
field = self.getAppyType(name)
|
2012-01-04 11:03:46 -06:00
|
|
|
else:
|
2014-05-03 15:45:51 -05:00
|
|
|
field = self.getAppyType(name.split('_img_')[0])
|
|
|
|
self.mayView(field.readPermission, raiseError=True)
|
2015-01-29 09:36:43 -06:00
|
|
|
# Write the file in the HTTP response
|
2014-02-26 03:40:27 -06:00
|
|
|
info = getattr(self.aq_base, name, None)
|
|
|
|
if info:
|
2015-01-29 09:36:43 -06:00
|
|
|
# Content disposition may be given in the request
|
|
|
|
disposition = rq.get('disposition', 'attachment')
|
|
|
|
if disposition not in ('inline', 'attachment'):
|
|
|
|
disposition = 'attachment'
|
|
|
|
info.writeResponse(rq.RESPONSE, self.getDbFolder(), disposition)
|
2010-11-30 10:41:18 -06:00
|
|
|
|
2012-01-04 11:03:46 -06:00
|
|
|
def upload(self):
|
|
|
|
'''Receives an image uploaded by the user via ckeditor and stores it in
|
|
|
|
a special field on this object.'''
|
|
|
|
# Get the name of the rich text field for which an image must be stored.
|
|
|
|
params = self.REQUEST['QUERY_STRING'].split('&')
|
|
|
|
fieldName = params[0].split('=')[1]
|
|
|
|
ckNum = params[1].split('=')[1]
|
|
|
|
# We will store the image in a field named [fieldName]_img_[nb].
|
|
|
|
i = 1
|
|
|
|
attrName = '%s_img_%d' % (fieldName, i)
|
|
|
|
while True:
|
|
|
|
if not hasattr(self.aq_base, attrName):
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
i += 1
|
|
|
|
attrName = '%s_img_%d' % (fieldName, i)
|
|
|
|
# Store the image. Create a fake File instance for doing the job.
|
|
|
|
fakeFile = gen.File(isImage=True)
|
|
|
|
fakeFile.name = attrName
|
|
|
|
fakeFile.store(self, self.REQUEST['upload'])
|
|
|
|
# Return the URL of the image.
|
|
|
|
url = '%s/download?name=%s' % (self.absolute_url(), attrName)
|
2012-04-25 09:21:23 -05:00
|
|
|
response = self.REQUEST.RESPONSE
|
|
|
|
response.setHeader('Content-Type', 'text/html')
|
2012-01-04 11:03:46 -06:00
|
|
|
resp = "<script type='text/javascript'>window.parent.CKEDITOR.tools" \
|
|
|
|
".callFunction(%s, '%s');</script>" % (ckNum, url)
|
2012-04-25 09:21:23 -05:00
|
|
|
response.write(resp)
|
2012-01-04 11:03:46 -06:00
|
|
|
|
|
|
|
def allows(self, permission, raiseError=False):
|
2011-09-08 09:33:16 -05:00
|
|
|
'''Has the logged user p_permission on p_self ?'''
|
2013-08-21 05:35:30 -05:00
|
|
|
res = self.getTool().getUser().has_permission(permission, self)
|
2014-05-03 15:45:51 -05:00
|
|
|
if not res and raiseError: self.raiseUnauthorized()
|
2013-08-21 05:35:30 -05:00
|
|
|
return res
|
2011-09-28 14:17:15 -05:00
|
|
|
|
2011-11-25 11:01:20 -06:00
|
|
|
def isTemporary(self):
|
|
|
|
'''Is this object temporary ?'''
|
|
|
|
parent = self.getParentNode()
|
2014-05-03 15:45:51 -05:00
|
|
|
if not parent: return # Is probably being created through code
|
2011-11-25 11:01:20 -06:00
|
|
|
return parent.getId() == 'temp_folder'
|
2012-07-26 10:22:22 -05:00
|
|
|
|
|
|
|
def onProcess(self):
|
|
|
|
'''This method is a general hook for transfering processing of a request
|
|
|
|
to a given field, whose name must be in the request.'''
|
|
|
|
return self.getAppyType(self.REQUEST['name']).process(self)
|
2014-04-25 05:14:50 -05:00
|
|
|
|
|
|
|
def onCall(self):
|
|
|
|
'''Calls a specific method on the corresponding wrapper.'''
|
2014-05-03 15:45:51 -05:00
|
|
|
self.mayView(raiseError=True)
|
2014-04-25 05:14:50 -05:00
|
|
|
method = self.REQUEST['method']
|
|
|
|
obj = self.appy()
|
|
|
|
return getattr(obj, method)()
|
2014-12-19 04:21:43 -06:00
|
|
|
|
|
|
|
def onReindex(self):
|
|
|
|
'''Called for reindexing an index or all indexes on the currently shown
|
|
|
|
object.'''
|
|
|
|
if not self.getTool().getUser().has_role('Manager'):
|
|
|
|
self.raiseUnauthorized()
|
|
|
|
rq = self.REQUEST
|
|
|
|
indexName = rq['indexName']
|
|
|
|
if indexName == '_all_':
|
|
|
|
self.reindex()
|
|
|
|
else:
|
|
|
|
self.reindex(indexes=(indexName,))
|
|
|
|
self.say(self.translate('action_done'))
|
|
|
|
self.goto(self.getUrl(rq['HTTP_REFERER']))
|
2009-06-29 07:06:01 -05:00
|
|
|
# ------------------------------------------------------------------------------
|