X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2Fajax%2FTrustAjaxPage.java;h=d0247cb4155bf01e4ebb8d55a7e8940451d6b7d1;hp=1c0689f7f50440cd51cf962f4a80e8c1d008ce7a;hb=9e697ac643d11a2b7644a948732674eea195718a;hpb=419098bcd6215125408b29e60bd888e60979d37b diff --git a/src/main/java/net/pterodactylus/sone/web/ajax/TrustAjaxPage.java b/src/main/java/net/pterodactylus/sone/web/ajax/TrustAjaxPage.java index 1c0689f..d0247cb 100644 --- a/src/main/java/net/pterodactylus/sone/web/ajax/TrustAjaxPage.java +++ b/src/main/java/net/pterodactylus/sone/web/ajax/TrustAjaxPage.java @@ -1,5 +1,5 @@ /* - * Sone - TrustAjaxPage.java - Copyright © 2011–2015 David Roden + * Sone - TrustAjaxPage.java - Copyright © 2011–2016 David Roden * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -17,6 +17,8 @@ package net.pterodactylus.sone.web.ajax; +import javax.annotation.Nonnull; + import com.google.common.base.Optional; import net.pterodactylus.sone.core.Core; @@ -30,7 +32,7 @@ import net.pterodactylus.sone.web.page.FreenetRequest; * @see Core#trustSone(Sone, Sone) * @author David ‘Bombe’ Roden */ -public class TrustAjaxPage extends JsonPage { +public class TrustAjaxPage extends LoggedInJsonPage { /** * Creates a new “trust Sone” AJAX handler. @@ -45,12 +47,9 @@ public class TrustAjaxPage extends JsonPage { /** * {@inheritDoc} */ + @Nonnull @Override - protected JsonReturnObject createJsonObject(FreenetRequest request) { - Sone currentSone = getCurrentSone(request.getToadletContext(), false); - if (currentSone == null) { - return createErrorJsonObject("auth-required"); - } + protected JsonReturnObject createJsonObject(@Nonnull Sone currentSone, @Nonnull FreenetRequest request) { String soneId = request.getHttpRequest().getParam("sone"); Optional sone = webInterface.getCore().getSone(soneId); if (!sone.isPresent()) {