BotExecutor.java
/*
* Copyright (c) 2002-2018, Mairie de 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.easyrulesbot.service.bot;
import fr.paris.lutece.plugins.chatbot.business.BotPost;
import fr.paris.lutece.plugins.easyrulesbot.service.bot.rules.BotRule;
import fr.paris.lutece.plugins.easyrulesbot.service.response.filters.ResponseFilter;
import fr.paris.lutece.plugins.easyrulesbot.service.response.exceptions.ResponseProcessingException;
import fr.paris.lutece.portal.service.security.LuteceUser;
import fr.paris.lutece.portal.service.security.SecurityService;
import fr.paris.lutece.portal.service.util.AppLogService;
import org.easyrules.api.Rule;
import org.easyrules.api.RulesEngine;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import javax.servlet.http.HttpServletRequest;
/**
* BotExecutor
*/
public class BotExecutor implements Serializable
{
public static final String DATA_USER_FIRSTNAME = "user_firstname";
public static final String DATA_USER_LASTNAME = "user_lastname";
public static final String DATA_USER_EMAIL = "user_email";
private static final long serialVersionUID = 1L;
private EasyRulesBot _bot;
private Locale _locale;
private BotRule _currentRule;
private Map<String, String> _mapData = new ConcurrentHashMap<String, String>( );
/**
* Constructor
*
* @param bot
* The bot to execute
* @param locale
* The locale
*/
public BotExecutor( EasyRulesBot bot, Locale locale )
{
_bot = bot;
_locale = locale;
}
/**
* Returns the Locale
*
* @return The Locale
*/
public Locale getLocale( )
{
return _locale;
}
/**
* Gets the question
*
* @return The question
*/
public String getQuestion( )
{
String strQuestion = null;
if ( _currentRule != null )
{
strQuestion = _currentRule.getMessage( _mapData, _locale );
}
return strQuestion;
}
/**
* Process the response
*
* @param strUserMessage
* The user message
* @return The list of post
* @throws ResponseProcessingException
* if an exception occurs during processing
*/
public List<BotPost> processResponse( String strUserMessage ) throws ResponseProcessingException
{
List<BotPost> listBotPost = new ArrayList<>( );
String strResponseValue = processFilters( strUserMessage );
if ( _currentRule != null )
{
strResponseValue = _currentRule.getResponseProcessor( ).processResponse( strResponseValue, _locale, _mapData );
_mapData.put( _currentRule.getDataKey( ), strResponseValue );
String strResponseComment = _currentRule.getResponseComment( _mapData, _locale );
if ( ( strResponseComment != null ) && !strResponseComment.trim( ).equals( "" ) )
{
BotPost post = new BotPost( strResponseComment, BotPost.CONTENT_TYPE_TEXT );
listBotPost.add( post );
}
}
return listBotPost;
}
/**
* Process filters
*
* @param strResponse
* The response
* @return The filterd response
* @throws ResponseProcessingException
* if an exception occurs during processing
*/
private String processFilters( String strResponse ) throws ResponseProcessingException
{
String strResponseValue = strResponse;
for ( ResponseFilter filter : _bot.getResponseFilters( ) )
{
strResponseValue = filter.filterResponse( strResponseValue, _locale, _mapData );
}
return strResponseValue;
}
/**
* Sets the current rule
*
* @param rule
* The rule
*/
public void setCurrentRule( BotRule rule )
{
_currentRule = rule;
}
/**
* Executes rules. NB : Should be thread safe.
*/
public synchronized void fireRules( )
{
_currentRule = null;
RulesEngine engine = _bot.getRulesEngine( );
for ( Rule rule : engine.getRules( ) )
{
if ( rule instanceof BotRule )
{
( (BotRule) rule ).setExecutor( this );
}
}
engine.fireRules( );
}
/**
* Trace utils
*/
public void traceData( )
{
for ( String strKey : _mapData.keySet( ) )
{
AppLogService.info( strKey + " : " + _mapData.get( strKey ) );
}
}
/**
* Gets all the data map
*
* @return The data map
*/
public Map<String, String> getDataMap( )
{
return _mapData;
}
/**
* Returns the bot name
*
* @return the bot name
*/
public String getBotName( )
{
return _bot.getName( _locale );
}
/**
* Add MyLutece user's info to data map
*
* @param request
*/
public void setLuteceUser( HttpServletRequest request )
{
if ( SecurityService.isAuthenticationEnable( ) )
{
LuteceUser user = SecurityService.getInstance( ).getRegisteredUser( request );
if ( user != null )
{
_mapData.put( DATA_USER_FIRSTNAME, user.getUserInfo( LuteceUser.NAME_GIVEN ) );
_mapData.put( DATA_USER_LASTNAME, user.getUserInfo( LuteceUser.NAME_FAMILY ) );
_mapData.put( DATA_USER_EMAIL, user.getEmail( ) );
}
}
}
/**
* Returns bot avatar URL
*
* @return The avatar URL
*/
public Object getBotAvatarUrl( )
{
return _bot.getAvatarUrl( );
}
}