View Javadoc

1   /**
2    * This file Copyright (c) 2003-2011 Magnolia International
3    * Ltd.  (http://www.magnolia-cms.com). All rights reserved.
4    *
5    *
6    * This file is dual-licensed under both the Magnolia
7    * Network Agreement and the GNU General Public License.
8    * You may elect to use one or the other of these licenses.
9    *
10   * This file is distributed in the hope that it will be
11   * useful, but AS-IS and WITHOUT ANY WARRANTY; without even the
12   * implied warranty of MERCHANTABILITY or FITNESS FOR A
13   * PARTICULAR PURPOSE, TITLE, or NONINFRINGEMENT.
14   * Redistribution, except as permitted by whichever of the GPL
15   * or MNA you select, is prohibited.
16   *
17   * 1. For the GPL license (GPL), you can redistribute and/or
18   * modify this file under the terms of the GNU General
19   * Public License, Version 3, as published by the Free Software
20   * Foundation.  You should have received a copy of the GNU
21   * General Public License, Version 3 along with this program;
22   * if not, write to the Free Software Foundation, Inc., 51
23   * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
24   *
25   * 2. For the Magnolia Network Agreement (MNA), this file
26   * and the accompanying materials are made available under the
27   * terms of the MNA which accompanies this distribution, and
28   * is available at http://www.magnolia-cms.com/mna.html
29   *
30   * Any modifications to this file must keep this entire header
31   * intact.
32   *
33   */
34  package info.magnolia.module.forum.frontend;
35  
36  import info.magnolia.cms.core.Content;
37  import info.magnolia.cms.security.SecurityUtil;
38  import info.magnolia.context.MgnlContext;
39  import info.magnolia.link.LinkUtil;
40  import info.magnolia.module.admininterface.PageMVCHandler;
41  import info.magnolia.module.forum.ForumManager;
42  
43  import java.io.IOException;
44  
45  import javax.jcr.RepositoryException;
46  import javax.servlet.http.HttpServletRequest;
47  import javax.servlet.http.HttpServletResponse;
48  
49  import org.apache.commons.lang.StringUtils;
50  
51  /**
52   * Custom page handler for Forum.
53   * 
54   * @author gjoseph
55   * @version $Revision: $ ($Author: $)
56   */
57  public class ForumController extends PageMVCHandler {
58      private final ForumManager forumManager;
59  
60      /** for tests and when we have ioc! */
61      protected ForumController(String name, HttpServletRequest request, HttpServletResponse response, ForumManager forumManager) {
62          super(name, request, response);
63          this.forumManager = forumManager;
64      }
65  
66      public ForumController(String name, HttpServletRequest request, HttpServletResponse response) {
67          this(name, request, response, ForumManager.Factory.getInstance());
68      }
69  
70      @Override
71      public String getCommand() {
72          return mandatoryParam("command");
73      }
74  
75      /**
76       * executes the method named after the return value of getCommand().
77       */
78      @Override
79      public String execute(String command) {
80          // TODO : maybe review, this will try to find a command in the catalog first,
81          // while we'd really like to just use super.super.execute()
82          return super.execute(command);
83      }
84  
85      /**
86       * This implementation does a redirect:
87       * - to the view parameter, using it as a url.
88       * - to the referer if the view argument was null. (i.e. if the command method was void or returned null explicitely)
89       */
90      @Override
91      public void renderHtml(final String view) throws IOException {
92          final String targetUrl;
93          if (view == null) {
94              targetUrl = request.getHeader("referer");
95          } else {
96              targetUrl = view;
97          }
98  
99          mandatory(targetUrl, "referer or target view");
100         response.sendRedirect(targetUrl);
101     }
102 
103     @Override
104     public void init() {
105         // do not populate this with beanutils, as super.init() does
106     }
107 
108     // ---------------- commands - these methods are called through reflection --------------------
109     // the regular return value for these should be the name of the "view" to show, but we're reaching the limits here
110     // and return an absolute url instead. renderHtml() knows about this.
111     public String createThread() throws RepositoryException {
112         final String forumId = mandatoryParam("forumId");
113         final String threadTitle = mandatoryParam("threadTitle");
114         final String messageText = mandatoryParam("messageText");
115         Content newThread;
116 
117         if (!SecurityUtil.isAnonymous()) {
118             final String userId = getUserId();
119             newThread = forumManager.createThread(forumId, threadTitle, messageText, userId, false);
120         } else {
121             final String anonymousUsername = mandatoryParam("anonymousUsername");
122             newThread = forumManager.createThread(forumId, threadTitle, messageText, anonymousUsername, true);
123         }
124 
125         // TODO : maybe the construction of the url should be left to the user/dialog and we should just replace parameters like {0}
126         // TODO : use/improve the link api to handle parameters
127         final String targetPageUUID = mandatoryParam("targetPage");
128         final String targetPage = LinkUtil.createAbsoluteLink("website", targetPageUUID);
129         return targetPage + "?threadId=" + newThread.getUUID() + "&forumId=" + forumId;
130     }
131 
132     public String replyToThread() throws RepositoryException {
133         final String threadId = mandatoryParam("threadId");
134         final String messageTitle = param("messageTitle");
135         final String messageText = mandatoryParam("messageText");
136         final String inReplyTo = param("inReplyTo");
137 
138         if (!SecurityUtil.isAnonymous()) {
139             final String userId = getUserId();
140             forumManager.replyToThread(threadId, inReplyTo, messageTitle, messageText, userId, false);
141         } else {
142             final String anonymousUsername = mandatoryParam("anonymousUsername");
143             forumManager.replyToThread(threadId, inReplyTo, messageTitle, messageText, anonymousUsername, true);
144         }
145 
146         final String targetPageUUID = param("targetPage");
147         if (StringUtils.isNotEmpty(targetPageUUID)) {
148             final String targetPage = LinkUtil.createAbsoluteLink("website", targetPageUUID);
149             return targetPage + "?threadId=" + threadId;
150         } else {
151             return null;
152         }
153 
154     }
155 
156     // TODO : use UUID ?
157     protected String getUserId() {
158         return MgnlContext.getUser().getName();
159     }
160 
161     private String param(String paramName) {
162         final String value = request.getParameter(paramName);
163         return StringUtils.stripToNull(value);
164     }
165 
166     private String mandatoryParam(String paramName) {
167         final String value = param(paramName);
168         mandatory(value, paramName);
169         return value;
170     }
171 
172     private void mandatory(String s, String desc) {
173         if (StringUtils.isEmpty(s)) {
174             throw new RuntimeException(desc + " is mandatory and is missing from the request.");
175         }
176     }
177 }