Add AJAX handler to get all notifications.
[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
24 import net.pterodactylus.sone.web.WebInterface;
25 import net.pterodactylus.util.json.JsonArray;
26 import net.pterodactylus.util.json.JsonObject;
27 import net.pterodactylus.util.notify.Notification;
28
29 /**
30  * Returns all changed notifications.
31  *
32  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
33  */
34 public class GetNotificationsAjaxPage extends JsonPage {
35
36         /**
37          * TODO
38          *
39          * @param webInterface
40          */
41         public GetNotificationsAjaxPage(WebInterface webInterface) {
42                 super("ajax/getNotifications.ajax", webInterface);
43         }
44
45         //
46         // JSONPAGE METHODS
47         //
48
49         /**
50          * {@inheritDoc}
51          */
52         @Override
53         protected JsonObject createJsonObject(Request request) {
54                 List<Notification> notifications = new ArrayList<Notification>(webInterface.getNotifications().getChangedNotifications());
55                 Collections.sort(notifications, Notification.LAST_UPDATED_TIME_SORTER);
56                 JsonObject result = createSuccessJsonObject();
57                 JsonArray jsonNotifications = new JsonArray();
58                 for (Notification notification : notifications) {
59                         JsonObject jsonNotification = new JsonObject();
60                         jsonNotification.put("id", notification.getId());
61                         jsonNotification.put("text", notification.toString());
62                         jsonNotification.put("createdTime", notification.getCreatedTime());
63                         jsonNotification.put("lastUpdatedTime", notification.getLastUpdatedTime());
64                         jsonNotification.put("dismissable", notification.isDismissable());
65                         jsonNotifications.add(jsonNotification);
66                 }
67                 return result.put("notifications", jsonNotifications);
68         }
69
70         /**
71          * {@inheritDoc}
72          */
73         @Override
74         protected boolean needsFormPassword() {
75                 return false;
76         }
77
78 }