code cleaning, new config
[mir.git] / source / mircoders / servlet / ServletModuleFileEdit.java
1 /*
2  * Copyright (C) 2001, 2002  The Mir-coders group
3  *
4  * This file is part of Mir.
5  *
6  * Mir is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * Mir is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Mir; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  * In addition, as a special exception, The Mir-coders gives permission to link
21  * the code of this program with the com.oreilly.servlet library, any library
22  * licensed under the Apache Software License, The Sun (tm) Java Advanced
23  * Imaging library (JAI), The Sun JIMI library (or with modified versions of
24  * the above that use the same license as the above), and distribute linked
25  * combinations including the two.  You must obey the GNU General Public
26  * License in all respects for all of the code used other than the above
27  * mentioned libraries.  If you modify this file, you may extend this exception
28  * to your version of the file, but you are not obligated to do so.  If you do
29  * not wish to do so, delete this exception statement from your version.
30  */
31
32 package mircoders.servlet;
33
34 import java.io.File;
35 import java.io.FileReader;
36 import java.io.FileWriter;
37 import java.io.IOException;
38 import java.io.StringReader;
39 import java.io.StringWriter;
40
41 import javax.servlet.http.HttpServletRequest;
42 import javax.servlet.http.HttpServletResponse;
43
44 import mir.log.LoggerWrapper;
45 import mir.misc.FileExtFilter;
46 import mir.misc.HTMLTemplateProcessor;
47 import mir.servlet.ServletModule;
48 import mir.servlet.ServletModuleException;
49 import freemarker.template.SimpleHash;
50 import freemarker.template.SimpleList;
51
52 /*
53  *  ServletModuleFileEdit -
54  *  Allows one to do a basic edit of a file in a directory specified
55  *  in the config file.
56  *
57  * @author $Author: idfx $
58  * @version $Revision: 1.4 $ $Date: 2003/01/25 17:50:36 $
59  *
60  */
61
62 public class ServletModuleFileEdit extends ServletModule
63 {
64
65 // Singelton / Kontruktor
66
67   private static ServletModuleFileEdit instance =
68       new ServletModuleFileEdit();
69   public static ServletModule getInstance() { return instance; }
70
71   private String _dirName;
72   private String _extName;
73
74   private ServletModuleFileEdit() {
75     super();
76
77     logger = new LoggerWrapper("ServletModule.FileEdit");
78
79     _dirName = configuration.getString("ServletModule.FileEdit.FileDirectory");
80     _extName = configuration.getString("ServletModule.FileEdit.ExtFilter");
81
82     templateListString =configuration.getString("ServletModule.FileEdit.ListTemplate");
83     templateObjektString =configuration.getString("ServletModule.FileEdit.ObjektTemplate");
84     templateConfirmString =configuration.getString("ServletModule.FileEdit.ConfirmTemplate");
85   }
86
87   public void list(HttpServletRequest req, HttpServletResponse res)
88       throws ServletModuleException
89   {
90 // fetch and deliver
91     try {
92       SimpleHash mergeData = new SimpleHash();
93       String offset = req.getParameter("offset");
94       if (offset==null || offset.equals("")) offset="0";
95       mergeData.put("offset",offset);
96       File dir = new File(_dirName);
97       System.out.println("DIRNAME: "+_dirName);
98       FileExtFilter extFilter = new FileExtFilter(_extName);
99       String[] dirEntries = dir.list(extFilter);
100       SimpleList theList = new SimpleList();
101       for ( int i = 0; i < dirEntries.length; ++i ) {
102         System.out.println(" FILE: "+dirEntries[i]);
103         theList.add(dirEntries[i]);
104       }
105       mergeData.put("filelist",theList);
106
107       HTMLTemplateProcessor.process(res, templateListString, mergeData, res.getWriter(), getLocale(req));
108     }
109     catch (IOException e) {throw new ServletModuleException(e.toString());}
110     catch (Exception e) {throw new ServletModuleException(e.toString());}
111   }
112
113   public void edit(HttpServletRequest req, HttpServletResponse res)
114       throws ServletModuleException
115   {
116     String filename = req.getParameter("filename");
117     if (filename == null) throw new ServletModuleException("No filename specified");
118     try {
119
120       File f = new File(_dirName, filename);
121       FileReader in = new FileReader(f);
122       StringWriter out = new StringWriter();
123
124       int c;
125       while ((c = in.read()) != -1)
126         out.write(c);
127       in.close();
128       out.close();
129       SimpleHash withValues = new SimpleHash();
130       withValues.put("text", out.toString());
131       withValues.put("filename", filename);
132
133
134       deliver(req, res, withValues, null, templateObjektString);
135     } catch (Exception e) {
136       throw new ServletModuleException(e.toString());
137     }
138   }
139
140   public void update(HttpServletRequest req, HttpServletResponse res)
141       throws ServletModuleException
142   {
143     String filename = req.getParameter("filename");
144     if (filename == null) throw new ServletModuleException("No filename specified");
145     try {
146
147       File f = new File(_dirName, filename);
148       StringReader in = new StringReader(req.getParameter("text"));
149       FileWriter out = new FileWriter(f);
150
151       int c;
152       while ((c = in.read()) != -1)
153         out.write(c);
154       in.close();
155       out.close();
156
157       edit(req, res);
158     } catch (Exception e) {
159       throw new ServletModuleException(e.toString());
160     }
161   }
162 }