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