X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=source%2Fmircoders%2Fservlet%2FServletModuleUploadedMedia.java;h=ba34a6392260daaab9be2c2154ee3db9b0f0942d;hb=a0e0629d9b38c2eb4eba6d9420ccbc6d1b44ab00;hp=4090d15ffbf3504ea6ddcd653aba354fc5d69c31;hpb=b8a81294224748fc3461450dbe4124f4b70d8bcf;p=mir.git diff --git a/source/mircoders/servlet/ServletModuleUploadedMedia.java b/source/mircoders/servlet/ServletModuleUploadedMedia.java index 4090d15f..ba34a639 100755 --- a/source/mircoders/servlet/ServletModuleUploadedMedia.java +++ b/source/mircoders/servlet/ServletModuleUploadedMedia.java @@ -1,44 +1,83 @@ +/* + * 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 freemarker.template.SimpleHash; -import freemarker.template.SimpleList; +import java.io.InputStream; +import java.net.URLEncoder; +import java.util.HashMap; +import java.util.Iterator; +import java.util.List; +import java.util.Map; +import java.util.Vector; + +import javax.servlet.ServletContext; +import javax.servlet.ServletOutputStream; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import javax.servlet.http.HttpSession; + +import mir.config.MirPropertiesConfiguration; import mir.entity.Entity; import mir.entity.EntityList; +import mir.log.LoggerWrapper; import mir.media.MediaHelper; import mir.media.MirMedia; -import mir.media.MirMediaException; -import mir.media.MirMediaUserException; -import mir.misc.MirConfig; -import mir.misc.MpRequest; -import mir.misc.StringUtil; -import mir.misc.WebdbMultipartRequest; -import mir.module.ModuleException; import mir.servlet.ServletModule; -import mir.servlet.ServletModuleException; -import mir.servlet.ServletModuleUserException; -import mir.storage.Database; -import mir.storage.StorageObjectException; +import mir.servlet.ServletModuleExc; +import mir.servlet.ServletModuleFailure; +import mir.servlet.ServletModuleUserExc; +import mir.session.UploadedFile; +import mir.util.ExceptionFunctions; +import mir.util.HTTPParsedRequest; +import mircoders.entity.EntityComment; +import mircoders.entity.EntityContent; +import mircoders.entity.EntityUploadedMedia; import mircoders.entity.EntityUsers; -import mircoders.storage.DatabaseMediaType; +import mircoders.media.MediaUploadProcessor; +import mircoders.module.*; +import mircoders.storage.DatabaseComment; +import mircoders.storage.DatabaseContent; import mircoders.storage.DatabaseMediafolder; -import mircoders.media.MediaRequest; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import javax.servlet.http.HttpSession; -import javax.servlet.ServletContext; +import org.apache.commons.fileupload.FileItem; -import java.io.IOException; -import java.net.URLEncoder; -import java.util.GregorianCalendar; -import java.util.HashMap; +import freemarker.template.SimpleHash; +import freemarker.template.SimpleList; /* * ServletModuleBilder - * liefert HTML fuer Bilder * - * - * @author RK + * @version $Id: ServletModuleUploadedMedia.java,v 1.28 2003/04/29 02:36:51 zapata Exp $ + * @author RK, the mir-coders group */ public abstract class ServletModuleUploadedMedia @@ -50,55 +89,133 @@ public abstract class ServletModuleUploadedMedia return null; } + public ServletModuleUploadedMedia() { + super(); + logger = new LoggerWrapper("ServletModule.UploadedMedia"); + } + public void insert(HttpServletRequest req, HttpServletResponse res) - throws ServletModuleException, ServletModuleUserException { + throws ServletModuleExc, ServletModuleUserExc { try { - WebdbMultipartRequest mp = new WebdbMultipartRequest(req); + HTTPParsedRequest parsedRequest = new HTTPParsedRequest(req, + configuration.getString("Mir.DefaultEncoding"), + configuration.getInt("MaxMediaUploadSize")*1024, + configuration.getString("TempDir")); + EntityUsers user = _getUser(req); - EntityList mediaList = - new MediaRequest(mp, user.getId()).getMedia(false, false); - list(req, res); - } - catch (MirMediaUserException e) { - throw new ServletModuleUserException(e.getMsg()); - } - catch (MirMediaException e) { - throw new ServletModuleException( - "upload -- media handling exception " + e.toString()); + Map mediaValues = new HashMap(); + + mediaValues.put("to_publisher", _getUser(req).getId()); + + Iterator i = mainModule.getStorageObject().getFields().iterator(); + while (i.hasNext()) { + String field = (String) i.next(); + String value = parsedRequest.getParameter(field); + if (value!=null) + mediaValues.put(field, value); + } + + List mediaList = new Vector(); + + i = parsedRequest.getFiles().iterator(); + while (i.hasNext()) { + UploadedFile file = new mir.session.CommonsUploadedFileAdapter((FileItem) i.next()); + + String suffix = file.getFieldName().substring(5); + mediaValues.put("title", parsedRequest.getParameter("media_title" + suffix)); + + mediaList.add(MediaUploadProcessor.processMediaUpload(file, mediaValues)); + } + + String articleid = parsedRequest.getParameter("articleid"); + String commentid = parsedRequest.getParameter("commentid"); + + if (articleid!=null) { + EntityContent entContent = (EntityContent) DatabaseContent.getInstance().selectById(articleid); + + i=mediaList.iterator(); + + while (i.hasNext()) { + entContent.attach(((EntityUploadedMedia) i.next()).getId()); + } + + ((ServletModuleContent) ServletModuleContent.getInstance())._showObject(articleid, req, res); + + return; + } + + if (commentid!=null) { + EntityComment comment = (EntityComment) DatabaseComment.getInstance().selectById(commentid); + + i=mediaList.iterator(); + + while (i.hasNext()) { + comment.attach( ( (EntityUploadedMedia) i.next()).getId()); + } + + ((ServletModuleComment) ServletModuleComment.getInstance()).showComment(commentid, req, res); + + return; + } + + SimpleHash mergeData = new SimpleHash(); + SimpleHash popups = new SimpleHash(); + mergeData.put("contentlist", mir.generator.FreemarkerGenerator.makeAdapter(mediaList)); + + mergeData.put("count", Integer.toString(mediaList.size())); + mergeData.put("from", "1"); + mergeData.put("to", Integer.toString(mediaList.size())); + + //fetch the popups + popups.put("mediafolderPopupData", DatabaseMediafolder.getInstance().getPopupData()); + // raus damit + deliver(req, res, mergeData, popups, templateListString); } - catch (IOException e) { - throw new ServletModuleException("upload -- ioexception " + e.toString()); + catch (Throwable t) { + Throwable cause = ExceptionFunctions.traceCauseException(t); + + if (cause instanceof ModuleMediaType.UnsupportedMimeTypeExc) { + throw new ServletModuleUserExc("media.error.unsupportedformat", new String[] {}); + } + throw new ServletModuleFailure("ServletModuleUploadedMedia.insert: " + t.toString(), t); } } - public void update(HttpServletRequest req, HttpServletResponse res) throws ServletModuleException { + public void update(HttpServletRequest req, HttpServletResponse res) throws ServletModuleExc { try { - WebdbMultipartRequest mp = new WebdbMultipartRequest(req); - HashMap parameters = mp.getParameters(); - + HTTPParsedRequest parsedRequest = new HTTPParsedRequest(req, + configuration.getString("Mir.DefaultEncoding"), + configuration.getInt("MaxMediaUploadSize")*1024, + configuration.getString("TempDir")); EntityUsers user = _getUser(req); - parameters.put("to_publisher", user.getId()); - parameters.put("is_produced", "0"); - if (!parameters.containsKey("is_published")) - parameters.put("is_published", "0"); + Map mediaValues = new HashMap(); - String id = mainModule.set(parameters); - theLog.printError("media ID" + id); + Iterator i = mainModule.getStorageObject().getFields().iterator(); + while (i.hasNext()) { + String field = (String) i.next(); + String value = parsedRequest.getParameter(field); + if (value!=null) + mediaValues.put(field, value); + } + + mediaValues.put("to_publisher", user.getId()); + mediaValues.put("is_produced", "0"); + if (!mediaValues.containsKey("is_published")) + mediaValues.put("is_published", "0"); + + String id = mainModule.set(mediaValues); + logger.debug("update: media ID = " + id); _edit(id, req, res); } - catch (IOException e) { - throw new ServletModuleException("upload -- ioexception " + e.toString()); - } - catch (ModuleException e) { - throw new ServletModuleException("upload -- moduleexception " + e.toString()); + catch (Throwable e) { + throw new ServletModuleFailure("upload -- exception " + e.toString(), e); } } - public void list(HttpServletRequest req, HttpServletResponse res) - throws ServletModuleException { + public void list(HttpServletRequest req, HttpServletResponse res) throws ServletModuleExc { // Parameter auswerten SimpleHash mergeData = new SimpleHash(); SimpleHash popups = new SimpleHash(); @@ -117,11 +234,11 @@ public abstract class ServletModuleUploadedMedia mergeData.put("offset", offset); String order = req.getParameter("order"); - if (order == null) order = "webdb_lastchange desc"; + if (order == null || order.equals("")) order = "webdb_lastchange desc"; // if in connection mode to content - String cid = req.getParameter("cid"); - mergeData.put("cid", cid); + mergeData.put("articleid", req.getParameter("articleid")); + mergeData.put("commentid", req.getParameter("commentid")); // sql basteln @@ -142,7 +259,7 @@ public abstract class ServletModuleUploadedMedia } //theLog.printDebugInfo("sql-whereclause: " + whereClause + " order: " + order + " offset: " + offset); - // fetch und ausliefern + // fetch and deliver try { if (query_text != null || query_is_published != null || query_media_folder != null) { EntityList theList = mainModule.getByWhereClause(whereClause, order, (new Integer(offset)).intValue(), 10); @@ -161,35 +278,36 @@ public abstract class ServletModuleUploadedMedia mergeData.put("prev", (new Integer(theList.getPrevBatch())).toString()); } } - //fetch the popups popups.put("mediafolderPopupData", DatabaseMediafolder.getInstance().getPopupData()); - // raus damit + deliver(req, res, mergeData, popups, templateListString); } - catch (ModuleException e) { - throw new ServletModuleException(e.toString()); - } - catch (Exception e) { - throw new ServletModuleException(e.toString()); + catch (Throwable e) { + throw new ServletModuleFailure(e); } } - public void add(HttpServletRequest req, HttpServletResponse res) - throws ServletModuleException { + public void add(HttpServletRequest req, HttpServletResponse res) throws ServletModuleExc { try { SimpleHash mergeData = new SimpleHash(); - mergeData.put("new", "1"); SimpleHash popups = new SimpleHash(); - popups.put("mediafolderPopupData", DatabaseMediafolder.getInstance().getPopupData()); - String maxMedia = MirConfig.getProp("ServletModule.OpenIndy.MaxMediaUploadItems"); + String maxMedia = MirPropertiesConfiguration.instance().getString("ServletModule.OpenIndy.MaxMediaUploadItems"); String numOfMedia = req.getParameter("medianum"); - if(numOfMedia==null||numOfMedia.equals("")){ + + mergeData.put("new", "1"); + mergeData.put("articleid", req.getParameter("articleid")); + mergeData.put("commentid", req.getParameter("commentid")); + + popups.put("mediafolderPopupData", DatabaseMediafolder.getInstance().getPopupData()); + + if (numOfMedia==null || numOfMedia.equals("")) { numOfMedia="1"; - } else if(Integer.parseInt(numOfMedia) > Integer.parseInt(maxMedia)) { + } + else if(Integer.parseInt(numOfMedia) > Integer.parseInt(maxMedia)) { numOfMedia = maxMedia; } - + int mediaNum = Integer.parseInt(numOfMedia); SimpleList mediaFields = new SimpleList(); for(int i =0; i