2 * Sone - GetReplyAjaxPage.java - Copyright © 2010–2013 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.PostReply;
23 import net.pterodactylus.sone.data.Sone;
24 import net.pterodactylus.sone.web.WebInterface;
25 import net.pterodactylus.sone.web.page.FreenetRequest;
26 import net.pterodactylus.util.io.Closer;
27 import net.pterodactylus.util.json.JsonObject;
28 import net.pterodactylus.util.template.Template;
29 import net.pterodactylus.util.template.TemplateContext;
30 import net.pterodactylus.util.template.TemplateException;
33 * This AJAX page returns the details of a reply.
35 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
37 public class GetReplyAjaxPage extends JsonPage {
39 /** The template to render. */
40 private final Template replyTemplate;
43 * Creates a new “get reply” page.
46 * The Sone web interface
47 * @param replyTemplate
48 * The template to render
50 public GetReplyAjaxPage(WebInterface webInterface, Template replyTemplate) {
51 super("getReply.ajax", webInterface);
52 this.replyTemplate = replyTemplate;
63 protected JsonObject createJsonObject(FreenetRequest request) {
64 String replyId = request.getHttpRequest().getParam("reply");
65 PostReply reply = webInterface.getCore().getPostReply(replyId);
66 if ((reply == null) || (reply.getSone() == null)) {
67 return createErrorJsonObject("invalid-reply-id");
69 return createSuccessJsonObject().put("reply", createJsonReply(request, reply, getCurrentSone(request.getToadletContext())));
76 protected boolean needsFormPassword() {
85 * Creates a JSON representation of the given reply.
88 * The request being processed
90 * The reply to convert
92 * The currently logged in Sone (to store in the template)
93 * @return The JSON representation of the reply
95 private JsonObject createJsonReply(FreenetRequest request, PostReply reply, Sone currentSone) {
96 JsonObject jsonReply = new JsonObject();
97 jsonReply.put("id", reply.getId());
98 jsonReply.put("postId", reply.getPost().getId());
99 jsonReply.put("soneId", reply.getSone().getId());
100 jsonReply.put("time", reply.getTime());
101 StringWriter stringWriter = new StringWriter();
102 TemplateContext templateContext = webInterface.getTemplateContextFactory().createTemplateContext();
103 templateContext.set("core", webInterface.getCore());
104 templateContext.set("request", request);
105 templateContext.set("reply", reply);
106 templateContext.set("currentSone", currentSone);
108 replyTemplate.render(templateContext, stringWriter);
109 } catch (TemplateException te1) {
110 /* TODO - shouldn’t happen. */
112 Closer.close(stringWriter);
114 return jsonReply.put("html", stringWriter.toString());