Return removed notifications as well.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / ajax / GetNotificationsAjaxPage.java
1 /*
2  * Sone - GetNotificationsAjaxPage.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.util.ArrayList;
21 import java.util.Collections;
22 import java.util.List;
23 import java.util.Set;
24
25 import net.pterodactylus.sone.web.WebInterface;
26 import net.pterodactylus.util.json.JsonArray;
27 import net.pterodactylus.util.json.JsonObject;
28 import net.pterodactylus.util.notify.Notification;
29
30 /**
31  * Returns all changed notifications.
32  *
33  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
34  */
35 public class GetNotificationsAjaxPage extends JsonPage {
36
37         /**
38          * TODO
39          *
40          * @param webInterface
41          */
42         public GetNotificationsAjaxPage(WebInterface webInterface) {
43                 super("ajax/getNotifications.ajax", webInterface);
44         }
45
46         //
47         // JSONPAGE METHODS
48         //
49
50         /**
51          * {@inheritDoc}
52          */
53         @Override
54         protected JsonObject createJsonObject(Request request) {
55                 List<Notification> notifications = new ArrayList<Notification>(webInterface.getNotifications().getChangedNotifications());
56                 Set<Notification> removedNotifications = webInterface.getNotifications().getRemovedNotifications();
57                 Collections.sort(notifications, Notification.LAST_UPDATED_TIME_SORTER);
58                 JsonObject result = createSuccessJsonObject();
59                 JsonArray jsonNotifications = new JsonArray();
60                 for (Notification notification : notifications) {
61                         jsonNotifications.add(createJsonNotification(notification));
62                 }
63                 JsonArray jsonRemovedNotifications = new JsonArray();
64                 for (Notification notification : removedNotifications) {
65                         jsonRemovedNotifications.add(createJsonNotification(notification));
66                 }
67                 return result.put("notifications", jsonNotifications).put("removedNotifications", jsonRemovedNotifications);
68         }
69
70         /**
71          * {@inheritDoc}
72          */
73         @Override
74         protected boolean needsFormPassword() {
75                 return false;
76         }
77
78         //
79         // PRIVATE METHODS
80         //
81
82         /**
83          * Creates a JSON object from the given notification.
84          *
85          * @param notification
86          *            The notification to create a JSON object
87          * @return The JSON object
88          */
89         private static JsonObject createJsonNotification(Notification notification) {
90                 JsonObject jsonNotification = new JsonObject();
91                 jsonNotification.put("id", notification.getId());
92                 jsonNotification.put("text", notification.toString());
93                 jsonNotification.put("createdTime", notification.getCreatedTime());
94                 jsonNotification.put("lastUpdatedTime", notification.getLastUpdatedTime());
95                 jsonNotification.put("dismissable", notification.isDismissable());
96                 return jsonNotification;
97         }
98
99 }