X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=source%2Fmircoders%2Fservlet%2FServletModuleMessage.java;h=4850e527419300939626a27a2c3e7f245133747f;hb=9459916c419db72849e328bb30e0047dc5130420;hp=f9b8a9351cc5cfc3570df47e33f4458bcbccf824;hpb=cf8cb5c3fc2602ecde7d53cd7bf7dc30eac6a6d1;p=mir.git diff --git a/source/mircoders/servlet/ServletModuleMessage.java b/source/mircoders/servlet/ServletModuleMessage.java index f9b8a935..4850e527 100755 --- a/source/mircoders/servlet/ServletModuleMessage.java +++ b/source/mircoders/servlet/ServletModuleMessage.java @@ -1,23 +1,49 @@ +/* + * Copyright (C) 2001, 2002 The Mir-coders group + * + * This file is part of Mir. + * + * Mir is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * Mir is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Mir; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + * In addition, as a special exception, The Mir-coders gives permission to link + * the code of this program with any library licensed under the Apache Software License, + * The Sun (tm) Java Advanced Imaging library (JAI), The Sun JIMI library + * (or with modified versions of the above that use the same license as the above), + * and distribute linked combinations including the two. You must obey the + * GNU General Public License in all respects for all of the code used other than + * the above mentioned libraries. If you modify this file, you may extend this + * exception to your version of the file, but you are not obligated to do so. + * If you do not wish to do so, delete this exception statement from your version. + */ package mircoders.servlet; -import java.io.*; -import java.net.*; -import javax.servlet.http.*; -import javax.servlet.*; -import freemarker.template.*; -import mir.servlet.*; -import mir.misc.*; -import mir.entity.*; -import mir.storage.*; -import mir.module.*; -import mircoders.module.*; -import mircoders.storage.*; +import mir.log.LoggerWrapper; +import mir.servlet.ServletModule; +import mir.servlet.ServletModuleFailure; +import mircoders.module.ModuleMessage; +import mircoders.storage.DatabaseMessages; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import java.util.Map; /** - * Title: ServletModuleMessage + * Title: ServletModuleMessage * Description: - * Copyright: Copyright (c) 2001 - * Company: Indymedia + * Copyright: Copyright (c) 2001-2002 + * Company: mir-coders * @author * @version 1.0 */ @@ -25,56 +51,25 @@ import mircoders.storage.*; public class ServletModuleMessage extends ServletModule { + private static ServletModuleMessage instance = new ServletModuleMessage(); + public static ServletModule getInstance() { return instance; } - // Singelton / Kontruktor - - private static ServletModuleMessage instance = new ServletModuleMessage(); - public static ServletModule getInstance() { return instance; } - - private ServletModuleMessage() { - theLog = Logfile.getInstance(MirConfig.getProp("Home") + MirConfig.getProp("ServletModule.Messages.Logfile")); - templateListString = MirConfig.getProp("ServletModule.Messages.ListTemplate"); - templateObjektString = MirConfig.getProp("ServletModule.Messages.ObjektTemplate"); - templateConfirmString = MirConfig.getProp("ServletModule.Messages.ConfirmTemplate"); - try { - mainModule = new ModuleMessage(DatabaseMessages.getInstance()); - } - catch (StorageObjectException e) { - theLog.printDebugInfo("ServletModuleMessage konnte nicht initialisiert werden"); - } - } - - public void list(HttpServletRequest req, HttpServletResponse res) - throws ServletModuleException - { - // fetch and deliver - try { - SimpleHash mergeData = new SimpleHash(); - String offset = req.getParameter("offset"); - if (offset==null || offset.equals("")) offset="0"; - mergeData.put("offset",offset); - EntityList theList = mainModule.getByWhereClause(null, "webdb_create desc", (new Integer(offset)).intValue()); - mergeData.put("contentlist",theList); - if(theList.getOrder()!=null) { - mergeData.put("order", theList.getOrder()); - mergeData.put("order_encoded", URLEncoder.encode(theList.getOrder())); - } - mergeData.put("count", (new Integer(theList.getCount())).toString()); - mergeData.put("from", (new Integer(theList.getFrom())).toString()); - mergeData.put("to", (new Integer(theList.getTo())).toString()); - if (theList.hasNextBatch()) - mergeData.put("next", (new Integer(theList.getNextBatch())).toString()); - if (theList.hasPrevBatch()) - mergeData.put("prev", (new Integer(theList.getPrevBatch())).toString()); - - // raus damit - HTMLTemplateProcessor.process(res, templateListString, mergeData, res.getWriter(), getLocale(req)); + private ServletModuleMessage() { + super(); + logger = new LoggerWrapper("ServletModule.Messages"); - } - catch (ModuleException e) {throw new ServletModuleException(e.toString());} - catch (IOException e) {throw new ServletModuleException(e.toString());} - catch (Exception e) {throw new ServletModuleException(e.toString());} - } + try { + definition = "internalMessage"; + mainModule = new ModuleMessage(); + } + catch (Throwable e) { + logger.error("initialization of ServletModuleMessage failed!: " + e.getMessage()); + throw new ServletModuleFailure(e); + } + } + protected void initializeNewObject(Map aNewObject, HttpServletRequest aRequest, HttpServletResponse aResponse) { + aNewObject.put("creator", ServletHelper.getUserName(aRequest)); + } }