X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2FSoneTemplatePage.java;h=496fb60a77b4104f37abe95aab782fb726d8f5aa;hb=a9aafa22d72dd596f4686cda7fe2f17074235394;hp=2b697ce7783f3b7f68fd81b3e4a08a664b329cac;hpb=18c431e8997e88425d596ee72a01da4244a9a3e9;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/web/SoneTemplatePage.java b/src/main/java/net/pterodactylus/sone/web/SoneTemplatePage.java index 2b697ce..496fb60 100644 --- a/src/main/java/net/pterodactylus/sone/web/SoneTemplatePage.java +++ b/src/main/java/net/pterodactylus/sone/web/SoneTemplatePage.java @@ -19,13 +19,14 @@ package net.pterodactylus.sone.web; import java.util.Arrays; import java.util.Collection; +import java.util.UUID; import net.pterodactylus.sone.data.Sone; import net.pterodactylus.sone.web.page.Page; import net.pterodactylus.sone.web.page.TemplatePage; import net.pterodactylus.util.template.Template; -import freenet.clients.http.RedirectException; import freenet.clients.http.SessionManager.Session; +import freenet.clients.http.ToadletContext; /** * Base page for the Freetalk web interface. @@ -37,8 +38,12 @@ public class SoneTemplatePage extends TemplatePage { /** The Sone core. */ protected final WebInterface webInterface; + /** Whether to require a login. */ + private final boolean requireLogin; + /** - * Creates a new template page for Freetalk. + * Creates a new template page for Freetalk that does not require the user + * to be logged in. * * @param path * The path of the page @@ -50,8 +55,27 @@ public class SoneTemplatePage extends TemplatePage { * The Sone web interface */ public SoneTemplatePage(String path, Template template, String pageTitleKey, WebInterface webInterface) { - super(path, template, webInterface.l10n(), pageTitleKey); + this(path, template, pageTitleKey, webInterface, false); + } + + /** + * Creates a new template page for Freetalk. + * + * @param path + * The path of the page + * @param template + * The template to render + * @param pageTitleKey + * The l10n key of the page title + * @param webInterface + * The Sone web interface + * @param requireLogin + * Whether this page requires a login + */ + public SoneTemplatePage(String path, Template template, String pageTitleKey, WebInterface webInterface, boolean requireLogin) { + super(path, template, webInterface.getL10n(), pageTitleKey, "noPermission.html"); this.webInterface = webInterface; + this.requireLogin = requireLogin; template.set("webInterface", webInterface); } @@ -60,24 +84,73 @@ public class SoneTemplatePage extends TemplatePage { // /** + * Returns the current session, creating a new session if there is no + * current session. + * + * @param toadletContenxt + * The toadlet context + * @return The current session, or {@code null} if there is no current + * session + */ + protected Session getCurrentSession(ToadletContext toadletContenxt) { + return getCurrentSession(toadletContenxt, true); + } + + /** + * Returns the current session, creating a new session if there is no + * current session and {@code create} is {@code true}. + * + * @param toadletContenxt + * The toadlet context + * @param create + * {@code true} to create a new session if there is no current + * session, {@code false} otherwise + * @return The current session, or {@code null} if there is no current + * session + */ + protected Session getCurrentSession(ToadletContext toadletContenxt, boolean create) { + Session session = webInterface.getSessionManager().useSession(toadletContenxt); + if (create && (session == null)) { + session = webInterface.getSessionManager().createSession(UUID.randomUUID().toString(), toadletContenxt); + } + return session; + } + + /** * Returns the currently logged in Sone. * - * @param request - * The request to extract the session information from + * @param toadletContext + * The toadlet context * @return The currently logged in Sone, or {@code null} if no Sone is * currently logged in */ - protected Sone getCurrentSone(Request request) { - try { - Session session = webInterface.sessionManager().useSession(request.getToadletContext()); - if (session == null) { - return null; - } - return (Sone) session.getAttribute("Sone.CurrentSone"); - } catch (RedirectException re1) { - /* okay, no current session, return null. */ + protected Sone getCurrentSone(ToadletContext toadletContext) { + Session session = getCurrentSession(toadletContext); + if (session == null) { return null; } + String soneId = (String) session.getAttribute("Sone.CurrentSone"); + if (soneId == null) { + return null; + } + return webInterface.getCore().getLocalSone(soneId, false); + } + + /** + * Sets the currently logged in Sone. + * + * @param toadletContext + * The toadlet context + * @param sone + * The Sone to set as currently logged in + */ + protected void setCurrentSone(ToadletContext toadletContext, Sone sone) { + Session session = getCurrentSession(toadletContext); + if (sone == null) { + session.removeAttribute("Sone.CurrentSone"); + } else { + session.setAttribute("Sone.CurrentSone", sone.getId()); + } } // @@ -93,13 +166,31 @@ public class SoneTemplatePage extends TemplatePage { } /** + * {@inheritDoc} + */ + @Override + protected String getShortcutIcon() { + return "images/icon.png"; + } + + /** * Returns whether this page requires the user to log in. * * @return {@code true} if the user is required to be logged in to use this * page, {@code false} otherwise */ protected boolean requiresLogin() { - return false; + return requireLogin; + } + + /** + * {@inheritDoc} + */ + @Override + protected void processTemplate(Request request, Template template) throws RedirectException { + super.processTemplate(request, template); + template.set("currentSone", getCurrentSone(request.getToadletContext())); + template.set("request", request); } /** @@ -107,10 +198,21 @@ public class SoneTemplatePage extends TemplatePage { */ @Override protected String getRedirectTarget(Page.Request request) { - if (requiresLogin() && (getCurrentSone(request) == null)) { + if (requiresLogin() && (getCurrentSone(request.getToadletContext()) == null)) { return "login.html"; } return null; } + /** + * {@inheritDoc} + */ + @Override + public boolean isEnabled(ToadletContext toadletContext) { + if (requiresLogin()) { + return getCurrentSone(toadletContext) != null; + } + return true; + } + }