BlogSearchIndexer.java
/*
* Copyright (c) 2002-2021, City of Paris
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright notice
* and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice
* and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* 3. Neither the name of 'Mairie de Paris' nor 'Lutece' nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* License 1.0
*/
package fr.paris.lutece.plugins.blog.service.search;
import fr.paris.lutece.plugins.blog.business.Blog;
import fr.paris.lutece.plugins.blog.service.BlogService;
import fr.paris.lutece.plugins.blog.service.docsearch.BlogSearchService;
import fr.paris.lutece.plugins.blog.service.docsearch.DefaultBlogIndexer;
import fr.paris.lutece.portal.service.content.XPageAppService;
import fr.paris.lutece.portal.service.message.SiteMessageException;
import fr.paris.lutece.portal.service.search.SearchIndexer;
import fr.paris.lutece.portal.service.util.AppLogService;
import fr.paris.lutece.portal.service.util.AppPathService;
import fr.paris.lutece.portal.service.util.AppPropertiesService;
import fr.paris.lutece.util.url.UrlItem;
import org.apache.lucene.document.Document;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* Directory global indexer
*/
public class BlogSearchIndexer implements SearchIndexer
{
public static final String INDEXER_NAME = "BlogsIndexer";
public static final String SHORT_NAME = "hdoc";
private static final String BLOGS = "blogs";
private static final String INDEXER_DESCRIPTION = "Indexer service for blogs";
private static final String INDEXER_VERSION = "1.0.0";
private static final String PROPERTY_INDEXER_ENABLE = "blog.globalIndexer.enable";
/**
* {@inheritDoc}
*/
@Override
public String getName( )
{
return INDEXER_NAME;
}
/**
* {@inheritDoc}
*/
@Override
public String getDescription( )
{
return INDEXER_DESCRIPTION;
}
/**
* {@inheritDoc}
*/
@Override
public String getVersion( )
{
return INDEXER_VERSION;
}
/**
* {@inheritDoc}
*/
@Override
public boolean isEnable( )
{
String strEnable = AppPropertiesService.getProperty( PROPERTY_INDEXER_ENABLE );
return ( strEnable.equalsIgnoreCase( "true" ) );
}
/**
* {@inheritDoc}
*/
@Override
public List<String> getListType( )
{
List<String> listType = new ArrayList<>( 1 );
listType.add( BLOGS );
return listType;
}
/**
* {@inheritDoc}
*/
@Override
public String getSpecificSearchAppUrl( )
{
UrlItem url = new UrlItem( AppPathService.getPortalUrl( ) );
url.addParameter( XPageAppService.PARAM_XPAGE_APP, BLOGS );
return url.getUrl( );
}
/**
* {@inheritDoc}
*/
@Override
public List<Document> getDocuments( String strDocumentId ) throws IOException, InterruptedException, SiteMessageException
{
int documentId;
try
{
documentId = Integer.parseInt( strDocumentId );
}
catch( NumberFormatException ne )
{
AppLogService.error( strDocumentId + " not parseable to an int", ne );
return new ArrayList<>( 0 );
}
Blog blog = BlogService.getInstance( ).loadBlog( documentId );
Document doc = DefaultBlogIndexer.getDocument( blog );
if ( doc != null )
{
List<Document> listDocument = new ArrayList<>( 1 );
listDocument.add( doc );
return listDocument;
}
return new ArrayList<>( 0 );
}
/**
* {@inheritDoc}
*/
@Override
public void indexDocuments( ) throws IOException, InterruptedException, SiteMessageException
{
BlogSearchService.getInstance( ).processIndexing( true );
}
}