ServletModule exception cleanup + different error templates for admin + open postings...
[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.ServletModuleExc;
49 import mir.servlet.ServletModuleFailure;
50 import freemarker.template.SimpleHash;
51 import freemarker.template.SimpleList;
52
53 /*
54  *  ServletModuleFileEdit -
55  *  Allows one to do a basic edit of a file in a directory specified
56  *  in the config file.
57  *
58  * @author $Author: zapata $
59  * @version $Revision: 1.6 $ $Date: 2003/03/06 05:40:40 $
60  *
61  */
62
63 public class ServletModuleFileEdit extends ServletModule
64 {
65
66 // Singelton / Kontruktor
67
68   private static ServletModuleFileEdit instance =
69       new ServletModuleFileEdit();
70   public static ServletModule getInstance() { return instance; }
71
72   private String _dirName;
73   private String _extName;
74
75   private ServletModuleFileEdit() {
76     super();
77
78     logger = new LoggerWrapper("ServletModule.FileEdit");
79
80     _dirName = configuration.getString("ServletModule.FileEdit.FileDirectory");
81     _extName = configuration.getString("ServletModule.FileEdit.ExtFilter");
82
83     templateListString =configuration.getString("ServletModule.FileEdit.ListTemplate");
84     templateObjektString =configuration.getString("ServletModule.FileEdit.ObjektTemplate");
85     templateConfirmString =configuration.getString("ServletModule.FileEdit.ConfirmTemplate");
86   }
87
88   public void list(HttpServletRequest req, HttpServletResponse res) throws ServletModuleExc
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
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         theList.add(dirEntries[i]);
103       }
104       mergeData.put("filelist",theList);
105
106       HTMLTemplateProcessor.process(res, templateListString, mergeData, res.getWriter(), getLocale(req));
107     }
108     catch (Throwable e) {
109       throw new ServletModuleFailure(e);
110     }
111   }
112
113   public void edit(HttpServletRequest req, HttpServletResponse res) throws ServletModuleExc
114   {
115     String filename = req.getParameter("filename");
116     if (filename == null) throw new ServletModuleExc("No filename specified");
117     try {
118
119       File f = new File(_dirName, filename);
120       FileReader in = new FileReader(f);
121       StringWriter out = new StringWriter();
122
123       int c;
124       while ((c = in.read()) != -1)
125         out.write(c);
126       in.close();
127       out.close();
128       SimpleHash withValues = new SimpleHash();
129       withValues.put("text", out.toString());
130       withValues.put("filename", filename);
131
132
133       deliver(req, res, withValues, null, templateObjektString);
134     }
135     catch (Throwable e) {
136       throw new ServletModuleFailure(e);
137     }
138   }
139
140   public void update(HttpServletRequest req, HttpServletResponse res) throws ServletModuleExc
141   {
142     String filename = req.getParameter("filename");
143
144     if (filename == null) throw new ServletModuleExc("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     }
159     catch (Throwable e) {
160       throw new ServletModuleFailure(e);
161     }
162   }
163 }