View Javadoc
1   /*
2    * Copyright (c) 2002-2014, 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.dbpage.modules.jasper;
35  
36  import fr.paris.lutece.plugins.dbpage.business.DbPageDatabase;
37  import fr.paris.lutece.plugins.dbpage.business.DbPageDatabaseHome;
38  import fr.paris.lutece.plugins.dbpage.business.DbPageDatabaseSectionHome;
39  import fr.paris.lutece.plugins.dbpage.business.DbPageLoaderDatabase;
40  import fr.paris.lutece.plugins.dbpage.business.section.DbPageSection;
41  import fr.paris.lutece.plugins.jasper.business.JasperReportHome;
42  import fr.paris.lutece.plugins.jasper.service.JasperFileLinkService;
43  import fr.paris.lutece.portal.service.plugin.Plugin;
44  import fr.paris.lutece.portal.service.plugin.PluginService;
45  import fr.paris.lutece.portal.service.template.AppTemplateService;
46  import fr.paris.lutece.util.html.HtmlTemplate;
47  
48  import java.util.Collection;
49  import java.util.HashMap;
50  import java.util.List;
51  import java.util.Map;
52  
53  import javax.servlet.http.HttpServletRequest;
54  
55  
56  public class DbPageSectionJasper extends DbPageSection
57  {
58      /**
59       *
60       */
61      private static final long serialVersionUID = -3698797709397929643L;
62      private static final String PARAMETER_DBPAGE_NAME = "dbpage";
63      private static final String TEMPLATE_CREATION_JASPER = "admin/plugins/dbpage/create_section_jasper.html";
64      private static final String TEMPLATE_MODIFICATION_JASPER = "admin/plugins/dbpage/modify_section_jasper.html";
65      private static final String TEMPLATE_DEFAULT_JASPER = "skin/plugins/dbpage/default_jasper.html";
66      private static final String PRPORTY_JASPER_PLUGIN="jasper";
67      private static final String MARK_LIST_REPORT = "list_report";
68      private static final String MARK_JASPER_CONTENT ="jasper_content";
69      private static final String MARK_DBPAGE_NAME="dbpage_name";
70      public DbPageSectionJasper( String strDescType )
71      {
72      	   this.setIdTypeSignature(serialVersionUID);
73             this.setDescType(strDescType);
74      }
75  
76      /**
77       * Returns the Html Section Table form
78       *
79       * @return the html code of the html Section Table form
80       * @param request
81       *            The request
82       * @param listValues
83       *            the list of id values substitute in the SQL request
84       */
85      public String getHtmlSection( List listValues, HttpServletRequest request )
86      {
87          String strParam = getTitle(  );
88          Plugin plugin = PluginService.getPlugin("dbpage");
89          String strDbPageName = request.getParameter( PARAMETER_DBPAGE_NAME );
90          
91          if(DbPageDatabaseSectionHome.isSectionInPage(strDbPageName, strParam, plugin))
92          		{
93          byte[] arrayContent = JasperFileLinkService.exportFile( request, strParam );
94          HashMap rootModel = new HashMap(  );
95         
96          rootModel.put( MARK_JASPER_CONTENT, new String( arrayContent )); 
97          rootModel.put( MARK_DBPAGE_NAME, strDbPageName); 
98          HtmlTemplate tJasper = AppTemplateService.getTemplate( TEMPLATE_DEFAULT_JASPER, request.getLocale(  ),
99                  rootModel );
100 
101         return tJasper.getHtml(  );       
102         		}
103        return "";
104     }
105 
106     public long getIdType(  )
107     {
108     	  return getIdTypeSignature();
109     }
110 
111     public String getTypeDescription(  )
112     {
113     	  return getDescType();
114     }
115 
116     public String getCreationTemplate(  )
117     {
118         return TEMPLATE_CREATION_JASPER;
119     }
120 
121     public String getModificationTemplate(  )
122     {
123         return TEMPLATE_MODIFICATION_JASPER;
124     }
125     /**
126      * Returns a map with additional markers
127      */
128     public Map<String, Object> getMarkMap(  )
129     {
130         Map map = new HashMap(  );
131         Plugin plugin = PluginService.getPlugin(PRPORTY_JASPER_PLUGIN);
132         Collection collection = JasperReportHome.getJasperReportsList(plugin);
133         map.put(MARK_LIST_REPORT, collection);
134         return map;
135     }
136 }