Use web package from utils.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / ajax / DismissNotificationAjaxPage.java
index a098e46..232cab6 100644 (file)
@@ -18,6 +18,7 @@
 package net.pterodactylus.sone.web.ajax;
 
 import net.pterodactylus.sone.web.WebInterface;
+import net.pterodactylus.sone.web.page.FreenetRequest;
 import net.pterodactylus.util.json.JsonObject;
 import net.pterodactylus.util.notify.Notification;
 
@@ -35,24 +36,32 @@ public class DismissNotificationAjaxPage extends JsonPage {
         *            The Sone web interface
         */
        public DismissNotificationAjaxPage(WebInterface webInterface) {
-               super("ajax/dismissNotification.ajax", webInterface);
+               super("dismissNotification.ajax", webInterface);
        }
 
        /**
         * {@inheritDoc}
         */
        @Override
-       protected JsonObject createJsonObject(Request request) {
+       protected JsonObject createJsonObject(FreenetRequest request) {
                String notificationId = request.getHttpRequest().getParam("notification");
-               Notification notification = webInterface.getCore().getNotifications().getNotification(notificationId);
+               Notification notification = webInterface.getNotifications().getNotification(notificationId);
                if (notification == null) {
                        return createErrorJsonObject("invalid-notification-id");
                }
                if (!notification.isDismissable()) {
                        return createErrorJsonObject("not-dismissable");
                }
-               webInterface.getCore().getNotifications().removeNotification(notification);
+               notification.dismiss();
                return createSuccessJsonObject();
        }
 
+       /**
+        * {@inheritDoc}
+        */
+       @Override
+       protected boolean requiresLogin() {
+               return false;
+       }
+
 }