Add AJAX page that returns the contents of a reply.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / ajax / GetReplyAjaxPage.java
1 /*
2  * Sone - GetReplyAjaxPage.java - Copyright © 2010 David Roden
3  *
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.
8  *
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.
13  *
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/>.
16  */
17
18 package net.pterodactylus.sone.web.ajax;
19
20 import java.text.DateFormat;
21 import java.text.SimpleDateFormat;
22 import java.util.Date;
23
24 import net.pterodactylus.sone.data.Reply;
25 import net.pterodactylus.sone.template.SoneAccessor;
26 import net.pterodactylus.sone.web.WebInterface;
27 import net.pterodactylus.util.json.JsonObject;
28
29 /**
30  * This AJAX page returns the details of a reply.
31  *
32  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
33  */
34 public class GetReplyAjaxPage extends JsonPage {
35
36         /** Date formatter. */
37         private static final DateFormat dateFormat = new SimpleDateFormat("MMM d, yyyy, HH:mm:ss");
38
39         /**
40          * Creates a new “get reply” page.
41          *
42          * @param webInterface
43          */
44         public GetReplyAjaxPage(WebInterface webInterface) {
45                 super("ajax/getReply.ajax", webInterface);
46         }
47
48         //
49         // JSONPAGE METHODS
50         //
51
52         /**
53          * {@inheritDoc}
54          */
55         @Override
56         protected JsonObject createJsonObject(Request request) {
57                 String replyId = request.getHttpRequest().getParam("reply");
58                 Reply reply = webInterface.getCore().getReply(replyId);
59                 if ((reply == null) || (reply.getSone() == null)) {
60                         return createErrorJsonObject("invalid-reply-id");
61                 }
62                 synchronized (dateFormat) {
63                         return new JsonObject().put("success", true).put("sone-id", reply.getSone().getId()).put("sone-name", SoneAccessor.getNiceName(reply.getSone())).put("time", reply.getTime()).put("display-time", dateFormat.format(new Date(reply.getTime()))).put("text", reply.getText());
64                 }
65         }
66
67         /**
68          * {@inheritDoc}
69          */
70         @Override
71         protected boolean needsFormPassword() {
72                 return false;
73         }
74
75 }