MirCoders independant
[mir.git] / source / mir / misc / HTMLTemplateProcessor.java
1 /*
2  * put your module comment here
3  */
4
5
6 package mir.misc;
7
8 import  java.lang.*;
9 import  java.util.*;
10 import  java.io.*;
11 import  java.net.*;
12 import  freemarker.template.*;
13 import  mir.entity.*;
14 import  mir.storage.*;
15 import javax.servlet.http.*;
16
17
18 /**
19  * Hilfsklasse zum Mergen von Template und Daten
20  */
21 public final class HTMLTemplateProcessor {
22
23   public static String                templateDir;
24   private static FileTemplateCache    templateCache;
25   private static Logfile              theLog;
26   private static String               docRoot;
27   private static String               actionRoot;
28   private static String               productionHost;
29   private static String               audioHost;
30   private static String               videoHost;
31   private static String               imageHost;
32   private static String               openAction;
33   protected static String producerDocRoot = MirConfig.getProp("Producer.DocRoot");
34   protected static String producerStorageRoot = MirConfig.getProp("Producer.StorageRoot");
35
36
37   //
38   // init
39
40   static {
41
42     templateDir = MirConfig.getPropWithHome("HTMLTemplateProcessor.Dir");
43     templateCache = new FileTemplateCache(templateDir);
44     templateCache.setLoadingPolicy(templateCache.LOAD_ON_DEMAND);
45     templateCache.startAutoUpdate();
46     theLog = Logfile.getInstance(MirConfig.getPropWithHome("HTMLTemplateProcessor.Logfile"));
47     docRoot = MirConfig.getProp("RootUri");
48     actionRoot = docRoot + "/servlet/" + MirConfig.getProp("ServletName");
49
50     openAction = MirConfig.getProp("Producer.OpenAction");
51     productionHost = MirConfig.getProp("Producer.ProductionHost");
52     videoHost = MirConfig.getProp("Producer.VideoHost");
53     audioHost = MirConfig.getProp("Producer.AudioHost");
54     imageHost = MirConfig.getProp("Producer.Image.Host");
55     producerDocRoot = MirConfig.getProp("Producer.DocRoot");
56     producerStorageRoot = MirConfig.getProp("Producer.StorageRoot");
57
58   }
59
60   /**
61    * empty private constructor, to avoid instantiation
62    */
63   private HTMLTemplateProcessor () { }
64
65
66   // process-methods to merge different datastructures
67   // with freemarker templates
68
69
70   /**
71    * Wandelt <code>anEntity</code> in freemarker-Struktur um, mischt die Daten mit
72    * Template <code>templateFilename</code> und gibt das Ergebnis an den PrintWriter
73    * <code>out</code>
74    *
75    * @param templateFilename
76    * @param anEntity
77    * @param out
78    * @exception HTMLParseException
79    */
80
81     public static void process(String templateFilename, Entity anEntity, PrintWriter out)
82       throws HTMLParseException {
83         if (anEntity == null)  throw new HTMLParseException("entity is empty!");
84         else process(templateFilename, anEntity, out);
85     }
86
87
88   /**
89    * Wandelt Liste mit Entities <code>entList</code> in freemarker-Struktur um, mischt die Daten mit
90    * Template <code>templateFilename</code> und gibt das Ergebnis an den PrintWriter
91    * <code>out</code>
92    *
93    * @param templateFilename
94    * @param entList
95    * @param out
96    * @exception HTMLParseException
97    */
98   public static void process(HttpServletResponse res,String templateFilename, EntityList entList, PrintWriter out)
99       throws HTMLParseException {
100     process(res, templateFilename,  entList,  (String)null, (TemplateModelRoot)null,  out);
101   }
102
103   /**
104    * Wandelt Entitylist in freemarker-Struktur um, fügt <code>additionalModel</code>
105    * unter dem Namen <code>additionalModelName</code> ein und mischt die Daten mit
106    * Template <code>templateFilename</code> und gibt das Ergebnis an den PrintWriter
107    * <code>out</code>
108    *
109    * @param templateFilename
110    * @param entList
111    * @param additionalModelName
112    * @param additionalModel
113    * @param out
114    * @exception HTMLParseException
115    */
116     public static void process(HttpServletResponse res,String templateFilename, EntityList entList, String additionalModelName,
117              TemplateModelRoot additionalModel, PrintWriter out)
118       throws HTMLParseException {
119
120       SimpleHash modelRoot = new SimpleHash();
121
122       if (entList == null) {
123          process(null,templateFilename, modelRoot, out);
124       } else {
125         try {
126           modelRoot = makeSimpleHashWithEntitylistInfos(entList);
127
128           // Quickhack um mal ein Popup mit reinzunhemen ..
129           if (additionalModelName != null && additionalModel != null)
130               modelRoot.put(additionalModelName, additionalModel);
131
132           process(res,templateFilename, modelRoot, out);
133         } catch (StorageObjectException e) {
134           throw new HTMLParseException(e.toString());
135         }
136       }
137     }
138
139   /**
140    * Wandelt HashMap <code>mergeData</code> in freemarker-Struktur und mischt diese mit
141    * Template <code>templateFilename</code> und gibt das Ergebnis an den PrintWriter
142    * <code>out</code>
143    *
144    * @param templateFilename
145    * @param mergeData
146    * @param out
147    * @exception HTMLParseException
148    */
149     public static void process(HttpServletResponse res,String templateFilename, HashMap mergeData, PrintWriter out)
150       throws HTMLParseException {
151       process(res,templateFilename, makeSimpleHash(mergeData), out);
152     }
153
154   /**
155    * Gibt Template <code>templateFilename</code> an den PrintWriter
156    * <code>out</code>
157    *
158    * @param templateFilename
159    * @param mergeData
160    * @param out
161    * @exception HTMLParseException
162    */
163     public static void process(String templateFilename, PrintWriter out)
164       throws HTMLParseException {
165       process(null,templateFilename, (TemplateModelRoot)null, out);
166     }
167
168
169   /**
170    * Mischt die freemarker-Struktur <code>tmr</code> mit
171    * Template <code>templateFilename</code> und gibt das Ergebnis an den PrintWriter
172    * <code>out</code>
173    *
174    * @param templateFilename
175    * @param mergeData
176    * @param out
177    * @exception HTMLParseException
178    */
179     public static void process(HttpServletResponse res,String templateFilename, TemplateModelRoot tmr, PrintWriter out)
180       throws HTMLParseException {
181       if (out==null) throw new HTMLParseException("no outputstream");
182       Template tmpl = getTemplateFor(templateFilename);
183       if (tmpl == null) throw new HTMLParseException("no template: " + templateFilename);
184       if (tmr==null) tmr = new SimpleHash();
185
186       /** @todo  what is this for? (rk) */
187       String session=null;
188       if (res!=null) {
189         session=res.encodeURL("");
190       }
191
192       // put standard configuration into tempalteRootmodel
193       SimpleHash configHash = new SimpleHash();
194       configHash.put("docroot", new SimpleScalar(producerDocRoot));
195       configHash.put("storageroot", new SimpleScalar(producerStorageRoot));
196       configHash.put("productionhost", new SimpleScalar(productionHost));
197       configHash.put("openaction", new SimpleScalar(openAction));
198       configHash.put("actionRootLogin",new SimpleScalar(actionRoot));
199
200
201       tmr.put("docRoot", new SimpleScalar(docRoot));
202       tmr.put("now", new SimpleScalar(StringUtil.date2readableDateTime(new GregorianCalendar())));
203       tmr.put("actionRoot", new SimpleScalar(actionRoot+session));
204       tmr.put("openAction", new SimpleScalar(openAction));
205       tmr.put("productionHost", new SimpleScalar(productionHost));
206       tmr.put("videoHost", new SimpleScalar(videoHost));
207       tmr.put("audioHost", new SimpleScalar(audioHost));
208       tmr.put("imageHost", new SimpleScalar(imageHost));
209
210       tmr.put("config", configHash);
211       tmpl.process(tmr, out);
212
213     }
214
215
216   /**
217    *   Wandelt eine Entity-Liste in eine SimpleList von SimpleHashes um.
218    *   @param aList ist eine Liste von Entity
219    *   @return eine freemarker.template.SimpleList von SimpleHashes.
220    */
221   public static SimpleList makeSimpleList(EntityList aList) throws StorageObjectException
222   {
223     SimpleList      simpleList = new SimpleList();
224     if (aList != null) {
225       for(int i=0;i<aList.size();i++){
226         simpleList.add(makeSimpleHash(aList.elementAt(i)));
227       }
228     }
229     return simpleList;
230   }
231
232   /**
233    *  Konvertiert ein EntityList in ein freemarker.template.SimpleHash-Modell. Im Hash
234    *  sind die einzelnen Entities ueber ihre id zu erreichen.
235    *  @param aList ist die EntityList
236    *  @return SimpleHash mit den entsprechenden freemarker Daten
237    *
238    */
239   public static SimpleHash makeSimpleHash(EntityList aList) throws StorageObjectException
240   {
241     SimpleHash      simpleHash = new SimpleHash();
242     Entity          currentEntity;
243
244     if (aList != null) {
245       for (int i=0;i<aList.size();i++) {
246          currentEntity = (Entity)aList.elementAt(i);
247          simpleHash.put(currentEntity.getId(), makeSimpleHash(currentEntity));
248       }
249     }
250     return simpleHash;
251   }
252
253   /**
254    *  Konvertiert ein Entity in ein freemarker.template.SimpleHash-Modell
255    *  @param entity ist die Entity
256    *  @return SimpleHash mit den entsprechenden freemarker Daten
257    *
258    */
259     public static SimpleHash makeSimpleHash(Entity entity) {
260       if (entity != null) {
261         return makeSimpleHash(entity.getValues());
262       }
263       else {
264         //theLog.printWarning("Entity ist <null>");
265         return null;
266       }
267     }
268
269   /**
270    *  Konvertiert ein Hashtable mit den keys und values als String
271    *  in ein freemarker.template.SimpleHash-Modell
272    *  @param mergeData der HashMap mit den String / String Daten
273    *  @return SimpleHash mit den entsprechenden freemarker Daten
274    *
275    */
276   public static SimpleHash makeSimpleHash(HashMap mergeData)
277   {
278     SimpleHash modelRoot = new SimpleHash();
279     String aField;
280     if (mergeData != null) {
281       Set set = mergeData.keySet();
282       Iterator it =  set.iterator();
283       for (int i=0; i<set.size();i++)  {
284         aField = (String)it.next();
285         modelRoot.put(aField, (String)mergeData.get(aField));
286       }
287     }
288     return modelRoot;
289   }
290
291
292   /**
293    * Wandelt EntityListe in SimpleHash um, und versieht die Liste mit StandardInfos,
294    * die aus EntityList kommen.
295    *
296    * @param entList
297    * @return SimpleHash mit Entity-Daten und ZusatzInfos.
298    * @exception StorageObjectException
299    */
300     public static SimpleHash makeSimpleHashWithEntitylistInfos(EntityList entList) throws StorageObjectException {
301       SimpleHash modelRoot = new SimpleHash();
302       if (entList!=null) {
303                 modelRoot.put("contentlist", makeSimpleList(entList));
304                 modelRoot.put("count", new SimpleScalar((new Integer(entList.getCount())).toString()));
305           if (entList.getWhere()!=null) {
306             modelRoot.put("where", new SimpleScalar(entList.getWhere()));
307             modelRoot.put("where_encoded", new SimpleScalar(URLEncoder.encode(entList.getWhere())));
308           }
309
310           if(entList.getOrder()!=null) {
311             modelRoot.put("order", new SimpleScalar(entList.getOrder()));
312             modelRoot.put("order_encoded", new SimpleScalar(URLEncoder.encode(entList.getOrder())));
313           }
314           modelRoot.put("from", new SimpleScalar((new Integer(entList.getFrom())).toString()));
315           modelRoot.put("to", new SimpleScalar((new Integer(entList.getTo())).toString()));
316
317           if (entList.hasNextBatch())
318             modelRoot.put("next", new SimpleScalar((new Integer(entList.getNextBatch())).toString()));
319           if (entList.hasPrevBatch())
320             modelRoot.put("prev", new SimpleScalar((new Integer(entList.getPrevBatch())).toString()));
321       }
322       return modelRoot;
323     }
324
325   /**
326    * Private methods to get template from a templateFilename
327    * @param templateFilename
328    * @return Template
329    * @exception HTMLParseException
330    */
331   private static Template getTemplateFor(String templateFilename) throws HTMLParseException
332   {
333     if (templateFilename!=null) return templateCache.getTemplate(templateFilename);
334     else {
335       theLog.printError("CACHE (ERR): Unknown template: " + templateFilename);
336       throw new HTMLParseException("Templatefile: "+ templateFilename + " not found.");
337     }
338   }
339
340   public static void stopAutoUpdate(){
341     templateCache.stopAutoUpdate();
342     templateCache=null;
343   }
344
345 }