89ca6f464daba42f3457a615cc43fdad41091a68
[mir.git] / source / mircoders / localizer / basic / MirBasicArticlePostingHandler.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  any library licensed under the Apache Software License,
22  * The Sun (tm) Java Advanced Imaging library (JAI), The Sun JIMI library
23  * (or with modified versions of the above that use the same license as the above),
24  * and distribute linked combinations including the two.  You must obey the
25  * GNU General Public License in all respects for all of the code used other than
26  * the above mentioned libraries.  If you modify this file, you may extend this
27  * exception to your version of the file, but you are not obligated to do so.
28  * If you do not wish to do so, delete this exception statement from your version.
29  */
30
31 package mircoders.localizer.basic;
32
33 import mir.entity.Entity;
34 import mir.misc.StringUtil;
35 import mir.session.*;
36 import mircoders.entity.EntityContent;
37 import mircoders.global.MirGlobal;
38 import mircoders.media.MediaUploadProcessor;
39 import mircoders.module.ModuleArticleType;
40 import mircoders.module.ModuleContent;
41 import mircoders.module.ModuleMediafolder;
42 import mircoders.storage.*;
43
44 import java.util.*;
45
46 /**
47  * Extensible handler for open article postings
48  */
49
50 public class MirBasicArticlePostingHandler extends MirBasicPostingSessionHandler {
51   protected ModuleContent contentModule = new ModuleContent();
52   protected DatabaseContentToMedia contentToMedia = DatabaseContentToMedia.getInstance();
53   protected DatabaseContent contentDatabase = DatabaseContent.getInstance();
54
55   public MirBasicArticlePostingHandler() {
56     this(false);
57   }
58
59   public MirBasicArticlePostingHandler(boolean aPersistentUploadedFiles) {
60     super(aPersistentUploadedFiles);
61
62     setResponseGenerators(
63       configuration.getString("Localizer.OpenSession.article.EditTemplate"),
64       configuration.getString("Localizer.OpenSession.article.DupeTemplate"),
65       configuration.getString("Localizer.OpenSession.article.UnsupportedMediaTemplate"),
66       configuration.getString("Localizer.OpenSession.article.DoneTemplate"));
67   }
68   /**
69    * {@inheritDoc}
70    */
71   protected void initializeResponseData(Request aRequest, Session aSession, Response aResponse) throws SessionExc, SessionFailure {
72     super.initializeResponseData(aRequest, aSession, aResponse);
73
74     Iterator i = DatabaseContent.getInstance().getFields().iterator();
75     while (i.hasNext()) {
76       String field = (String) i.next();
77       aResponse.setResponseValue(field, aRequest.getParameter(field));
78     }
79     aResponse.setResponseValue("to_topic", aRequest.getParameters("to_topic"));
80   }
81
82   /**
83    * {@inheritDoc}
84    */
85   public void validate(List aResults, Request aRequest, Session aSession) throws SessionExc, SessionFailure {
86     super.validate(aResults, aRequest, aSession);
87
88     ValidationHelper.testFieldEntered(aRequest, "title", "validationerror.missing", aResults);
89     ValidationHelper.testFieldEntered(aRequest, "description", "validationerror.missing", aResults);
90     ValidationHelper.testFieldEntered(aRequest, "creator", "validationerror.missing", aResults);
91     ValidationHelper.testFieldEntered(aRequest, "content_data", "validationerror.missing", aResults);
92   }
93
94   /**
95    * Called just before the article is stored in the database.
96    * The last opportunity to alter fields.
97    */
98   public void finalizeArticle(Request aRequest, Session aSession, EntityContent anArticle) throws SessionExc, SessionFailure {
99     try {
100       anArticle.setFieldValue("is_published", "1");
101       anArticle.setFieldValue("is_produced", "0");
102       anArticle.setFieldValue("date", StringUtil.date2webdbDate(new GregorianCalendar()));
103       anArticle.setFieldValue("is_html", "0");
104       anArticle.setFieldValue("publish_path", StringUtil.webdbDate2path(anArticle. getFieldValue("date")));
105
106       ModuleArticleType module = new ModuleArticleType();
107       anArticle.setFieldValue("to_article_type", module.articleTypeIdForName(configuration.getString("Localizer.OpenSession.article.DefaultArticleType")));
108       anArticle.setFieldValue("to_publisher", "1");
109     }
110     catch (Throwable t) {
111       throw new SessionFailure(t);
112     }
113   }
114
115   /**
116    * Extracts topics from the request and associated the
117    * article to them.
118    */
119   public void setArticleTopics(Request aRequest, Session aSession, EntityContent anArticle) throws SessionExc, SessionFailure {
120     // topics:
121     List topics = aRequest.getParameters("to_topic");
122     if (topics.size() > 0) {
123       try {
124         DatabaseContentToTopics.getInstance().setTopics(anArticle.getId(), topics);
125       }
126       catch (Throwable e) {
127         logger.error("setting content_x_topic failed");
128         throw new SessionFailure("MirBasicArticlePostingHandler: can't set topics: " + e.toString(), e);
129       }
130     }
131   }
132
133   public void preProcessRequest(Request aRequest, Session aSession) throws SessionExc, SessionFailure {
134     try {
135       String id;
136       Map values = getIntersectingValues(aRequest, DatabaseContent.getInstance());
137
138       EntityContent article = (EntityContent) contentModule.createNew();
139       article.setFieldValues(values);
140
141       finalizeArticle(aRequest, aSession, article);
142       id = article.insert();
143       if (id == null) {
144         logger.info("Duplicate article rejected");
145         throw new DuplicatePostingExc("Duplicate article rejected");
146       }
147       aSession.setAttribute("content", article);
148
149       setArticleTopics(aRequest, aSession, article);
150     }
151     catch (Throwable t) {
152       throw new SessionFailure(t);
153     }
154   }
155
156   public void processAttachment(Request aRequest, Session aSession, Attachment aFile) throws SessionExc, SessionFailure {
157     try {
158       Map values = new HashMap();
159       values.put("creator", aRequest.getParameter("creator"));
160       values.putAll(aFile.getAllAttributes());
161       values.put("creator", aRequest.getParameter("creator"));
162       values.put("to_publisher", "0");
163       values.put("is_published", "1");
164       values.put("is_produced", "1");
165       ModuleMediafolder module = new ModuleMediafolder();
166       values.put("to_media_folder", module.mediaFolderIdForName(configuration.getString("Localizer.OpenSession.article.DefaultMediaFolder")));
167
168       Entity mediaItem = MediaUploadProcessor.processMediaUpload(aFile, values);
169       mediaItem.update();
170       contentToMedia.addMedia(((EntityContent) aSession.getAttribute("content")).getId(), mediaItem.getId());
171     }
172     catch (Throwable t) {
173       throw new SessionFailure(t);
174     }
175   }
176
177   public void postProcessRequest(Request aRequest, Session aSession) throws SessionExc, SessionFailure {
178     EntityContent article = (EntityContent) aSession.getAttribute("content");
179
180     MirGlobal.abuse().checkArticle(article, aRequest, null);
181     try {
182       MirGlobal.localizer().openPostings().afterContentPosting(article);
183     }
184     catch (Throwable t) {
185       throw new SessionFailure(t);
186     }
187     logger.info("article posted");
188   };
189
190 }