Always use the current session to prevent timeouts.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / ajax / GetStatusAjaxPage.java
1 /*
2  * Sone - GetStatusAjaxPage.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.ArrayList;
23 import java.util.Collections;
24 import java.util.Date;
25 import java.util.HashSet;
26 import java.util.List;
27 import java.util.Set;
28
29 import net.pterodactylus.sone.data.Post;
30 import net.pterodactylus.sone.data.Reply;
31 import net.pterodactylus.sone.data.Sone;
32 import net.pterodactylus.sone.template.SoneAccessor;
33 import net.pterodactylus.sone.web.WebInterface;
34 import net.pterodactylus.util.json.JsonArray;
35 import net.pterodactylus.util.json.JsonObject;
36 import net.pterodactylus.util.notify.Notification;
37
38 /**
39  * The “get status” AJAX handler returns all information that is necessary to
40  * update the web interface in real-time.
41  *
42  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
43  */
44 public class GetStatusAjaxPage extends JsonPage {
45
46         /** Date formatter. */
47         private static final DateFormat dateFormat = new SimpleDateFormat("MMM d, yyyy, HH:mm:ss");
48
49         /**
50          * Creates a new “get status” AJAX handler.
51          *
52          * @param webInterface
53          *            The Sone web interface
54          */
55         public GetStatusAjaxPage(WebInterface webInterface) {
56                 super("getStatus.ajax", webInterface);
57         }
58
59         /**
60          * {@inheritDoc}
61          */
62         @Override
63         protected JsonObject createJsonObject(Request request) {
64                 /* load Sones. */
65                 boolean loadAllSones = Boolean.parseBoolean(request.getHttpRequest().getParam("loadAllSones", "true"));
66                 Set<Sone> sones = new HashSet<Sone>(Collections.singleton(getCurrentSone(request.getToadletContext())));
67                 if (loadAllSones) {
68                         sones.addAll(webInterface.getCore().getSones());
69                 }
70                 JsonArray jsonSones = new JsonArray();
71                 for (Sone sone : sones) {
72                         JsonObject jsonSone = createJsonSone(sone);
73                         jsonSones.add(jsonSone);
74                 }
75                 /* load notifications. */
76                 List<Notification> notifications = new ArrayList<Notification>(webInterface.getNotifications().getChangedNotifications());
77                 Set<Notification> removedNotifications = webInterface.getNotifications().getRemovedNotifications();
78                 Collections.sort(notifications, Notification.LAST_UPDATED_TIME_SORTER);
79                 JsonArray jsonNotifications = new JsonArray();
80                 for (Notification notification : notifications) {
81                         jsonNotifications.add(createJsonNotification(notification));
82                 }
83                 JsonArray jsonRemovedNotifications = new JsonArray();
84                 for (Notification notification : removedNotifications) {
85                         jsonRemovedNotifications.add(createJsonNotification(notification));
86                 }
87                 /* load new posts. */
88                 Set<Post> newPosts = webInterface.getNewPosts();
89                 JsonArray jsonPosts = new JsonArray();
90                 for (Post post : newPosts) {
91                         jsonPosts.add(post.getId());
92                 }
93                 /* load new replies. */
94                 Set<Reply> newReplies = webInterface.getNewReplies();
95                 JsonArray jsonReplies = new JsonArray();
96                 for (Reply reply : newReplies) {
97                         jsonReplies.add(reply.getId());
98                 }
99                 return createSuccessJsonObject().put("sones", jsonSones).put("notifications", jsonNotifications).put("removedNotifications", jsonRemovedNotifications).put("newPosts", jsonPosts).put("newReplies", jsonReplies);
100         }
101
102         /**
103          * {@inheritDoc}
104          */
105         @Override
106         protected boolean needsFormPassword() {
107                 return false;
108         }
109
110         //
111         // PRIVATE METHODS
112         //
113
114         /**
115          * Creates a JSON object from the given Sone.
116          *
117          * @param sone
118          *            The Sone to convert to a JSON object
119          * @return The JSON representation of the given Sone
120          */
121         private JsonObject createJsonSone(Sone sone) {
122                 JsonObject jsonSone = new JsonObject();
123                 jsonSone.put("id", sone.getId());
124                 jsonSone.put("name", SoneAccessor.getNiceName(sone));
125                 jsonSone.put("local", sone.getInsertUri() != null);
126                 jsonSone.put("status", webInterface.getCore().getSoneStatus(sone).name());
127                 jsonSone.put("modified", webInterface.getCore().isModifiedSone(sone));
128                 jsonSone.put("locked", webInterface.getCore().isLocked(sone));
129                 synchronized (dateFormat) {
130                         jsonSone.put("lastUpdated", dateFormat.format(new Date(sone.getTime())));
131                 }
132                 jsonSone.put("age", (System.currentTimeMillis() - sone.getTime()) / 1000);
133                 return jsonSone;
134         }
135
136         /**
137          * Creates a JSON object from the given notification.
138          *
139          * @param notification
140          *            The notification to create a JSON object
141          * @return The JSON object
142          */
143         private static JsonObject createJsonNotification(Notification notification) {
144                 JsonObject jsonNotification = new JsonObject();
145                 jsonNotification.put("id", notification.getId());
146                 jsonNotification.put("text", notification.toString());
147                 jsonNotification.put("createdTime", notification.getCreatedTime());
148                 jsonNotification.put("lastUpdatedTime", notification.getLastUpdatedTime());
149                 jsonNotification.put("dismissable", notification.isDismissable());
150                 return jsonNotification;
151         }
152
153 }