AppointmentDAO.java
/*
* Copyright (c) 2002-2017, 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.transparency.business;
import fr.paris.lutece.portal.service.plugin.Plugin;
import fr.paris.lutece.util.ReferenceList;
import fr.paris.lutece.util.sql.DAOUtil;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.List;
import java.util.stream.Collectors;
import org.apache.commons.lang.StringUtils;
/**
* This class provides Data Access methods for Appointment objects
*/
public final class AppointmentDAO implements IAppointmentDAO
{
// Constants
private static final String SQL_QUERY_SELECT = "SELECT DISTINCT transparency_appointment.id_appointment, transparency_appointment.title, description, start_date, end_date, type_id, type_label, transparency_appointment.url, contacts FROM transparency_appointment ";
private static final String SQL_QUERY_INSERT = "INSERT INTO transparency_appointment ( title, description, start_date, end_date, type_id, type_label, url, contacts ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ? ) ";
private static final String SQL_QUERY_DELETE = "DELETE FROM transparency_appointment WHERE id_appointment = ? ";
private static final String SQL_QUERY_UPDATE = "UPDATE transparency_appointment SET id_appointment = ?, title = ?, description = ?, start_date = ?, end_date = ?, type_id = ?, type_label = ?, url = ?, contacts = ? WHERE id_appointment = ?";
private static final String SQL_QUERY_SELECT_IDS = "SELECT DISTINCT transparency_appointment.id_appointment FROM transparency_appointment ";
private static final String SQL_WHERE_BASE = " WHERE 1 ";
private static final String SQL_ADD_CLAUSE = " AND ( ";
private static final String SQL_END_ADD_CLAUSE = " ) ";
private static final String SQL_FROM_FITLER_BY_APPOINTMENT_AND = " LEFT JOIN transparency_elected_official_appointment ON transparency_elected_official_appointment.id_appointment = transparency_appointment.id_appointment ";
private static final String SQL_FROM_FITLER_BY_ELECTED_OFFICIAL = " LEFT JOIN core_role on core_role.role = transparency_elected_official_appointment.role_key ";
private static final String SQL_FROM_FILTER_BY_DELEGATION = " LEFT JOIN mylutece_database_user_role ON mylutece_database_user_role.role_key = transparency_elected_official_appointment.role_key LEFT JOIN mylutece_database_user ON mylutece_database_user.mylutece_database_user_id = mylutece_database_user_role.mylutece_database_user_id ";
private static final String SQL_FROM_FITLER_BY_LOBBY = " LEFT JOIN transparency_lobby_appointment on transparency_lobby_appointment.id_appointment = transparency_appointment.id_appointment LEFT JOIN transparency_lobby on transparency_lobby.id_lobby = transparency_lobby_appointment.id_lobby ";
private static final String SQL_WHERECLAUSE_FILTER_BY_PERIOD = " start_date >= date_add( current_timestamp , INTERVAL -? DAY) ";
private static final String SQL_WHERECLAUSE_FILTER_BY_ELECTED_OFFICIAL = " core_role.role_description like ? ";
private static final String SQL_WHERECLAUSE_FILTER_BY_LOBBY = " transparency_lobby.name like ? ";
private static final String SQL_WHERECLAUSE_FILTER_BY_DELEGATION = " login = ? ";
private static final String SQL_WHERECLAUSE_FILTER_BY_ID = " transparency_appointment.id_appointment = ? ";
private static final String SQL_WHERECLAUSE_FILTER_BY_TITLE = " transparency_appointment.title like ? ";
private static final String SQL_WHERECLAUSE_FILTER_BY_IDLIST_START = " transparency_appointment.id_appointment in ( ";
private static final String SQL_WHERECLAUSE_FILTER_BY_IDLIST_END = " ) ";
private static final String SQL_WHERECLAUSE_BY_ID = " WHERE id_appointment = ?";
private static final String SQL_ORDER_BY = " ORDER BY ";
private static final String SQL_DEFAULT_ORDER_BY = " start_date ";
private static final String SQL_DEFAULT_ASC = " DESC ";
/**
* {@inheritDoc }
*/
@Override
public void insert( Appointment appointment, Plugin plugin )
{
DAOUtil daoUtil = new DAOUtil( SQL_QUERY_INSERT, Statement.RETURN_GENERATED_KEYS, plugin );
try
{
int nIndex = 1;
daoUtil.setString( nIndex++, appointment.getTitle( ) );
daoUtil.setString( nIndex++, appointment.getDescription( ) );
daoUtil.setDate( nIndex++, appointment.getStartDate( ) );
daoUtil.setDate( nIndex++, appointment.getEndDate( ) );
daoUtil.setInt( nIndex++, appointment.getTypeId( ) );
daoUtil.setString( nIndex++, appointment.getTypeLabel( ) );
daoUtil.setString( nIndex++, appointment.getUrl( ) );
daoUtil.setString( nIndex++, appointment.getContacts( ) );
daoUtil.executeUpdate( );
if ( daoUtil.nextGeneratedKey( ) )
{
appointment.setId( daoUtil.getGeneratedKeyInt( 1 ) );
}
}
finally
{
daoUtil.free( );
}
}
/**
* {@inheritDoc }
*/
@Override
public Appointment load( int nKey, Plugin plugin )
{
DAOUtil daoUtil = new DAOUtil( SQL_QUERY_SELECT + SQL_WHERECLAUSE_BY_ID, plugin );
daoUtil.setInt( 1, nKey );
daoUtil.executeQuery( );
Appointment appointment = null;
if ( daoUtil.next( ) )
{
appointment = new Appointment( );
int nIndex = 1;
appointment.setId( daoUtil.getInt( nIndex++ ) );
appointment.setTitle( daoUtil.getString( nIndex++ ) );
appointment.setDescription( daoUtil.getString( nIndex++ ) );
appointment.setStartDate( daoUtil.getDate( nIndex++ ) );
appointment.setEndDate( daoUtil.getDate( nIndex++ ) );
appointment.setTypeId( daoUtil.getInt( nIndex++ ) );
appointment.setTypeLabel( daoUtil.getString( nIndex++ ) );
appointment.setUrl( daoUtil.getString( nIndex++ ) );
appointment.setContacts( daoUtil.getString( nIndex++ ) );
}
daoUtil.free( );
return appointment;
}
/**
* {@inheritDoc }
*/
@Override
public void delete( int nKey, Plugin plugin )
{
DAOUtil daoUtil = new DAOUtil( SQL_QUERY_DELETE, plugin );
daoUtil.setInt( 1, nKey );
daoUtil.executeUpdate( );
daoUtil.free( );
}
/**
* {@inheritDoc }
*/
@Override
public void store( Appointment appointment, Plugin plugin )
{
DAOUtil daoUtil = new DAOUtil( SQL_QUERY_UPDATE, plugin );
int nIndex = 1;
daoUtil.setInt( nIndex++, appointment.getId( ) );
daoUtil.setString( nIndex++, appointment.getTitle( ) );
daoUtil.setString( nIndex++, appointment.getDescription( ) );
daoUtil.setDate( nIndex++, appointment.getStartDate( ) );
daoUtil.setDate( nIndex++, appointment.getEndDate( ) );
daoUtil.setInt( nIndex++, appointment.getTypeId( ) );
daoUtil.setString( nIndex++, appointment.getTypeLabel( ) );
daoUtil.setString( nIndex++, appointment.getUrl( ) );
daoUtil.setString( nIndex++, appointment.getContacts( ) );
daoUtil.setInt( nIndex, appointment.getId( ) );
daoUtil.executeUpdate( );
daoUtil.free( );
}
/**
* {@inheritDoc }
*/
@Override
public List<Appointment> selectAppointmentsList( Plugin plugin )
{
return selectAppointmentsList( null, plugin );
}
/**
* {@inheritDoc }
*/
@Override
public List<Appointment> selectAppointmentsList( AppointmentFilter filter, Plugin plugin )
{
List<Appointment> appointmentList = new ArrayList<>( );
StringBuilder sql = buildSQL( filter, false );
DAOUtil daoUtil = new DAOUtil( sql.toString( ), plugin );
int i = 1;
if ( filter != null &&
(filter.getListIds( ) ==null || filter.getListIds( ).size( ) == 0 ) )
{
if ( filter.getNumberOfDays( ) > 0 )
daoUtil.setInt( i++, filter.getNumberOfDays( ) );
if ( !StringUtils.isBlank( filter.getElectedOfficialName( ) ) )
daoUtil.setString( i++, "%" + filter.getElectedOfficialName( ) + "%" );
if ( !StringUtils.isBlank( filter.getLobbyName( ) ) )
daoUtil.setString( i++, "%" + filter.getLobbyName( ) + "%" );
if ( !StringUtils.isBlank( filter.getUserId( ) ) )
daoUtil.setString( i++, filter.getUserId( ) );
if ( filter.getIdAppointment( ) > 0 )
daoUtil.setInt( i++, filter.getIdAppointment( ) );
if ( !StringUtils.isBlank( filter.getTitle( ) ) )
daoUtil.setString( i++, "%" + filter.getTitle( ) + "%" );
}
// execute
daoUtil.executeQuery( );
while ( daoUtil.next( ) )
{
Appointment appointment = new Appointment( );
int nIndex = 1;
appointment.setId( daoUtil.getInt( nIndex++ ) );
appointment.setTitle( daoUtil.getString( nIndex++ ) );
appointment.setDescription( daoUtil.getString( nIndex++ ) );
appointment.setStartDate( daoUtil.getDate( nIndex++ ) );
appointment.setEndDate( daoUtil.getDate( nIndex++ ) );
appointment.setTypeId( daoUtil.getInt( nIndex++ ) );
appointment.setTypeLabel( daoUtil.getString( nIndex++ ) );
appointment.setUrl( daoUtil.getString( nIndex++ ) );
appointment.setContacts( daoUtil.getString( nIndex++ ) );
appointmentList.add( appointment );
}
daoUtil.free( );
return appointmentList;
}
/**
* {@inheritDoc }
*/
@Override
public List<Integer> selectAppointmentIdsList( AppointmentFilter filter, Plugin plugin )
{
List<Integer> appointmentIdsList = new ArrayList<>();
StringBuilder sql = buildSQL( filter, true );
DAOUtil daoUtil = new DAOUtil( sql.toString( ), plugin );
int i = 1;
if ( filter != null &&
(filter.getListIds( ) ==null || filter.getListIds( ).size( ) == 0 ) )
{
if ( filter.getNumberOfDays( ) > 0 )
daoUtil.setInt( i++, filter.getNumberOfDays( ) );
if ( !StringUtils.isBlank( filter.getElectedOfficialName( ) ) )
daoUtil.setString( i++, "%" + filter.getElectedOfficialName( ) + "%" );
if ( !StringUtils.isBlank( filter.getLobbyName( ) ) )
daoUtil.setString( i++, "%" + filter.getLobbyName( ) + "%" );
if ( !StringUtils.isBlank( filter.getUserId( ) ) )
daoUtil.setString( i++, filter.getUserId( ) );
if ( filter.getIdAppointment( ) > 0 )
daoUtil.setInt( i++, filter.getIdAppointment( ) );
if ( !StringUtils.isBlank( filter.getTitle( ) ) )
daoUtil.setString( i++, "%" + filter.getTitle( ) + "%" );
}
// execute
daoUtil.executeQuery( );
while ( daoUtil.next( ) )
{
appointmentIdsList.add( daoUtil.getInt( 1 ) );
}
daoUtil.free( );
return appointmentIdsList;
}
/**
* {@inheritDoc }
*/
@Override
public ReferenceList selectAppointmentsReferenceList( Plugin plugin )
{
ReferenceList appointmentList = new ReferenceList( );
DAOUtil daoUtil = new DAOUtil( SQL_QUERY_SELECT + SQL_ORDER_BY + SQL_DEFAULT_ORDER_BY, plugin );
daoUtil.executeQuery( );
while ( daoUtil.next( ) )
{
appointmentList.addItem( daoUtil.getInt( 1 ), daoUtil.getString( 2 ) );
}
daoUtil.free( );
return appointmentList;
}
/**
* Build the SQL with specified filter and sort
*
* @param filter
* @param idsOnly
* @return the SQL
*/
private StringBuilder buildSQL ( AppointmentFilter filter, boolean idsOnly)
{
StringBuilder sql = new StringBuilder( );
StringBuilder where = new StringBuilder( );
StringBuilder orderBy = new StringBuilder( );
boolean appointmentJoinAdded = false;
if (idsOnly)
{
// pagination request
sql.append( SQL_QUERY_SELECT_IDS ) ;
}
else
{
// full request
sql.append( SQL_QUERY_SELECT ) ;
}
// FILTER by ...
if ( filter == null )
{
// no filter
orderBy.append( SQL_ORDER_BY ).append( SQL_DEFAULT_ORDER_BY ).append( SQL_DEFAULT_ASC );
}
else
{
where.append( SQL_WHERE_BASE );
// by ids (no other filters)
if (filter.getListIds( ) !=null && filter.getListIds( ).size( ) > 0 )
{
where.append( SQL_ADD_CLAUSE ).append( SQL_WHERECLAUSE_FILTER_BY_IDLIST_START ) ;
where.append( filter.getListIds( ).stream( ).map( id -> id.toString( )).collect( Collectors.joining(",") ) );
where.append( SQL_WHERECLAUSE_FILTER_BY_IDLIST_END ).append( SQL_END_ADD_CLAUSE );
}
else
{
// period
if ( filter.getNumberOfDays( ) > 0 )
{
where.append( SQL_ADD_CLAUSE ).append( SQL_WHERECLAUSE_FILTER_BY_PERIOD ).append( SQL_END_ADD_CLAUSE );
}
// elected official name
if ( !StringUtils.isBlank( filter.getElectedOfficialName( ) ) )
{
sql.append( SQL_FROM_FITLER_BY_APPOINTMENT_AND ).append( SQL_FROM_FITLER_BY_ELECTED_OFFICIAL );
appointmentJoinAdded = true;
where.append( SQL_ADD_CLAUSE ).append( SQL_WHERECLAUSE_FILTER_BY_ELECTED_OFFICIAL ).append( SQL_END_ADD_CLAUSE );
}
// lobby name
if ( !StringUtils.isBlank( filter.getLobbyName( ) ) )
{
sql.append( SQL_FROM_FITLER_BY_LOBBY );
where.append( SQL_ADD_CLAUSE ).append( SQL_WHERECLAUSE_FILTER_BY_LOBBY ).append( SQL_END_ADD_CLAUSE );
}
// user delegation
if ( !StringUtils.isBlank( filter.getUserId( ) ) )
{
if ( !appointmentJoinAdded )
sql.append( SQL_FROM_FITLER_BY_APPOINTMENT_AND );
sql.append( SQL_FROM_FILTER_BY_DELEGATION );
where.append( SQL_ADD_CLAUSE ).append( SQL_WHERECLAUSE_FILTER_BY_DELEGATION ).append( SQL_END_ADD_CLAUSE );
}
// appointment ID
if ( filter.getIdAppointment( ) > 0 )
{
where.append( SQL_ADD_CLAUSE ).append( SQL_WHERECLAUSE_FILTER_BY_ID ).append( SQL_END_ADD_CLAUSE );
}
// title
if ( !StringUtils.isBlank( filter.getTitle( ) ) )
{
where.append( SQL_ADD_CLAUSE ).append( SQL_WHERECLAUSE_FILTER_BY_TITLE ).append( SQL_END_ADD_CLAUSE );
}
}
// order by
if ( !StringUtils.isBlank( filter.getOrderBy( ) ) )
{
orderBy.append( SQL_ORDER_BY ).append( filter.getOrderBy( ) );
}
else
{
orderBy.append( SQL_ORDER_BY ).append( SQL_DEFAULT_ORDER_BY ).append( SQL_DEFAULT_ASC );
}
}
// finalize request
sql.append( where ).append( orderBy );
return sql;
}
}