X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2Fajax%2FJsonPage.java;fp=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2Fajax%2FJsonPage.java;h=2f84d279192039eb53e11219a44c45958b73e57d;hb=6610d8a9946508f17fc0ed2f0a7ff806a60c357f;hp=70ecb2bcc9ca886a37b370688264ad1eff49e3fc;hpb=fdc047dd37e982776d55d827ca405868efe32c5a;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/web/ajax/JsonPage.java b/src/main/java/net/pterodactylus/sone/web/ajax/JsonPage.java index 70ecb2b..2f84d27 100644 --- a/src/main/java/net/pterodactylus/sone/web/ajax/JsonPage.java +++ b/src/main/java/net/pterodactylus/sone/web/ajax/JsonPage.java @@ -30,6 +30,7 @@ import java.util.logging.Logger; import javax.annotation.Nonnull; import net.pterodactylus.sone.data.Sone; +import net.pterodactylus.sone.web.SessionProvider; import net.pterodactylus.sone.web.WebInterface; import net.pterodactylus.sone.web.page.FreenetPage; import net.pterodactylus.sone.web.page.FreenetRequest; @@ -38,7 +39,6 @@ import net.pterodactylus.util.web.Page; import net.pterodactylus.util.web.Response; import com.fasterxml.jackson.databind.ObjectMapper; -import freenet.clients.http.SessionManager.Session; import freenet.clients.http.ToadletContext; /** @@ -60,6 +60,7 @@ public abstract class JsonPage implements FreenetPage { /** The Sone web interface. */ protected final WebInterface webInterface; + private final SessionProvider sessionProvider; /** * Creates a new JSON page at the given path. @@ -72,26 +73,19 @@ public abstract class JsonPage implements FreenetPage { public JsonPage(String path, WebInterface webInterface) { this.path = path; this.webInterface = webInterface; + this.sessionProvider = webInterface; } // // ACCESSORS // - /** - * Returns the currently logged in Sone. - * - * @param toadletContext - * The toadlet context - * @return The currently logged in Sone, or {@code null} if no Sone is - * currently logged in - */ protected Sone getCurrentSone(ToadletContext toadletContext) { - return webInterface.getCurrentSoneCreatingSession(toadletContext); + return sessionProvider.getCurrentSone(toadletContext, true); } - protected Sone getCurrentSoneWithoutCreatingSession(ToadletContext toadletContext) { - return webInterface.getCurrentSoneWithoutCreatingSession(toadletContext); + protected Sone getCurrentSone(ToadletContext toadletContext, boolean createSession) { + return sessionProvider.getCurrentSone(toadletContext, createSession); } // @@ -192,7 +186,7 @@ public abstract class JsonPage implements FreenetPage { } } if (requiresLogin()) { - if (getCurrentSoneWithoutCreatingSession(request.getToadletContext()) == null) { + if (getCurrentSone(request.getToadletContext(), false) == null) { return response.setStatusCode(403).setStatusText("Forbidden").setContentType("application/json").write(objectMapper.writeValueAsString(new JsonErrorReturnObject("auth-required"))); } }