View Javadoc
1   /*
2    * Copyright (c) 2002-2017, Mairie de 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.deployment.service;
35  
36  import fr.paris.lutece.plugins.deployment.business.Application;
37  import fr.paris.lutece.plugins.deployment.business.FilterDeployment;
38  import fr.paris.lutece.plugins.deployment.business.IApllicationDAO;
39  import fr.paris.lutece.plugins.deployment.service.vcs.IVCSService;
40  import fr.paris.lutece.plugins.deployment.util.DeploymentUtils;
41  import fr.paris.lutece.portal.service.plugin.Plugin;
42  import java.util.ArrayList;
43  
44  import java.util.List;
45  
46  import javax.inject.Inject;
47  
48  public class ApplicationService implements IApplicationService
49  {
50  
51      // private static IApplicationService _singleton;
52  
53      @Inject
54      private IApllicationDAO _applicationDAO;
55  
56      private ApplicationService( )
57      {
58          init( );
59      }
60  
61      // public static IApplicationService getInstance( )
62      // {
63      // if ( _singleton == null )
64      // {
65      // _singleton = new ApplicationService( );
66      // }
67      //
68      // return _singleton;
69      // }
70  
71      /*
72       * (non-Javadoc)
73       * 
74       * @see fr.paris.lutece.plugins.deployment.service.IApplicationService#getListApplications(fr.paris.lutece.plugins.deployment.business.FilterDeployment,
75       * fr.paris.lutece.portal.service.plugin.Plugin)
76       */
77      public List<Application> getListApplications( FilterDeployment filter, Plugin plugin )
78      {
79          return _applicationDAO.findByFilter( filter, plugin );
80      }
81  
82      /**
83       * {@inheriteDoc}
84       */
85      @Override
86      public List<Application> getListApplicationFilteredBySearchName( List<Application> listApp, FilterDeployment filter, Plugin plugin )
87      {
88          List<Application> listAppFiltered = new ArrayList<Application>( );
89          if ( filter.constainsSearchNameFilter( ) )
90          {
91              String strSearchName = filter.getSearchName( );
92              for ( Application app : listApp )
93              {
94                  String strSearchIn = new StringBuilder( ).append( app.getCode( ) ).append( " " ).append( app.getName( ) ).append( " " )
95                          .append( app.getUrlRepo( ) ).toString( );
96  
97                  // remove the application from the list if his name doesnt match.
98                  if ( strSearchIn.toLowerCase( ).contains( strSearchName.toLowerCase( ) ) )
99                  {
100                     listAppFiltered.add( app );
101                 }
102             }
103             return listAppFiltered;
104         }
105         else
106         {
107             // no filter on search name.
108             return listApp;
109         }
110     }
111 
112     public Application getApplication( int nIdApplication, Plugin plugin )
113     {
114         return _applicationDAO.findByPrimaryKey( nIdApplication, plugin );
115     }
116 
117     /*
118      * (non-Javadoc)
119      * 
120      * @see fr.paris.lutece.plugins.deployment.service.IApplicationService#init()
121      */
122     public void init( )
123     {
124     }
125 
126     /*
127      * (non-Javadoc)
128      * 
129      * @see fr.paris.lutece.plugins.deployment.service.IApplicationService#createApplication(fr.paris.lutece.plugins.deployment.business.Application,
130      * fr.paris.lutece.portal.service.plugin.Plugin)
131      */
132     public void createApplication( Application application, Plugin plugin )
133     {
134         _applicationDAO.insert( application, plugin );
135     }
136 
137     /*
138      * (non-Javadoc)
139      * 
140      * @see fr.paris.lutece.plugins.deployment.service.IApplicationService#updateApplication(fr.paris.lutece.plugins.deployment.business.Application,
141      * fr.paris.lutece.portal.service.plugin.Plugin)
142      */
143     public void updateApplication( Application application, Plugin plugin )
144     {
145         _applicationDAO.update( application, plugin );
146     }
147 
148     /*
149      * (non-Javadoc)
150      * 
151      * @see fr.paris.lutece.plugins.deployment.service.IApplicationService#deleteApplication(int, fr.paris.lutece.portal.service.plugin.Plugin)
152      */
153     public void deleteApplication( int nIdApplication, Plugin plugin )
154     {
155         _applicationDAO.delete( nIdApplication, plugin );
156     }
157 
158     public static boolean isPrivateRepo( Application application )
159     {
160         IVCSService vcsService = DeploymentUtils.getVCSService( application.getRepoType( ) );
161         return vcsService.isPrivate( );
162     }
163 }