2 * Sone - GetReplyAjaxPage.java - Copyright © 2010 David Roden
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 package net.pterodactylus.sone.web.ajax;
20 import java.io.StringWriter;
22 import net.pterodactylus.sone.data.Reply;
23 import net.pterodactylus.sone.web.WebInterface;
24 import net.pterodactylus.util.io.Closer;
25 import net.pterodactylus.util.json.JsonObject;
26 import net.pterodactylus.util.template.Template;
27 import net.pterodactylus.util.template.TemplateException;
30 * This AJAX page returns the details of a reply.
32 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
34 public class GetReplyAjaxPage extends JsonPage {
36 /** The template to render. */
37 private final Template replyTemplate;
40 * Creates a new “get reply” page.
43 * The Sone web interface
44 * @param replyTemplate
45 * The template to render
47 public GetReplyAjaxPage(WebInterface webInterface, Template replyTemplate) {
48 super("ajax/getReply.ajax", webInterface);
49 this.replyTemplate = replyTemplate;
60 protected JsonObject createJsonObject(Request request) {
61 String replyId = request.getHttpRequest().getParam("reply");
62 Reply reply = webInterface.getCore().getReply(replyId);
63 if ((reply == null) || (reply.getSone() == null)) {
64 return createErrorJsonObject("invalid-reply-id");
66 replyTemplate.set("currentSone", getCurrentSone(request.getToadletContext()));
67 return createSuccessJsonObject().put("reply", createJsonReply(reply));
74 protected boolean needsFormPassword() {
83 * Creates a JSON representation of the given reply.
86 * The reply to convert
87 * @return The JSON representation of the reply
89 private JsonObject createJsonReply(Reply reply) {
90 JsonObject jsonReply = new JsonObject();
91 jsonReply.put("id", reply.getId());
92 jsonReply.put("postId", reply.getPost().getId());
93 jsonReply.put("soneId", reply.getSone().getId());
94 jsonReply.put("time", reply.getTime());
95 replyTemplate.set("reply", reply);
96 StringWriter stringWriter = new StringWriter();
98 replyTemplate.render(stringWriter);
99 } catch (TemplateException te1) {
100 /* TODO - shouldn’t happen. */
102 Closer.close(stringWriter);
104 return jsonReply.put("html", stringWriter.toString());