# ------------------------------------------------------------------------------ # 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 . # ------------------------------------------------------------------------------ from appy.px import Px from appy.gen import utils as gutils from appy.gen.indexer import defaultIndexes from appy.shared import utils as sutils from group import Group # ------------------------------------------------------------------------------ class Search: '''Used for specifying a search for a given class.''' def __init__(self, name=None, group=None, sortBy='', sortOrder='asc', maxPerPage=30, default=False, colspan=1, translated=None, show=True, translatedDescr=None, checkboxes=False, checkboxesDefault=True, **fields): # "name" is mandatory, excepted in some special cases (ie, when used as # "select" param for a Ref field). self.name = name # Searches may be visually grouped in the portlet. self.group = Group.get(group) self.sortBy = sortBy self.sortOrder = sortOrder self.maxPerPage = maxPerPage # If this search is the default one, it will be triggered by clicking # on main link. self.default = default self.colspan = colspan # If a translated name or description is already given here, we will # use it instead of trying to translate from labels. self.translated = translated self.translatedDescr = translatedDescr # Condition for showing or not this search self.show = show # In the dict below, keys are indexed field names or names of standard # indexes, and values are search values. self.fields = fields # Do we need to display checkboxes for every object of the query result? self.checkboxes = checkboxes # Default value for checkboxes self.checkboxesDefault = checkboxesDefault @staticmethod def getIndexName(name, klass, usage='search'): '''Gets the name of the Zope index that corresponds to p_name. Indexes can be used for searching (p_usage="search") or for sorting (usage="sort"). The method returns None if the field named p_name can't be used for p_usage.''' # Manage indexes that do not have a corresponding field if name == 'created': return 'Created' elif name == 'modified': return 'Modified' elif name in defaultIndexes: return name else: # Manage indexes corresponding to fields field = getattr(klass, name, None) if field: return field.getIndexName(usage) @staticmethod def getSearchValue(fieldName, fieldValue, klass): '''Returns a transformed p_fieldValue for producing a valid search value as required for searching in the index corresponding to p_fieldName.''' field = getattr(klass, fieldName, None) if (field and (field.getIndexType() == 'TextIndex')) or \ (fieldName == 'SearchableText'): # For TextIndex indexes. We must split p_fieldValue into keywords. res = gutils.Keywords(fieldValue).get() elif isinstance(fieldValue, basestring) and fieldValue.endswith('*'): v = fieldValue[:-1] # Warning: 'z' is higher than 'Z'! res = {'query':(v,v+'z'), 'range':'min:max'} elif type(fieldValue) in sutils.sequenceTypes: if fieldValue and isinstance(fieldValue[0], basestring): # We have a list of string values (ie: we need to # search v1 or v2 or...) res = fieldValue else: # We have a range of (int, float, DateTime...) values minv, maxv = fieldValue rangev = 'minmax' queryv = fieldValue if minv == None: rangev = 'max' queryv = maxv elif maxv == None: rangev = 'min' queryv = minv res = {'query':queryv, 'range':rangev} else: res = fieldValue return res def updateSearchCriteria(self, criteria, klass, advanced=False): '''This method updates dict p_criteria with all the search criteria corresponding to this Search instance. If p_advanced is True, p_criteria correspond to an advanced search, to be stored in the session: in this case we need to keep the Appy names for parameters sortBy and sortOrder (and not "resolve" them to Zope's sort_on and sort_order).''' # Put search criteria in p_criteria for name, value in self.fields.iteritems(): # Management of searches restricted to objects linked through a # Ref field: not implemented yet. if name == '_ref': continue # Make the correspondence between the name of the field and the # name of the corresponding index, excepted if advanced is True: in # that case, the correspondence will be done later. if not advanced: indexName = Search.getIndexName(name, klass) # Express the field value in the way needed by the index criteria[indexName] = Search.getSearchValue(name, value, klass) else: criteria[name] = value # Add a sort order if specified if self.sortBy: c = criteria if not advanced: c['sort_on']=Search.getIndexName(self.sortBy,klass,usage='sort') c['sort_order']= (self.sortOrder=='desc') and 'reverse' or None else: c['sortBy'] = self.sortBy c['sortOrder'] = self.sortOrder def isShowable(self, klass, tool): '''Is this Search instance (defined in p_klass) showable?''' if self.show.__class__.__name__ == 'staticmethod': return gutils.callMethod(tool, self.show, klass=klass) return self.show def getCbJsInit(self, hookId): '''Returns the code that creates JS data structures for storing the status of checkboxes for every result of this search.''' default = self.checkboxesDefault and 'unchecked' or 'checked' return '''var node=document.getElementById('%s'); node['_appy_objs_cbs'] = {}; node['_appy_objs_sem'] = '%s';''' % (hookId, default) def getSessionKey(self, className, full=True): '''Returns the name of the key, in the session, where results for this search are stored when relevant. If p_full is False, only the suffix of the session key is returned (ie, without the leading "search_").''' res = (self.name == 'allSearch') and className or self.name if not full: return res return 'search_%s' % res class UiSearch: '''Instances of this class are generated on-the-fly for manipulating a Search from the User Interface.''' # PX for rendering a search. pxView = Px('''
:search.translated
''') def __init__(self, search, className, tool): self.search = search self.name = search.name self.type = 'search' self.colspan = search.colspan if search.translated: self.translated = search.translated self.translatedDescr = search.translatedDescr else: # The label may be specific in some special cases. labelDescr = '' if search.name == 'allSearch': label = '%s_plural' % className elif search.name == 'customSearch': label = 'search_results' elif search.name == '_field_': label = None else: label = '%s_search_%s' % (className, search.name) labelDescr = label + '_descr' _ = tool.translate self.translated = label and _(label) or '' self.translatedDescr = labelDescr and _(labelDescr) or '' def setInitiator(self, initiator, field, mode): '''If the search is defined in an attribute Ref.select, we receive here the p_initiator object, its Ref p_field and the p_mode, that can be: - "repl" if the objects selected in the popup will replace already tied objects; - "add" if those objects will be added to the already tied ones. .''' self.initiator = initiator self.initiatorField = field self.initiatorMode = mode # "initiatorHook" is the ID of the initiator field's XHTML tag. self.initiatorHook = '%s_%s' % (initiator.uid, field.name) def getRootHookId(self): '''If an initiator field is there, return the initiator hook. Else, simply return the name of the search.''' return getattr(self, 'initiatorHook', self.name) def showCheckboxes(self): '''If checkboxes are enabled for this search (and if an initiator field is there), they must be visible only if the initiator field is multivalued. Indeed, if it is not the case, it has no sense to select multiple objects. But in this case, we still want checkboxes to be in the DOM because they store object UIDs.''' if not self.search.checkboxes: return return not self.initiator or self.initiatorField.isMultiValued() # ------------------------------------------------------------------------------