001// -------------------------------------------------------------------------------- 002// Copyright 2002-2025 Echo Three, LLC 003// 004// Licensed under the Apache License, Version 2.0 (the "License"); 005// you may not use this file except in compliance with the License. 006// You may obtain a copy of the License at 007// 008// http://www.apache.org/licenses/LICENSE-2.0 009// 010// Unless required by applicable law or agreed to in writing, software 011// distributed under the License is distributed on an "AS IS" BASIS, 012// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013// See the License for the specific language governing permissions and 014// limitations under the License. 015// -------------------------------------------------------------------------------- 016 017package com.echothree.model.control.content.server.indexer; 018 019import com.echothree.model.control.content.server.control.ContentControl; 020import com.echothree.model.control.index.common.IndexConstants; 021import com.echothree.model.control.index.common.IndexFieldVariations; 022import com.echothree.model.control.index.common.IndexFields; 023import com.echothree.model.control.content.server.analyzer.ContentCatalogAnalyzer; 024import com.echothree.model.control.index.server.indexer.BaseIndexer; 025import com.echothree.model.control.index.server.indexer.FieldTypes; 026import com.echothree.model.data.content.server.entity.ContentCatalog; 027import com.echothree.model.data.core.server.entity.EntityInstance; 028import com.echothree.model.data.index.server.entity.Index; 029import com.echothree.util.server.message.ExecutionErrorAccumulator; 030import com.echothree.util.server.persistence.Session; 031import org.apache.lucene.analysis.Analyzer; 032import org.apache.lucene.document.Document; 033import org.apache.lucene.document.Field; 034import org.apache.lucene.document.SortedDocValuesField; 035import org.apache.lucene.util.BytesRef; 036 037public class ContentCatalogIndexer 038 extends BaseIndexer<ContentCatalog> { 039 040 ContentControl contentControl = Session.getModelController(ContentControl.class); 041 042 /** Creates a new instance of ContentCatalogIndexer */ 043 public ContentCatalogIndexer(final ExecutionErrorAccumulator eea, final Index index) { 044 super(eea, index); 045 } 046 047 @Override 048 protected Analyzer getAnalyzer() { 049 return new ContentCatalogAnalyzer(eea, language, entityType, entityAliasTypes, entityAttributes, tagScopes); 050 } 051 052 @Override 053 protected ContentCatalog getEntity(final EntityInstance entityInstance) { 054 return contentControl.getContentCatalogByEntityInstance(entityInstance); 055 } 056 057 @Override 058 protected Document convertToDocument(final EntityInstance entityInstance, final ContentCatalog contentCatalog) { 059 var contentCatalogDetail = contentCatalog.getLastDetail(); 060 var contentCollectionDetail = contentCatalogDetail.getContentCollection().getLastDetail(); 061 var description = contentControl.getBestContentCatalogDescription(contentCatalog, language); 062 063 var document = newDocumentWithEntityInstanceFields(entityInstance, contentCatalog.getPrimaryKey()); 064 065 document.add(new Field(IndexFields.contentCollectionName.name(), contentCollectionDetail.getContentCollectionName(), 066 FieldTypes.NOT_STORED_TOKENIZED)); 067 document.add(new SortedDocValuesField(IndexFields.contentCollectionName.name() + IndexConstants.INDEX_FIELD_VARIATION_SEPARATOR + IndexFieldVariations.sortable.name(), 068 new BytesRef(contentCollectionDetail.getContentCollectionName()))); 069 document.add(new Field(IndexFields.contentCatalogName.name(), contentCatalogDetail.getContentCatalogName(), FieldTypes.NOT_STORED_TOKENIZED)); 070 document.add(new SortedDocValuesField(IndexFields.contentCatalogName.name() + IndexConstants.INDEX_FIELD_VARIATION_SEPARATOR + IndexFieldVariations.sortable.name(), 071 new BytesRef(contentCatalogDetail.getContentCatalogName()))); 072 073 if(description != null) { 074 document.add(new Field(IndexFields.description.name(), description, FieldTypes.NOT_STORED_TOKENIZED)); 075 document.add(new SortedDocValuesField(IndexFields.description.name() + IndexConstants.INDEX_FIELD_VARIATION_SEPARATOR + IndexFieldVariations.sortable.name(), 076 new BytesRef(description))); 077 } 078 079 return document; 080 } 081 082}