CompleteFormResponseApp.java
/*
* Copyright (c) 2002-2022, 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.workflow.modules.forms.web;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.stream.Collectors;
import javax.servlet.http.HttpServletRequest;
import fr.paris.lutece.plugins.forms.business.FormResponse;
import fr.paris.lutece.plugins.forms.business.Question;
import fr.paris.lutece.plugins.forms.business.Step;
import fr.paris.lutece.plugins.forms.business.StepHome;
import fr.paris.lutece.plugins.forms.web.entrytype.DisplayType;
import fr.paris.lutece.plugins.workflow.modules.forms.business.CompleteFormResponse;
import fr.paris.lutece.plugins.workflow.modules.forms.service.ICompleteFormResponseService;
import fr.paris.lutece.plugins.workflow.modules.forms.service.signrequest.CompleteFormResponseRequestAuthenticatorService;
import fr.paris.lutece.portal.service.i18n.I18nService;
import fr.paris.lutece.portal.service.message.SiteMessage;
import fr.paris.lutece.portal.service.message.SiteMessageException;
import fr.paris.lutece.portal.service.spring.SpringContextService;
import fr.paris.lutece.portal.service.template.AppTemplateService;
import fr.paris.lutece.portal.web.constants.Messages;
import fr.paris.lutece.portal.web.xpages.XPage;
import fr.paris.lutece.util.html.HtmlTemplate;
import fr.paris.lutece.util.signrequest.AbstractPrivateKeyAuthenticator;
public class CompleteFormResponseApp extends AbstractFormResponseApp<CompleteFormResponse>
{
private static final long serialVersionUID = -6753642997148910492L;
// TEMPLATES
private static final String TEMPLATE_COMPLETE_FORM = "skin/plugins/workflow/modules/forms/complete_form.html";
// MESSAGES
private static final String PROPERTY_XPAGE_RESUBMIT_FORM_PAGETITLE = "module.workflow.forms.resubmit_form.page_title";
private static final String PROPERTY_XPAGE_RESUBMIT_FORM_PATHLABEL = "module.workflow.forms.resubmit_form.page_label";
// MARKS
private static final String MARK_COMPLETE_FORM = "complete_form";
// SERVICES
private ICompleteFormResponseService _completeFormResponseService = SpringContextService.getBean( "workflow-forms.taskCompleteResponseService" );
/**
* Get the CompleteFormResponse page
*
* @param request
* the HTTP request
* @param CompleteFormResponse
* the CompleteFormResponse
* @return a XPage
*/
@Override
protected XPage getFormResponseXPage( HttpServletRequest request, CompleteFormResponse completeFormResponse )
{
XPage page = new XPage( );
FormResponse formResponse = _formsTaskService.getFormResponseFromIdHistory( completeFormResponse.getIdHistory( ) );
List<Question> listQuestions = _completeFormResponseService.getListQuestionToEdit( formResponse, completeFormResponse.getListCompleteReponseValues( ) );
List<Step> listStep = listQuestions.stream( ).map( Question::getStep ).map( Step::getId ).distinct( ).map( StepHome::findByPrimaryKey )
.collect( Collectors.toList( ) );
List<String> listStepDisplayTree = _formsTaskService.buildFormStepDisplayTreeList( request, listStep, listQuestions, formResponse,
DisplayType.COMPLETE_FRONTOFFICE );
Map<String, Object> model = initModelFormPage( request, formResponse, listStepDisplayTree );
model.put( MARK_COMPLETE_FORM, completeFormResponse );
HtmlTemplate template = AppTemplateService.getTemplate( TEMPLATE_COMPLETE_FORM, request.getLocale( ), model );
page.setTitle( I18nService.getLocalizedString( PROPERTY_XPAGE_RESUBMIT_FORM_PAGETITLE, request.getLocale( ) ) );
page.setPathLabel( I18nService.getLocalizedString( PROPERTY_XPAGE_RESUBMIT_FORM_PATHLABEL, request.getLocale( ) ) );
page.setContent( template.getHtml( ) );
return page;
}
/**
* Do edit a response
*
* @param request
* the HTTP request
* @param response
* the response
* @return true if the record must be updated, false otherwise
* @throws SiteMessageException
* a site message if there is a problem
*/
@Override
protected boolean doEditResponse( HttpServletRequest request, CompleteFormResponse response, int idTask, int idHistory ) throws SiteMessageException
{
if ( isRecordStateValid( response, request.getLocale( ) ) )
{
if ( _completeFormResponseService.doEditResponseData( request, response, idTask, idHistory ) )
{
_completeFormResponseService.doChangeResponseState( response, request.getLocale( ) );
_completeFormResponseService.doCompleteResponse( response );
return true;
}
return false;
}
else
{
_formsTaskService.setSiteMessage( request, Messages.USER_ACCESS_DENIED, SiteMessage.TYPE_STOP, request.getParameter( PARAMETER_URL_RETURN ) );
}
return false;
}
@Override
protected CompleteFormResponse findAbstractCompleteFormResponse( int nIdHistory, int nIdTask )
{
return _completeFormResponseService.find( nIdHistory, nIdTask );
}
@Override
protected AbstractPrivateKeyAuthenticator getRequestAuthenticator( )
{
return CompleteFormResponseRequestAuthenticatorService.getRequestAuthenticator( );
}
@Override
protected boolean isRecordStateValid( CompleteFormResponse completeFormResponse, Locale locale )
{
return _completeFormResponseService.isRecordStateValid( completeFormResponse, locale );
}
}