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.plugins.pluginwizard.service.generator;
35  
36  import fr.paris.lutece.plugins.pluginwizard.business.model.BusinessClass;
37  import fr.paris.lutece.plugins.pluginwizard.business.model.Feature;
38  import fr.paris.lutece.plugins.pluginwizard.business.model.PluginModel;
39  import fr.paris.lutece.plugins.pluginwizard.service.ModelService;
40  import fr.paris.lutece.plugins.pluginwizard.util.Utils;
41  import fr.paris.lutece.portal.service.template.AppTemplateService;
42  import fr.paris.lutece.util.html.HtmlTemplate;
43  
44  import java.util.Collection;
45  import java.util.HashMap;
46  import java.util.Locale;
47  import java.util.Map;
48  
49  /**
50   *
51   * Generates Html files used as template to construct back office UI
52   *
53   */
54  public class AdminTemplateGenerator extends AbstractGenerator
55  {
56      private static final String PATH = "webapp/WEB-INF/templates/admin/plugins/{plugin_name}/";
57      private static String [ ] _template_prefix = {
58              "create_", "modify_", "manage_"
59      };
60      private String _strTabsTemplate;
61  
62      /**
63       * {@inheritDoc }
64       * 
65       * @param pm
66       */
67      @Override
68      public Map generate( PluginModel pm, String generationSchemeName )
69      {
70          HashMap map = new HashMap( );
71  
72          String strPluginName = pm.getPluginNameAsPackage( );
73          String strLink = pm.getPluginNameAsRadicalPath( );
74  
75          // for each feature,which business classes are attached to
76          Collection<Feature> listFeatures = pm.getFeatures( );
77  
78          for ( Feature feature : listFeatures )
79          {
80              Collection<BusinessClass> listBusinessClasses = ModelService.getBusinessClassesByFeature( pm, feature.getId( ) );
81  
82              for ( BusinessClass businessClass : listBusinessClasses )
83              {
84                  Feature admin_feature = ModelService.getFeatureByBusinessClass( pm, businessClass.getId( ) );
85  
86                  for ( int i = 0; i < _template_prefix.length; i++ )
87                  {
88                      String strSuffix = ( i == 2 ) ? "s.html" : ".html";
89                      String strPath = getFilePath( pm, PATH, _template_prefix [i] + businessClass.getBusinessClass( ).toLowerCase( ) + strSuffix );
90  
91                      String strSourceCode = getCreateHtmlCode( listBusinessClasses, admin_feature, businessClass, i, strPluginName, strLink );
92                      map.put( strPath, strSourceCode );
93                  }
94              }
95  
96              // Add the main template where all the business management interface will be accessible
97              String strPath = getFilePath( pm, PATH, feature.getFeatureName( ).toLowerCase( ) + "_tabs.html" );
98  
99              String strSourceCode = getTabsHtmlCode( listBusinessClasses, strPluginName, feature, strLink );
100             map.put( strPath, strSourceCode );
101         }
102 
103         return map;
104     }
105 
106     /**
107      * Gets the code of a create template for a specific business object
108      *
109      * @param listAllBusinessClasses
110      *            A list of business classes attached to plugin
111      * @param businessClass
112      *            The instance of the business class
113      * @param nTemplateType
114      * @param strLinkJsp
115      *            The link to jsp
116      * @param strPluginName
117      *            The plugin name
118      * @return The html code of the create template
119      */
120     private String getCreateHtmlCode( Collection<BusinessClass> listAllBusinessClasses, Feature admin_feature, BusinessClass businessClass, int nTemplateType,
121             String strPluginName, String strLinkJsp )
122     {
123         Map<String, Object> model = new HashMap<String, Object>( );
124 
125         model.put( Markers.MARK_PLUGIN_NAME, strPluginName );
126         model.put( Markers.MARK_I18N_BRACKETS_OPEN, "@@i18n{" );
127         model.put( Markers.MARK_I18N_BRACKETS_CLOSE, "}" );
128         model.put( Markers.MARK_MACRO, "@" );
129         model.put( Markers.MARK_VARIABLE, "@@" );
130         model.put( Markers.MARK_BRACKETS_OPEN, "${" );
131         model.put( Markers.MARK_BRACKETS_CLOSE, "}" );
132         model.put( Markers.MARK_BUSINESS_CLASS, businessClass );
133         model.put( Markers.MARK_LIST_BUSINESS_CLASSES, listAllBusinessClasses );
134         model.put( Markers.MARK_ADMIN_FEATURE, admin_feature );
135         model.put( Markers.MARK_INCLUDE, "@@include" );
136         model.put( Markers.MARK_PLUGIN_PATH, strLinkJsp );
137 
138         model.put( Markers.MARK_TEMPLATE_TYPE, nTemplateType );
139 
140         HtmlTemplate template = AppTemplateService.getTemplate( getTemplate( ), Locale.getDefault( ), model );
141 
142         return template.getHtml( ).replace( "@@", "#" );
143     }
144 
145     /**
146      * Gets the code of a create template for a specific business object
147      *
148      * @param listAllBusinessClasses
149      *            A list of business classes attached to plugin
150      * @param strPluginName
151      * @param strLinkJsp
152      *            The link to jsp
153      * @param feature
154      *            The feature
155      * @return The html code of the create template
156      */
157     private String getTabsHtmlCode( Collection<BusinessClass> listAllBusinessClasses, String strPluginName, Feature feature, String strLinkJsp )
158     {
159         Map<String, Object> model = new HashMap<String, Object>( );
160 
161         model.put( Markers.MARK_PLUGIN_NAME, strPluginName );
162         model.put( Markers.MARK_FEATURE, feature );
163         model.put( Markers.MARK_I18N_BRACKETS_OPEN, "@@i18n{" );
164         model.put( Markers.MARK_I18N_BRACKETS_CLOSE, "}" );
165         model.put( Markers.MARK_MACRO, "@" );
166         model.put( Markers.MARK_VARIABLE, "@@" );
167         model.put( Markers.MARK_BRACKETS_OPEN, "${" );
168         model.put( Markers.MARK_BRACKETS_CLOSE, "}" );
169         model.put( Markers.MARK_MACRO_DEF, "@@macro" );
170         model.put( Markers.MARK_LIST_BUSINESS_CLASSES, listAllBusinessClasses );
171         model.put( Markers.MARK_PLUGIN_PATH, strLinkJsp );
172 
173         HtmlTemplate template = AppTemplateService.getTemplate( _strTabsTemplate, Locale.getDefault( ), model );
174 
175         return template.getHtml( ).replace( "@@", "#" );
176     }
177 
178     /**
179      * @param tabsTemplate
180      *            the tabsTemplate to set
181      */
182     public void setTabsTemplate( String tabsTemplate )
183     {
184         _strTabsTemplate = tabsTemplate;
185     }
186 }