Store filtered notifications in all templates.
[Sone.git] / src / main / java / net / pterodactylus / sone / template / NotificationManagerAccessor.java
1 /*
2  * Sone - NotificationManagerAccessor.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.template;
19
20 import java.util.ArrayList;
21 import java.util.Collections;
22 import java.util.List;
23
24 import net.pterodactylus.sone.data.Sone;
25 import net.pterodactylus.sone.notify.ListNotificationFilters;
26 import net.pterodactylus.util.notify.Notification;
27 import net.pterodactylus.util.notify.NotificationManager;
28 import net.pterodactylus.util.template.ReflectionAccessor;
29 import net.pterodactylus.util.template.TemplateContext;
30
31 /**
32  * Adds additional properties to a {@link NotificationManager}.
33  * <dl>
34  * <dd>all</dd>
35  * <dt>Returns all notifications, sorted by creation time, oldest first.</dt>
36  * <dd>new</dd>
37  * <dt>Returns all changed notifications, sorted by last updated time, newest
38  * first.</dt>
39  * </dl>
40  *
41  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
42  */
43 public class NotificationManagerAccessor extends ReflectionAccessor {
44
45         /**
46          * {@inheritDoc}
47          */
48         @Override
49         public Object get(TemplateContext templateContext, Object object, String member) {
50                 NotificationManager notificationManager = (NotificationManager) object;
51                 if ("all".equals(member)) {
52                         List<Notification> notifications = ListNotificationFilters.filterNotifications(new ArrayList<Notification>(notificationManager.getNotifications()), (Sone) templateContext.get("currentSone"));
53                         Collections.sort(notifications, Notification.CREATED_TIME_SORTER);
54                         return notifications;
55                 }
56                 return super.get(templateContext, object, member);
57         }
58
59 }