View Javadoc
1   /* 
2    * Copyright (c) 2002-2022, 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.portal.service.fileimage;
35  
36  import javax.servlet.http.HttpServletRequest;
37  
38  import org.apache.commons.fileupload.FileItem;
39  
40  import fr.paris.lutece.portal.business.file.File;
41  import fr.paris.lutece.portal.business.file.FileHome;
42  import fr.paris.lutece.portal.business.physicalfile.PhysicalFile;
43  import fr.paris.lutece.portal.business.physicalfile.PhysicalFileHome;
44  import fr.paris.lutece.portal.business.user.AdminUser;
45  import fr.paris.lutece.portal.business.user.attribute.AdminUserFieldHome;
46  import fr.paris.lutece.portal.service.admin.AdminUserService;
47  import fr.paris.lutece.portal.service.file.FileService;
48  import fr.paris.lutece.portal.service.file.FileServiceException;
49  import fr.paris.lutece.portal.service.image.ImageResource;
50  import fr.paris.lutece.portal.service.image.ImageResourceManager;
51  import fr.paris.lutece.portal.service.image.ImageResourceProvider;
52  import fr.paris.lutece.portal.service.init.LuteceInitException;
53  import fr.paris.lutece.portal.service.util.AppLogService;
54  import fr.paris.lutece.portal.web.LocalVariables;
55  import fr.paris.lutece.util.file.FileUtil;
56  
57  /**
58   * Service for AdminUser image attributes. Provide ImageResource management
59   */
60  public class FileImageService implements ImageResourceProvider
61  {
62      private static FileImageServicemage/FileImageService.html#FileImageService">FileImageService _singleton = new FileImageService( );
63      private static final String IMAGE_RESOURCE_TYPE_ID = "core_attribute_img";
64  
65      /**
66       * Creates a new instance of FileImgService
67       */
68      private FileImageService( )
69      {
70      }
71  
72      /**
73       * Init
74       *
75       * @throws LuteceInitException
76       *             if an error occurs
77       */
78      public static synchronized void init( )
79      {
80          getInstance( ).register( );
81      }
82  
83      /**
84       * Initializes the service
85       */
86      public void register( )
87      {
88          ImageResourceManager.registerProvider( this );
89      }
90  
91      /**
92       * Get the unique instance of the service
93       *
94       * @return The unique instance
95       */
96      public static FileImageService getInstance( )
97      {
98          return _singleton;
99      }
100 
101     /**
102      * Return the Resource id
103      *
104      * @param nIdResource
105      *            The resource identifier
106      * @return The Resource Image
107      */
108     public ImageResource getImageResource( int nIdResource )
109     {
110         
111         if ( !isAuthorized( nIdResource ) ) return null;
112         
113         File file = FileHome.findByPrimaryKey( nIdResource );
114 
115         if ( ( file != null ) && ( file.getPhysicalFile( ) != null ) && FileUtil.hasImageExtension( file.getTitle( ) ) )
116         {
117             PhysicalFile physicalFile = PhysicalFileHome.findByPrimaryKey( file.getPhysicalFile( ).getIdPhysicalFile( ) );
118             ImageResource/ImageResource.html#ImageResource">ImageResource imageResource = new ImageResource( );
119             imageResource.setImage( physicalFile.getValue( ) );
120             imageResource.setMimeType( file.getMimeType( ) );
121 
122             return imageResource;
123         }
124         
125 
126         return null;
127     }
128 
129     /**
130      * Return the Resource Type id
131      *
132      * @return The Resource Type Id
133      */
134     public String getResourceTypeId( )
135     {
136         return IMAGE_RESOURCE_TYPE_ID;
137     }
138 
139     /**
140      * check rights
141      *
142      * @param nIdResource
143      * @return true if authorized
144      */
145     private static boolean isAuthorized(  int nIdResource  )
146     {
147         HttpServletRequest request = LocalVariables.getRequest( );
148         AdminUser user = AdminUserService.getAdminUser( request );
149 
150         return ( user == null || !AdminUserFieldHome.existsWithFile( nIdResource ) );
151     }
152     
153     /**
154      * Add Image Resource
155      * @param fileItem
156      * @return the Image File Key
157      */
158     public String addImageResource( FileItem fileItem )
159 	{
160     	try 
161     	{
162     		return FileService.getInstance( ).getFileStoreServiceProvider( ).storeFileItem( fileItem );
163     	}
164 		catch (FileServiceException e )
165     	{
166 			AppLogService.error(e);
167 			return null;
168     	}
169 	}
170 }