organising imports
[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.StringReader;
38 import java.io.StringWriter;
39
40 import javax.servlet.http.HttpServletRequest;
41 import javax.servlet.http.HttpServletResponse;
42
43 import mir.log.LoggerWrapper;
44 import mir.misc.FileExtFilter;
45 import mir.misc.HTMLTemplateProcessor;
46 import mir.servlet.ServletModule;
47 import mir.servlet.ServletModuleExc;
48 import mir.servlet.ServletModuleFailure;
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.7 $ $Date: 2003/03/08 17:18:19 $
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) throws ServletModuleExc
88   {
89 // fetch and deliver
90     try {
91       SimpleHash mergeData = new SimpleHash();
92       String offset = req.getParameter("offset");
93       if (offset==null || offset.equals("")) offset="0";
94       mergeData.put("offset",offset);
95       File dir = new File(_dirName);
96
97       FileExtFilter extFilter = new FileExtFilter(_extName);
98       String[] dirEntries = dir.list(extFilter);
99       SimpleList theList = new SimpleList();
100       for ( int i = 0; i < dirEntries.length; ++i ) {
101         theList.add(dirEntries[i]);
102       }
103       mergeData.put("filelist",theList);
104
105       HTMLTemplateProcessor.process(res, templateListString, mergeData, res.getWriter(), getLocale(req));
106     }
107     catch (Throwable e) {
108       throw new ServletModuleFailure(e);
109     }
110   }
111
112   public void edit(HttpServletRequest req, HttpServletResponse res) throws ServletModuleExc
113   {
114     String filename = req.getParameter("filename");
115     if (filename == null) throw new ServletModuleExc("No filename specified");
116     try {
117
118       File f = new File(_dirName, filename);
119       FileReader in = new FileReader(f);
120       StringWriter out = new StringWriter();
121
122       int c;
123       while ((c = in.read()) != -1)
124         out.write(c);
125       in.close();
126       out.close();
127       SimpleHash withValues = new SimpleHash();
128       withValues.put("text", out.toString());
129       withValues.put("filename", filename);
130
131
132       deliver(req, res, withValues, null, templateObjektString);
133     }
134     catch (Throwable e) {
135       throw new ServletModuleFailure(e);
136     }
137   }
138
139   public void update(HttpServletRequest req, HttpServletResponse res) throws ServletModuleExc
140   {
141     String filename = req.getParameter("filename");
142
143     if (filename == null) throw new ServletModuleExc("No filename specified");
144     try {
145
146       File f = new File(_dirName, filename);
147       StringReader in = new StringReader(req.getParameter("text"));
148       FileWriter out = new FileWriter(f);
149
150       int c;
151       while ((c = in.read()) != -1)
152         out.write(c);
153       in.close();
154       out.close();
155
156       edit(req, res);
157     }
158     catch (Throwable e) {
159       throw new ServletModuleFailure(e);
160     }
161   }
162 }