X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2FLoginPage.java;fp=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2FLoginPage.java;h=0000000000000000000000000000000000000000;hb=9c61b749711a041a40a5370c17fdaa23c10e7696;hp=65ab0cf4a41357c018a8a3f9f1301b43ee933a40;hpb=d327ccf1eeca1bd9544c523e98a6d1dc551c0015;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/web/LoginPage.java b/src/main/java/net/pterodactylus/sone/web/LoginPage.java deleted file mode 100644 index 65ab0cf..0000000 --- a/src/main/java/net/pterodactylus/sone/web/LoginPage.java +++ /dev/null @@ -1,113 +0,0 @@ -/* - * Sone - LoginPage.java - Copyright © 2010–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 - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -package net.pterodactylus.sone.web; - -import static java.util.logging.Logger.getLogger; - -import java.util.ArrayList; -import java.util.Collections; -import java.util.List; -import java.util.logging.Logger; - -import net.pterodactylus.sone.data.Sone; -import net.pterodactylus.sone.freenet.wot.OwnIdentity; -import net.pterodactylus.sone.web.page.FreenetRequest; -import net.pterodactylus.util.template.Template; -import net.pterodactylus.util.template.TemplateContext; -import net.pterodactylus.util.web.Method; -import freenet.clients.http.ToadletContext; - -/** - * The login page manages logging the user in. - * - * @author David ‘Bombe’ Roden - */ -public class LoginPage extends SoneTemplatePage { - - /** The logger. */ - @SuppressWarnings("unused") - private static final Logger logger = getLogger(LoginPage.class.getName()); - - /** - * Creates a new login page. - * - * @param template - * The template to render - * @param webInterface - * The Sone web interface - */ - public LoginPage(Template template, WebInterface webInterface) { - super("login.html", template, "Page.Login.Title", webInterface, false); - } - - // - // TEMPLATEPAGE METHODS - // - - /** - * {@inheritDoc} - */ - @Override - protected void handleRequest(FreenetRequest request, TemplateContext templateContext) throws RedirectException { - /* get all own identities. */ - List localSones = new ArrayList(webInterface.getCore().getLocalSones()); - Collections.sort(localSones, Sone.NICE_NAME_COMPARATOR); - templateContext.set("sones", localSones); - if (request.getMethod() == Method.POST) { - String soneId = request.getHttpRequest().getPartAsStringFailsafe("sone-id", 100); - Sone selectedSone = webInterface.getCore().getLocalSone(soneId); - if (selectedSone != null) { - setCurrentSone(request.getToadletContext(), selectedSone); - String target = request.getHttpRequest().getParam("target"); - if ((target == null) || (target.length() == 0)) { - target = "index.html"; - } - throw new RedirectException(target); - } - } - List ownIdentitiesWithoutSone = CreateSonePage.getOwnIdentitiesWithoutSone(webInterface.getCore()); - templateContext.set("identitiesWithoutSone", ownIdentitiesWithoutSone); - } - - /** - * {@inheritDoc} - */ - @Override - protected String getRedirectTarget(FreenetRequest request) { - if (getCurrentSoneWithoutCreatingSession(request.getToadletContext()) != null) { - return "index.html"; - } - return null; - } - - // - // SONETEMPLATEPAGE METHODS - // - - /** - * {@inheritDoc} - */ - @Override - public boolean isEnabled(ToadletContext toadletContext) { - if (webInterface.getCore().getPreferences().isRequireFullAccess() && !toadletContext.isAllowedFullAccess()) { - return false; - } - return getCurrentSoneWithoutCreatingSession(toadletContext) == null; - } - -}