9284f0dfcdb03f759ed0b29c45a6b9e76281d51c
[Sone.git] / src / main / java / net / pterodactylus / sone / template / PostAccessor.java
1 /*
2  * Sone - PostAccessor.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 net.pterodactylus.sone.core.Core;
21 import net.pterodactylus.sone.data.Post;
22 import net.pterodactylus.util.template.DataProvider;
23 import net.pterodactylus.util.template.ReflectionAccessor;
24
25 /**
26  * Accessor for {@link Post} objects that adds additional properties:
27  * <dl>
28  * <dd>replies</dd>
29  * <dt>All replies to this post, sorted by time, oldest first</dt>
30  * </dl>
31  *
32  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
33  */
34 public class PostAccessor extends ReflectionAccessor {
35
36         /** The core to get the replies from. */
37         private final Core core;
38
39         /**
40          * Creates a new post accessor.
41          *
42          * @param core
43          *            The core to get the replies from
44          */
45         public PostAccessor(Core core) {
46                 this.core = core;
47         }
48
49         /**
50          * {@inheritDoc}
51          */
52         @Override
53         public Object get(DataProvider dataProvider, Object object, String member) {
54                 if ("replies".equals(member)) {
55                         return core.getReplies((Post) object);
56                 }
57                 return super.get(dataProvider, object, member);
58         }
59
60 }