Package org.ametys.cms.search.systemprop
Class ViewBasedFullTextSystemProperty
java.lang.Object
org.ametys.runtime.model.AbstractModelItem
org.ametys.runtime.model.DefaultElementDefinition<T>
org.ametys.cms.model.properties.AbstractProperty<T,X>
org.ametys.cms.search.systemprop.AbstractSystemProperty<String,Content>
org.ametys.cms.search.systemprop.ViewBasedFullTextSystemProperty
- All Implemented Interfaces:
Comparable<ModelItem>
,Property<String,
,Content> SystemProperty<String,
,Content> ElementDefinition<String>
,ModelItem
,PluginAware
,Labelable
,ModifiableLabelable
,Configurable
,Serviceable
SystemProperty
which represents the full textual content of a Content based on attributes of a view.
If the view does not exist for content, nothing will be indexed.-
Field Summary
Modifier and TypeFieldDescriptionprotected ContentTypesHelper
The contents types helperprotected String
The view name to fill the propertyFields inherited from class org.ametys.cms.search.systemprop.AbstractSystemProperty
_i18nUtils, _manager, _resolver, _userHelper, _userManager
Fields inherited from class org.ametys.cms.model.properties.AbstractProperty
_availableTypesExtensionPoint
Fields inherited from class org.ametys.runtime.model.DefaultElementDefinition
_logger
Fields inherited from class org.ametys.runtime.model.AbstractModelItem
__serviceManager
Fields inherited from interface org.ametys.runtime.model.ElementDefinition
CONFIG_DEFAULT_VALUE_TYPE
Fields inherited from interface org.ametys.runtime.model.ModelItem
ITEM_PATH_SEPARATOR
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected String
Retrieves the id of the property's typevoid
configure
(Configuration configuration) getQuery
(Object value, Query.Operator operator, String language, Map<String, Object> contextualParameters) Get theQuery
associated to the given value.Get theSearchField
representing this system property.Get the property's valuevoid
indexValue
(org.apache.solr.common.SolrInputDocument document, Content content, IndexableDataContext context) Index the property in a solr document.boolean
Get if the property can be displayed (i.e.boolean
Test if the element is multiple.boolean
Get if the property can be sorted on.void
service
(ServiceManager manager) Methods inherited from class org.ametys.cms.search.systemprop.AbstractSystemProperty
_getNameConfigurationAttribute, getSchemaDefinitions, getSortValue, parseBoolean, parseDate, parseDouble, parseLong, parseString, parseStringArray, parseUserArray
Methods inherited from class org.ametys.cms.model.properties.AbstractProperty
_parseI18nizableText, getType, isEditable, setAvailableTypeExtensionPoint, setPluginInfo
Methods inherited from class org.ametys.runtime.model.DefaultElementDefinition
_getDefaultValue, _getParsedDefaultValues, _toJSON, getCustomEnumerator, getCustomValidator, getDefaultValue, getEnumerator, getEnumeratorConfiguration, getValidator, getValidatorConfiguration, getWidget, getWidgetParameters, of, setCustomEnumerator, setCustomValidator, setDefaultValue, setEnumerator, setEnumeratorConfiguration, setMultiple, setParsedDefaultValues, setType, setValidator, setValidatorConfiguration, setWidget, setWidgetParameters, toSAX
Methods inherited from class org.ametys.runtime.model.AbstractModelItem
_shouldJSONBeEmpty, _widgetParameterToSAX, _widgetToSAX, addItemChecker, compareTo, equals, getDescription, getDisableConditions, getItemCheckers, getLabel, getModel, getName, getParent, getPath, getPluginName, hashCode, setDescription, setDisableConditions, setLabel, setModel, setName, setParent, setPluginName, setServiceManager, toJSON, toString
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.lang.Comparable
compareTo
Methods inherited from interface org.ametys.runtime.model.ElementDefinition
_getParsedDefaultValues, getCriterionEnumerator, getCustomEnumerator, getCustomValidator, getDefaultValue, getEnumerator, getEnumeratorConfiguration, getValidator, getValidatorConfiguration, isEditable, setCustomEnumerator, setCustomValidator, setDefaultValue, setEnumerator, setEnumeratorConfiguration, setMultiple, setParsedDefaultValues, setValidator, setValidatorConfiguration
Methods inherited from interface org.ametys.runtime.util.Labelable
getDescription, getLabel, getName
Methods inherited from interface org.ametys.runtime.model.ModelItem
addItemChecker, getDisableConditions, getItemCheckers, getModel, getParent, getPath, getPluginName, getWidget, getWidgetParameters, setDisableConditions, setModel, setParent, setPluginName, setType, setWidget, setWidgetParameters, toJSON, toSAX
Methods inherited from interface org.ametys.runtime.util.ModifiableLabelable
setDescription, setLabel, setName
Methods inherited from interface org.ametys.cms.model.properties.Property
getCriterionWidget, getCriterionWidgetParameters, getType, setAvailableTypeExtensionPoint, valueToJSON, valueToJSON, valueToSAX, valueToSAX
Methods inherited from interface org.ametys.cms.search.model.SystemProperty
getColumnWidth, getConverter, getRenderer, isFacetable, isSearchable
-
Field Details
-
_contentTypesHelper
The contents types helper -
_viewName
The view name to fill the property
-
-
Constructor Details
-
ViewBasedFullTextSystemProperty
public ViewBasedFullTextSystemProperty()
-
-
Method Details
-
service
- Specified by:
service
in interfaceServiceable
- Overrides:
service
in classAbstractSystemProperty<String,
Content> - Throws:
ServiceException
-
configure
- Specified by:
configure
in interfaceConfigurable
- Overrides:
configure
in classAbstractProperty<String,
Content> - Throws:
ConfigurationException
-
indexValue
public void indexValue(org.apache.solr.common.SolrInputDocument document, Content content, IndexableDataContext context) Description copied from interface:Property
Index the property in a solr document.- Specified by:
indexValue
in interfaceProperty<String,
Content> - Overrides:
indexValue
in classAbstractSystemProperty<String,
Content> - Parameters:
document
- the solr document to index into.content
- the ametysObject containing the property to index.context
- the context of the data to index. Can not be null.
-
isMultiple
Description copied from interface:ElementDefinition
Test if the element is multiple.- Specified by:
isMultiple
in interfaceElementDefinition<String>
- Overrides:
isMultiple
in classDefaultElementDefinition<String>
- Returns:
true
if the metadata is multiple.
-
isDisplayable
Description copied from interface:SystemProperty
Get if the property can be displayed (i.e. used in a ResultField).- Returns:
true
if the property can be displayed,false
otherwise.
-
isSortable
Description copied from interface:SystemProperty
Get if the property can be sorted on.- Returns:
true
if the property can be sorted on,false
otherwise.
-
getQuery
public Query getQuery(Object value, Query.Operator operator, String language, Map<String, Object> contextualParameters) Description copied from interface:SystemProperty
Get theQuery
associated to the given value.- Parameters:
value
- the user-submitted value for this property.operator
- In advanced search mode, the operator chosen by the user.null
to use the criterion-defined operator (simple search mode).language
- The current search language.contextualParameters
- the search contextual parameters.- Returns:
- The
Query
associated to the given value.
-
getSearchField
Description copied from interface:SystemProperty
Get theSearchField
representing this system property.- Returns:
- The search field representing this system property.
-
getValue
Description copied from interface:Property
Get the property's value- Parameters:
content
- the ametysObject containing the property- Returns:
- the values to index.
-
_getTypeId
Description copied from class:AbstractProperty
Retrieves the id of the property's type- Specified by:
_getTypeId
in classAbstractProperty<String,
Content> - Returns:
- the id of the property's type
-