# ------------------------------------------------------------------------------ # This file is part of Appy, a framework for building applications in the Python # language. Copyright (C) 2007 Gaetan Delannay # Appy is free software; you can redistribute it and/or modify it under the # terms of the GNU General Public License as published by the Free Software # Foundation; either version 3 of the License, or (at your option) any later # version. # Appy is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU General Public License for more details. # You should have received a copy of the GNU General Public License along with # Appy. If not, see . # ------------------------------------------------------------------------------ import sys, re from appy.fields import Field, No from appy.px import Px from appy.gen.layout import Table from appy.gen import utils as gutils from appy.shared import utils as sutils # ------------------------------------------------------------------------------ class Ref(Field): # Some default layouts. "w" stands for "wide": those layouts produce tables # of Ref objects whose width is 100%. wLayouts = Table('lrv-f', width='100%') # "d" stands for "description": a description label is added. wdLayouts = {'view': Table('l-d-f', width='100%')} # This PX displays the title of a referenced object, with a link on it to # reach the consult view for this object. If we are on a back reference, the # link allows to reach the correct page where the forward reference is # defined. If we are on a forward reference, the "nav" parameter is added to # the URL for allowing to navigate from one object to the next/previous on # ui/view. pxObjectTitle = Px(''' ::ztied.getSupTitle(navInfo) :(not includeShownInfo) and \ ztied.Title() or field.getReferenceLabel(ztied.appy()) ::ztied.getSubTitle() ''') # This PX displays icons for triggering actions on a given referenced object # (edit, delete, etc). pxObjectActions = Px('''
:targetObj.appy().pxTransitions
''') # Displays the button allowing to add a new object through a Ref field, if # it has been declared as addable and if multiplicities allow it. pxAdd = Px(''' ''') # This PX displays, in a cell header from a ref table, icons for sorting the # ref field according to the field that corresponds to this column. pxSortIcons = Px(''' ''') # PX that displays referred objects through this field. pxView = pxCell = Px('''
:_('no_ref') :field.pxAdd :field.pxObjectTitle
(:totalNumber) :field.pxAdd
:tool.pxNavigate

:_('no_ref')

:_(refField.labelId) :field.pxSortIcons :tool.pxShowDetails
:field.pxObjectTitle
:field.pxObjectActions
:field.pxRender
:tool.pxNavigate
''') pxEdit = Px(''' ''') pxSearch = Px('''
  
