Implementation stub of the login page.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / LoginPage.java
1 /*
2  * FreenetSone - LoginPage.java - Copyright © 2010 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.sone.web;
19
20 import java.util.Set;
21
22 import net.pterodactylus.sone.data.Sone;
23 import net.pterodactylus.sone.web.page.Page.Request.Method;
24 import net.pterodactylus.util.template.Template;
25
26 /**
27  * The login page manages logging the user in.
28  *
29  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
30  */
31 public class LoginPage extends SoneTemplatePage {
32
33         /**
34          * Creates a new login page.
35          *
36          * @param template
37          *            The template to render
38          * @param webInterface
39          *            The Sone web interface
40          */
41         public LoginPage(Template template, WebInterface webInterface) {
42                 super("login.html", template, "Page.Login.Title", webInterface);
43         }
44
45         //
46         // TEMPLATEPAGE METHODS
47         //
48
49         /**
50          * {@inheritDoc}
51          */
52         @Override
53         protected void processTemplate(Request request, Template template) {
54                 Set<Sone> localSones = webInterface.core().localSones();
55                 template.set("sones", localSones);
56         }
57
58         /**
59          * {@inheritDoc}
60          */
61         @Override
62         protected String getRedirectTarget(Request request) {
63                 if (request.getMethod() == Method.POST) {
64                         String soneId = request.getHttpRequest().getParam("sone-id");
65                         Sone selectedSone = null;
66                         for (Sone sone : webInterface.core().localSones()) {
67                                 if (sone.getId().equals(soneId)) {
68                                         selectedSone = sone;
69                                         break;
70                                 }
71                         }
72                         if (selectedSone != null) {
73                                 setCurrentSone(request, selectedSone);
74                                 return "index.html";
75                         }
76                 }
77                 return null;
78         }
79
80 }