Store a reply’s known status in the reply itself.
[Sone.git] / src / main / java / net / pterodactylus / sone / template / ReplyAccessor.java
index d5fd7e4..7b89713 100644 (file)
 package net.pterodactylus.sone.template;
 
 import net.pterodactylus.sone.core.Core;
+import net.pterodactylus.sone.data.PostReply;
 import net.pterodactylus.sone.data.Reply;
 import net.pterodactylus.sone.data.Sone;
-import net.pterodactylus.util.template.DataProvider;
+import net.pterodactylus.util.template.Accessor;
 import net.pterodactylus.util.template.ReflectionAccessor;
+import net.pterodactylus.util.template.TemplateContext;
 
 /**
- * TODO
+ * {@link Accessor} implementation that adds a couple of properties to
+ * {@link Reply}s.
  *
  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
  */
 public class ReplyAccessor extends ReflectionAccessor {
 
+       /** The core. */
        private final Core core;
 
+       /**
+        * Creates a new reply accessor.
+        *
+        * @param core
+        *            The core
+        */
        public ReplyAccessor(Core core) {
                this.core = core;
        }
@@ -40,15 +50,19 @@ public class ReplyAccessor extends ReflectionAccessor {
         * {@inheritDoc}
         */
        @Override
-       public Object get(DataProvider dataProvider, Object object, String member) {
-               Reply reply = (Reply) object;
+       public Object get(TemplateContext templateContext, Object object, String member) {
+               PostReply reply = (PostReply) object;
                if ("likes".equals(member)) {
                        return core.getLikes(reply);
                } else if (member.equals("liked")) {
-                       Sone currentSone = (Sone) dataProvider.getData("currentSone");
+                       Sone currentSone = (Sone) templateContext.get("currentSone");
                        return (currentSone != null) && (currentSone.isLikedReplyId(reply.getId()));
+               } else if (member.equals("new")) {
+                       return !reply.isKnown();
+               } else if (member.equals("loaded")) {
+                       return reply.getSone() != null;
                }
-               return super.get(dataProvider, object, member);
+               return super.get(templateContext, object, member);
        }
 
 }