View Javadoc
1   /*
2    * Copyright (c) 2002-2021, City of Paris
3    * All rights reserved.
4    *
5    * Redistribution and use in source and binary forms, with or without
6    * modification, are permitted provided that the following conditions
7    * are met:
8    *
9    *  1. Redistributions of source code must retain the above copyright notice
10   *     and the following disclaimer.
11   *
12   *  2. Redistributions in binary form must reproduce the above copyright notice
13   *     and the following disclaimer in the documentation and/or other materials
14   *     provided with the distribution.
15   *
16   *  3. Neither the name of 'Mairie de Paris' nor 'Lutece' nor the names of its
17   *     contributors may be used to endorse or promote products derived from
18   *     this software without specific prior written permission.
19   *
20   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21   * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22   * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23   * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
24   * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25   * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26   * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27   * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28   * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29   * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30   * POSSIBILITY OF SUCH DAMAGE.
31   *
32   * License 1.0
33   */
34  package fr.paris.lutece.plugins.address.rs;
35  
36  import fr.paris.lutece.plugins.address.service.AddressServiceProvider;
37  import fr.paris.lutece.plugins.rest.service.RestConstants;
38  import fr.paris.lutece.portal.service.util.AppLogService;
39  import fr.paris.lutece.util.ReferenceList;
40  import fr.paris.lutece.util.json.ErrorJsonResponse;
41  import fr.paris.lutece.util.json.JsonResponse;
42  import fr.paris.lutece.util.json.JsonUtil;
43  import java.rmi.RemoteException;
44  
45  import org.apache.log4j.Logger;
46  import javax.ws.rs.GET;
47  import javax.ws.rs.Path;
48  import javax.ws.rs.PathParam;
49  import javax.ws.rs.Produces;
50  import javax.ws.rs.core.MediaType;
51  import javax.ws.rs.core.Response;
52  
53  /**
54   * RentRest
55   */
56  @Path( RestConstants.BASE_PATH + Constants.API_PATH + Constants.VERSION_PATH )
57  public class AddressRest
58  {
59      private static final int VERSION_1 = 1;
60      private final Logger _logger = Logger.getLogger( RestConstants.REST_LOGGER );
61  
62      // Msg
63      private static final String MSG_ERROR_GET_ADDRESSES = "address.message.getAdress.error";
64  
65      /**
66       * Get adress list
67       * 
68       * @param nVersion
69       *            the API version
70       * @param term
71       *            to search
72       * @return the address list
73       */
74      @GET
75      @Path( Constants.ID_SEARCH_ADR )
76      @Produces( MediaType.APPLICATION_JSON )
77      public Response getAdressList( @PathParam( Constants.VERSION ) Integer nVersion, @PathParam( Constants.TERM ) String term )
78      {
79          switch( nVersion )
80          {
81              case VERSION_1:
82                  return getAddressList( term );
83              default:
84                  break;
85          }
86          _logger.error( Constants.ERROR_NOT_FOUND_VERSION );
87          return Response.status( Response.Status.NOT_FOUND )
88                  .entity( JsonUtil.buildJsonResponse( new ErrorJsonResponse( Response.Status.NOT_FOUND.name( ), Constants.ERROR_NOT_FOUND_VERSION ) ) ).build( );
89      }
90  
91      /**
92       * Get address list V1
93       * 
94       * @param term
95       * @return the address list
96       */
97      private Response getAddressList( String term )
98      {
99  
100         ReferenceList list = null;
101         try
102         {
103             if ( "RestAddressService".equals( AddressServiceProvider.getInstanceClass( ) ) )
104             {
105                 list = AddressServiceProvider.searchAddress( null, term );
106             }
107 
108         }
109         catch( RemoteException e )
110         {
111             AppLogService.error( e );
112         }
113 
114         if ( list == null )
115         {
116             _logger.error( Constants.ERROR_NOT_FOUND_RESOURCE );
117             return Response.status( Response.Status.NOT_FOUND )
118                     .entity( JsonUtil.buildJsonResponse( new ErrorJsonResponse( Response.Status.NOT_FOUND.name( ), MSG_ERROR_GET_ADDRESSES ) ) ).build( );
119         }
120 
121         return Response.status( Response.Status.OK ).entity( JsonUtil.buildJsonResponse( new JsonResponse( list ) ) ).build( );
122     }
123 
124 }