View Javadoc

1   /**
2    * This file Copyright (c) 2003-2012 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  import org.apache.commons.lang.StringUtils;
43  
44  import javax.jcr.RepositoryException;
45  import javax.servlet.http.HttpServletRequest;
46  import javax.servlet.http.HttpServletResponse;
47  import java.io.IOException;
48  
49  
50  /**
51   * Custom page handler for Forum.
52   * 
53   * @author gjoseph
54   * @version $Revision: $ ($Author: $)
55   */
56  public class ForumController extends PageMVCHandler {
57      private final ForumManager forumManager;
58  
59      /** for tests and when we have ioc! */
60      protected ForumController(String name, HttpServletRequest request, HttpServletResponse response, ForumManager forumManager) {
61          super(name, request, response);
62          this.forumManager = forumManager;
63      }
64  
65      public ForumController(String name, HttpServletRequest request, HttpServletResponse response) {
66          this(name, request, response, ForumManager.Factory.getInstance());
67      }
68  
69      @Override
70      public String getCommand() {
71          return mandatoryParam("command");
72      }
73  
74      /**
75       * executes the method named after the return value of getCommand().
76       */
77      @Override
78      public String execute(String command) {
79          // TODO : maybe review, this will try to find a command in the catalog first,
80          // while we'd really like to just use super.super.execute()
81          return super.execute(command);
82      }
83  
84      /**
85       * This implementation does a redirect:
86       * - to the view parameter, using it as a url.
87       * - to the referer if the view argument was null. (i.e. if the command method was void or returned null explicitely)
88       */
89      @Override
90      public void renderHtml(final String view) throws IOException {
91          final String targetUrl;
92          if (view == null) {
93              targetUrl = request.getHeader("referer");
94          } else {
95              targetUrl = view;
96          }
97  
98          mandatory(targetUrl, "referer or target view");
99          response.sendRedirect(targetUrl);
100     }
101 
102     @Override
103     public void init() {
104         // do not populate this with beanutils, as super.init() does
105     }
106 
107     // ---------------- commands - these methods are called through reflection --------------------
108     // the regular return value for these should be the name of the "view" to show, but we're reaching the limits here
109     // and return an absolute url instead. renderHtml() knows about this.
110     public String createThread() throws RepositoryException {
111         final String forumId = mandatoryParam("forumId");
112         final String threadTitle = mandatoryParam("threadTitle");
113         final String messageText = mandatoryParam("messageText");
114         Content newThread;
115 
116         if (!SecurityUtil.isAnonymous()) {
117             final String userId = getUserId();
118             newThread = forumManager.createThread(forumId, threadTitle, messageText, userId, false);
119         } else {
120             final String anonymousUsername = mandatoryParam("anonymousUsername");
121             newThread = forumManager.createThread(forumId, threadTitle, messageText, anonymousUsername, true);
122         }
123 
124         // TODO : maybe the construction of the url should be left to the user/dialog and we should just replace parameters like {0}
125         // TODO : use/improve the link api to handle parameters
126         final String targetPageUUID = mandatoryParam("targetPage");
127         final String targetPage = LinkUtil.createAbsoluteLink("website", targetPageUUID);
128         return targetPage + "?threadId=" + newThread.getUUID() + "&forumId=" + forumId;
129     }
130 
131     public String replyToThread() throws RepositoryException {
132         final String threadId = mandatoryParam("threadId");
133         final String messageTitle = param("messageTitle");
134         final String messageText = mandatoryParam("messageText");
135         final String inReplyTo = param("inReplyTo");
136 
137         if (!SecurityUtil.isAnonymous()) {
138             final String userId = getUserId();
139             forumManager.replyToThread(threadId, inReplyTo, messageTitle, messageText, userId, false);
140         } else {
141             final String anonymousUsername = mandatoryParam("anonymousUsername");
142             forumManager.replyToThread(threadId, inReplyTo, messageTitle, messageText, anonymousUsername, true);
143         }
144 
145         final String targetPageUUID = param("targetPage");
146         if (StringUtils.isNotEmpty(targetPageUUID)) {
147             final String targetPage = LinkUtil.createAbsoluteLink("website", targetPageUUID);
148             return targetPage + "?threadId=" + threadId;
149         } else {
150             return null;
151         }
152 
153     }
154 
155     // TODO : use UUID ?
156     protected String getUserId() {
157         return MgnlContext.getUser().getName();
158     }
159 
160     private String param(String paramName) {
161         final String value = request.getParameter(paramName);
162         return StringUtils.stripToNull(value);
163     }
164 
165     private String mandatoryParam(String paramName) {
166         final String value = param(paramName);
167         mandatory(value, paramName);
168         return value;
169     }
170 
171     private void mandatory(String s, String desc) {
172         if (StringUtils.isEmpty(s)) {
173             throw new RuntimeException(desc + " is mandatory and is missing from the request.");
174         }
175     }
176 }