X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2Fajax%2FJsonPage.java;h=21f44d276211fa3cdc6b849fdfffb19f8b91e84e;hb=ea19cb28b8c1076db67a6d3a946db6c24b6030b0;hp=1050eeefe7844a0f151730d8ee4bc1756c444ddc;hpb=5eb126755d66eea1b6350f48954810d3029e9f8a;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 1050eee..21f44d2 100644 --- a/src/main/java/net/pterodactylus/sone/web/ajax/JsonPage.java +++ b/src/main/java/net/pterodactylus/sone/web/ajax/JsonPage.java @@ -27,7 +27,10 @@ import java.net.URI; import java.util.logging.Level; 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; @@ -36,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; /** @@ -58,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. @@ -70,37 +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.getCurrentSone(toadletContext); + return sessionProvider.getCurrentSone(toadletContext, true); } - /** - * Returns the currently logged in Sone. - * - * @param toadletContext - * The toadlet context - * @param create - * {@code true} to create a new session if no session exists, - * {@code false} to not create a new session - * @return The currently logged in Sone, or {@code null} if no Sone is - * currently logged in - */ - protected Sone getCurrentSone(ToadletContext toadletContext, boolean create) { - return webInterface.getCurrentSone(toadletContext, create); + protected Sone getCurrentSone(ToadletContext toadletContext, boolean createSession) { + return sessionProvider.getCurrentSone(toadletContext, createSession); } // @@ -115,7 +100,8 @@ public abstract class JsonPage implements FreenetPage { * The request to handle * @return The created JSON object */ - protected abstract JsonReturnObject createJsonObject(FreenetRequest request); + @Nonnull + protected abstract JsonReturnObject createJsonObject(@Nonnull FreenetRequest request); /** * Returns whether this command needs the form password for authentication @@ -149,6 +135,7 @@ public abstract class JsonPage implements FreenetPage { * * @return A reply signaling success */ + @Nonnull protected static JsonReturnObject createSuccessJsonObject() { return new JsonReturnObject(true); } @@ -160,6 +147,7 @@ public abstract class JsonPage implements FreenetPage { * The error that has occured * @return The JSON object, signalling failure and the error code */ + @Nonnull protected static JsonReturnObject createErrorJsonObject(String error) { return new JsonErrorReturnObject(error); } @@ -237,10 +225,10 @@ public abstract class JsonPage implements FreenetPage { OutputStreamWriter writer = null; PrintWriter printWriter = null; try { - writer = new OutputStreamWriter(byteArrayOutputStream, "uTF-8"); + writer = new OutputStreamWriter(byteArrayOutputStream, "UTF-8"); printWriter = new PrintWriter(writer); t.printStackTrace(printWriter); - byteArrayOutputStream.flush(); + printWriter.flush(); return byteArrayOutputStream.toByteArray(); } catch (IOException ioe1) { /* quite not possible. */