''') def __init__(self, klass=None, attribute=None, validator=None, multiplicity=(0,1), default=None, add=False, addConfirm=False, delete=None, noForm=False, link=True, unlink=None, back=None, show=True, page='main', group=None, layouts=None, showHeaders=False, shownInfo=(), select=None, maxPerPage=30, move=0, indexed=False, searchable=False, specificReadPermission=False, specificWritePermission=False, width=None, height=5, maxChars=None, colspan=1, master=None, masterValue=None, focus=False, historized=False, mapping=None, label=None, queryable=False, queryFields=None, queryNbCols=1, navigable=False, searchSelect=None, changeOrder=True, sdefault='', scolspan=1, swidth=None, sheight=None): self.klass = klass self.attribute = attribute # May the user add new objects through this ref ? self.add = add # When the user adds a new object, must a confirmation popup be shown? self.addConfirm = addConfirm # May the user delete objects via this Ref? self.delete = delete if delete == None: # By default, one may delete objects via a Ref for which one can # add objects. self.delete = bool(self.add) # If noForm is True, when clicking to create an object through this ref, # the object will be created automatically, and no creation form will # be presented to the user. self.noForm = noForm # May the user link existing objects through this ref? self.link = link # May the user unlink existing objects? self.unlink = unlink if unlink == None: # By default, one may unlink objects via a Ref for which one can # link objects. self.unlink = bool(self.link) self.back = None if back: # It is a forward reference self.isBack = False # Initialise the backward reference self.back = back self.backd = back.__dict__ back.isBack = True back.back = self back.backd = self.__dict__ # klass may be None in the case we are defining an auto-Ref to the # same class as the class where this field is defined. In this case, # when defining the field within the class, write # myField = Ref(None, ...) # and, at the end of the class definition (name it K), write: # K.myField.klass = K # setattr(K, K.myField.back.attribute, K.myField.back) if klass: setattr(klass, back.attribute, back) # When displaying a tabular list of referenced objects, must we show # the table headers? self.showHeaders = showHeaders # When displaying referenced object(s), we will display its title + all # other fields whose names are listed in the following attribute. self.shownInfo = list(shownInfo) if not self.shownInfo: self.shownInfo.append('title') # If a method is defined in this field "select", it will be used to # filter the list of available tied objects. self.select = select # Maximum number of referenced objects shown at once. self.maxPerPage = maxPerPage # Specifies sync sync = {'view': False, 'edit':True} # If param p_queryable is True, the user will be able to perform queries # from the UI within referenced objects. self.queryable = queryable # Here is the list of fields that will appear on the search screen. # If None is specified, by default we take every indexed field # defined on referenced objects' class. self.queryFields = queryFields # The search screen will have this number of columns self.queryNbCols = queryNbCols # Within the portlet, will referred elements appear ? self.navigable = navigable # The search select method is used if self.indexed is True. In this # case, we need to know among which values we can search on this field, # in the search screen. Those values are returned by self.searchSelect, # which must be a static method accepting the tool as single arg. self.searchSelect = searchSelect # If changeOrder is False, it even if the user has the right to modify # the field, it will not be possible to move objects or sort them. self.changeOrder = changeOrder Field.__init__(self, validator, multiplicity, default, show, page, group, layouts, move, indexed, False, specificReadPermission, specificWritePermission, width, height, None, colspan, master, masterValue, focus, historized, sync, mapping, label, sdefault, scolspan, swidth, sheight) self.validable = self.link def getDefaultLayouts(self): return {'view': Table('l-f', width='100%'), 'edit': 'lrv-f'} def isShowable(self, obj, layoutType): res = Field.isShowable(self, obj, layoutType) if not res: return res # We add here specific Ref rules for preventing to show the field under # some inappropriate circumstances. if (layoutType == 'edit') and \ (self.mayAdd(obj) or not self.link): return False if self.isBack: if layoutType == 'edit': return False else: return getattr(obj.aq_base, self.name, None) return res def getValue(self, obj, type='objects', noListIfSingleObj=False, startNumber=None, someObjects=False): '''Returns the objects linked to p_obj through this Ref field. - If p_type is "objects", it returns the Appy wrappers; - If p_type is "zobjects", it returns the Zope objects; - If p_type is "uids", it returns UIDs of objects (= strings). * If p_startNumber is None, it returns all referred objects. * If p_startNumber is a number, it returns self.maxPerPage objects, starting at p_startNumber. If p_noListIfSingleObj is True, it returns the single reference as an object and not as a list. If p_someObjects is True, it returns an instance of SomeObjects instead of returning a list of references.''' uids = getattr(obj.aq_base, self.name, []) if not uids: # Maybe is there a default value? defValue = Field.getValue(self, obj) if defValue: # I must prefix call to function "type" with "__builtins__" # because this name was overridden by a method parameter. if __builtins__['type'](defValue) in sutils.sequenceTypes: uids = [o.o.UID() for o in defValue] else: uids = [defValue.o.UID()] # Prepare the result: an instance of SomeObjects, that will be unwrapped # if not required. res = gutils.SomeObjects() res.totalNumber = res.batchSize = len(uids) batchNeeded = startNumber != None if batchNeeded: res.batchSize = self.maxPerPage if startNumber != None: res.startNumber = startNumber # Get the objects given their uids i = res.startNumber while i < (res.startNumber + res.batchSize): if i >= res.totalNumber: break # Retrieve every reference in the correct format according to p_type if type == 'uids': ref = uids[i] else: ref = obj.getTool().getObject(uids[i]) if type == 'objects': ref = ref.appy() res.objects.append(ref) i += 1 # Manage parameter p_noListIfSingleObj if res.objects and noListIfSingleObj: if self.multiplicity[1] == 1: res.objects = res.objects[0] if someObjects: return res return res.objects def getLinkedObjects(self, obj, startNumber=None): '''Gets the objects linked to p_obj via this Ref field. If p_startNumber is None, all linked objects are returned. If p_startNumber is a number, self.maxPerPage objects will be returned, starting at p_startNumber.''' return self.getValue(obj, type='zobjects', someObjects=True, startNumber=startNumber) def getFormattedValue(self, obj, value, showChanges=False): return value def getIndexType(self): return 'ListIndex' def getIndexValue(self, obj, forSearch=False): '''Value for indexing is the list of UIDs of linked objects. If p_forSearch is True, it will return a list of the linked objects' titles instead.''' if not forSearch: res = getattr(obj.aq_base, self.name, []) if res: # The index does not like persistent lists. res = list(res) else: # Ugly catalog: if I return an empty list, the previous value # is kept. res.append('') return res else: # For the global search: return linked objects' titles. res = [o.title for o in self.getValue(type='objects')] if not res: res.append('') return res def validateValue(self, obj, value): if not self.link: return None # We only check "link" Refs because in edit views, "add" Refs are # not visible. So if we check "add" Refs, on an "edit" view we will # believe that that there is no referred object even if there is. # If the field is a reference, we must ensure itself that multiplicities # are enforced. if not value: nbOfRefs = 0 elif isinstance(value, basestring): nbOfRefs = 1 else: nbOfRefs = len(value) minRef = self.multiplicity[0] maxRef = self.multiplicity[1] if maxRef == None: maxRef = sys.maxint if nbOfRefs < minRef: return obj.translate('min_ref_violated') elif nbOfRefs > maxRef: return obj.translate('max_ref_violated') def linkObject(self, obj, value, back=False): '''This method links p_value (which can be a list of objects) to p_obj through this Ref field.''' # p_value can be a list of objects if type(value) in sutils.sequenceTypes: for v in value: self.linkObject(obj, v, back=back) return # Gets the list of referred objects (=list of uids), or create it. obj = obj.o refs = getattr(obj.aq_base, self.name, None) if refs == None: refs = obj.getProductConfig().PersistentList() setattr(obj, self.name, refs) # Insert p_value into it. uid = value.o.UID() if uid not in refs: # Where must we insert the object? At the start? At the end? if callable(self.add): add = self.callMethod(obj, self.add) else: add = self.add if add == 'start': refs.insert(0, uid) else: refs.append(uid) # Update the back reference if not back: self.back.linkObject(value, obj, back=True) def unlinkObject(self, obj, value, back=False): '''This method unlinks p_value (which can be a list of objects) from p_obj through this Ref field.''' # p_value can be a list of objects if type(value) in sutils.sequenceTypes: for v in value: self.unlinkObject(obj, v, back=back) return obj = obj.o refs = getattr(obj.aq_base, self.name, None) if not refs: return # Unlink p_value uid = value.o.UID() if uid in refs: refs.remove(uid) # Update the back reference if not back: self.back.unlinkObject(value, obj, back=True) def store(self, obj, value): '''Stores on p_obj, the p_value, which can be: * None; * an object UID (=string); * a list of object UIDs (=list of strings). Generally, UIDs or lists of UIDs come from Ref fields with link:True edited through the web; * a Zope object; * a Appy object; * a list of Appy or Zope objects.''' # Standardize p_value into a list of Zope objects objects = value if not objects: objects = [] if type(objects) not in sutils.sequenceTypes: objects = [objects] tool = obj.getTool() for i in range(len(objects)): if isinstance(objects[i], basestring): # We have a UID here objects[i] = tool.getObject(objects[i]) else: # Be sure to have a Zope object objects[i] = objects[i].o uids = [o.UID() for o in objects] # Unlink objects that are not referred anymore refs = getattr(obj.aq_base, self.name, None) if refs: i = len(refs)-1 while i >= 0: if refs[i] not in uids: # Object having this UID must unlink p_obj self.back.unlinkObject(tool.getObject(refs[i]), obj) i -= 1 # Link new objects if objects: self.linkObject(obj, objects) def mayAdd(self, obj): '''May the user create a new referred object from p_obj via this Ref?''' # We can't (yet) do that on back references. if self.isBack: return No('is_back') # Check if this Ref is addable if callable(self.add): add = self.callMethod(obj, self.add) else: add = self.add if not add: return No('no_add') # Have we reached the maximum number of referred elements? if self.multiplicity[1] != None: refCount = len(getattr(obj, self.name, ())) if refCount >= self.multiplicity[1]: return No('max_reached') # May the user edit this Ref field? if not obj.allows(self.writePermission): return No('no_write_perm') # Have the user the correct add permission? tool = obj.getTool() addPermission = '%s: Add %s' % (tool.getAppName(), tool.getPortalType(self.klass)) folder = obj.getCreateFolder() if not tool.getUser().has_permission(addPermission, folder): return No('no_add_perm') return True def checkAdd(self, obj): '''Compute m_mayAdd above, and raise an Unauthorized exception if m_mayAdd returns False.''' may = self.mayAdd(obj) if not may: from AccessControl import Unauthorized raise Unauthorized("User can't write Ref field '%s' (%s)." % \ (self.name, may.msg)) def changeOrderEnabled(self, obj): '''Is changeOrder enabled?''' if isinstance(self.changeOrder, bool): return self.changeOrder else: return self.callMethod(obj, self.changeOrder) def doChangeOrder(self, obj): '''Moves a referred object up or down.''' rq = obj.REQUEST # Move the item up (-1), down (+1) ? move = (rq['move'] == 'down') and 1 or -1 # The UID of the referred object to move uid = rq['refObjectUid'] uids = getattr(obj.aq_base, self.name) oldIndex = uids.index(uid) uids.remove(uid) newIndex = oldIndex + move uids.insert(newIndex, uid) def getSelectableObjects(self, obj): '''This method returns the list of all objects that can be selected to be linked as references to p_obj via p_self.''' if not self.select: # No select method has been defined: we must retrieve all objects # of the referred type that the user is allowed to access. return obj.search(self.klass) else: return self.select(obj) xhtmlToText = re.compile('<.*?>', re.S) def getReferenceLabel(self, refObject): '''p_self must have link=True. I need to display, on an edit view, the p_refObject in the listbox that will allow the user to choose which object(s) to link through the Ref. The information to display may only be the object title or more if self.shownInfo is used.''' res = '' for fieldName in self.shownInfo: refType = refObject.o.getAppyType(fieldName) value = getattr(refObject, fieldName) value = refType.getFormattedValue(refObject.o, value) if refType.type == 'String': if refType.format == 2: value = self.xhtmlToText.sub(' ', value) elif type(value) in sutils.sequenceTypes: value = ', '.join(value) prefix = '' if res: prefix = ' | ' res += prefix + value maxWidth = self.width or 30 if len(res) > maxWidth: res = res[:maxWidth-2] + '...' return res def getIndexOf(self, obj, refObj): '''Gets the position of p_refObj within this field on p_obj.''' uids = getattr(obj.aq_base, self.name, None) if not uids: raise IndexError() return uids.index(refObj.UID()) def sort(self, obj): '''Called when the user wants to sort the content of this field.''' rq = obj.REQUEST sortKey = rq.get('sortKey') reverse = rq.get('reverse') == 'True' obj.appy().sort(self.name, sortKey=sortKey, reverse=reverse) def autoref(klass, field): '''klass.field is a Ref to p_klass. This kind of auto-reference can't be declared in the "normal" way, like this: class A: attr1 = Ref(A) because at the time Python encounters the static declaration "attr1 = Ref(A)", class A is not completely defined yet. This method allows to overcome this problem. You can write such auto-reference like this: class A: attr1 = Ref(None) autoref(A, A.attr1) ''' field.klass = klass setattr(klass, field.back.attribute, field.back) # ------------------------------------------------------------------------------