Add accessor for Notifications.
[Sone.git] / src / main / java / net / pterodactylus / sone / template / NotificationAccessor.java
1 /*
2  * Sone - NotificationAccessor.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.io.IOException;
21 import java.io.StringWriter;
22
23 import net.pterodactylus.util.notify.Notification;
24 import net.pterodactylus.util.template.DataProvider;
25 import net.pterodactylus.util.template.ReflectionAccessor;
26
27 /**
28  * Adds additional properties to a {@link Notification}.
29  * <dl>
30  * <dd>render</dd>
31  * <dt>Returns the rendered notification.</dt>
32  * </dl>
33  *
34  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
35  */
36 public class NotificationAccessor extends ReflectionAccessor {
37
38         /**
39          * {@inheritDoc}
40          */
41         @Override
42         public Object get(DataProvider dataProvider, Object object, String member) {
43                 Notification notification = (Notification) object;
44                 if ("render".equals(member)) {
45                         StringWriter stringWriter = new StringWriter();
46                         try {
47                                 notification.render(stringWriter);
48                         } catch (IOException ioe1) {
49                                 /* TODO - log. */
50                                 /* ignore. */
51                         }
52                         return stringWriter.toString();
53                 }
54                 return super.get(dataProvider, object, member);
55         }
56
57 }