Add “isFriend” and “isCurrent” properties.
[Sone.git] / src / main / java / net / pterodactylus / sone / template / SoneAccessor.java
1 /*
2  * Sone - SoneAccessor.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.data.Profile;
21 import net.pterodactylus.sone.data.Sone;
22 import net.pterodactylus.util.template.Accessor;
23 import net.pterodactylus.util.template.DataProvider;
24 import net.pterodactylus.util.template.ReflectionAccessor;
25
26 /**
27  * {@link Accessor} for {@link Sone}s that adds a couple of properties to Sones.
28  * <dl>
29  * <dt>niceName</dt>
30  * <dd>Will show a combination of first name, middle name, and last name, if
31  * available, otherwise the username of the Sone is returned.</dd>
32  * <dt>isFriend</dt>
33  * <dd>Will return {@code true} if the sone in question is a friend of the
34  * currently logged in Sone (as determined by accessing the “currentSone”
35  * variable of the given {@link DataProvider}).</dd>
36  * <dt>isCurrent</dt>
37  * <dd>Will return {@code true} if the sone in question is the currently logged
38  * in Sone.</dd>
39  * </dl>
40  *
41  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
42  */
43 public class SoneAccessor extends ReflectionAccessor {
44
45         /**
46          * {@inheritDoc}
47          */
48         @Override
49         public Object get(DataProvider dataProvider, Object object, String member) {
50                 Sone sone = (Sone) object;
51                 if (member.equals("niceName")) {
52                         Profile profile = sone.getProfile();
53                         String firstName = profile.getFirstName();
54                         String middleName = profile.getMiddleName();
55                         String lastName = profile.getLastName();
56                         if (firstName == null) {
57                                 if (lastName == null) {
58                                         return sone.getName();
59                                 }
60                                 return lastName;
61                         }
62                         return firstName + ((middleName != null) ? " " + middleName : "") + ((lastName != null) ? " " + lastName : "");
63                 } else if (member.equals("isFriend")) {
64                         Sone currentSone = (Sone) dataProvider.getData("currentSone");
65                         return currentSone.hasFriendSone(sone) ? true : null;
66                 } else if (member.equals("isCurrent")) {
67                         Sone currentSone = (Sone) dataProvider.getData("currentSone");
68                         return currentSone.equals(sone);
69                 }
70                 return super.get(dataProvider, object, member);
71         }
72
73 }