Use web package from utils.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / ajax / LikeAjaxPage.java
index 23a5aec..e4d168f 100644 (file)
@@ -20,6 +20,7 @@ package net.pterodactylus.sone.web.ajax;
 import net.pterodactylus.sone.data.Post;
 import net.pterodactylus.sone.data.Sone;
 import net.pterodactylus.sone.web.WebInterface;
+import net.pterodactylus.sone.web.page.FreenetRequest;
 import net.pterodactylus.util.json.JsonObject;
 
 /**
@@ -36,31 +37,33 @@ public class LikeAjaxPage extends JsonPage {
         *            The Sone web interface
         */
        public LikeAjaxPage(WebInterface webInterface) {
-               super("ajax/like.ajax", webInterface);
+               super("like.ajax", webInterface);
        }
 
        /**
         * {@inheritDoc}
         */
        @Override
-       protected JsonObject createJsonObject(Request request) {
+       protected JsonObject createJsonObject(FreenetRequest request) {
                String type = request.getHttpRequest().getParam("type", null);
                String id = request.getHttpRequest().getParam(type, null);
                if ((id == null) || (id.length() == 0)) {
-                       return new JsonObject().put("success", false).put("error", "invalid-" + type + "-id");
+                       return createErrorJsonObject("invalid-" + type + "-id");
                }
                Sone currentSone = getCurrentSone(request.getToadletContext());
                if (currentSone == null) {
-                       return new JsonObject().put("success", false).put("error", "auth-required");
+                       return createErrorJsonObject("auth-required");
                }
                if ("post".equals(type)) {
                        currentSone.addLikedPostId(id);
+                       webInterface.getCore().touchConfiguration();
                } else if ("reply".equals(type)) {
                        currentSone.addLikedReplyId(id);
+                       webInterface.getCore().touchConfiguration();
                } else {
-                       return new JsonObject().put("success", false).put("error", "invalid-type");
+                       return createErrorJsonObject("invalid-type");
                }
-               return new JsonObject().put("success", true);
+               return createSuccessJsonObject();
        }
 
 }