Rename method to match its purpose.
[WoTNS.git] / src / main / java / net / pterodactylus / wotns / ui / web / EnableIdentityPage.java
1 /*
2  * WoTNS - EnableIdentityPage.java - Copyright © 2011 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.wotns.ui.web;
19
20 import net.pterodactylus.util.template.Template;
21 import net.pterodactylus.util.template.TemplateContext;
22 import net.pterodactylus.util.web.Method;
23 import net.pterodactylus.wotns.freenet.wot.OwnIdentity;
24 import net.pterodactylus.wotns.freenet.wot.WebOfTrustException;
25 import net.pterodactylus.wotns.web.FreenetRequest;
26
27 /**
28  * TODO
29  *
30  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
31  */
32 public class EnableIdentityPage extends BasicPage {
33
34         /**
35          * @param webInterface
36          * @param path
37          * @param template
38          */
39         public EnableIdentityPage(Template template, WebInterface webInterface) {
40                 super(webInterface, "enableIdentity.html", template);
41         }
42
43         /**
44          * {@inheritDoc}
45          */
46         @Override
47         protected void processTemplate(FreenetRequest request, TemplateContext templateContext) throws RedirectException {
48                 super.processTemplate(request, templateContext);
49                 if (request.getMethod() == Method.POST) {
50                         OwnIdentity ownIdentity = getOwnIdentity(request);
51                         if (ownIdentity == null) {
52                                 /* TODO - show error. */
53                                 return;
54                         }
55                         try {
56                                 if (request.getHttpRequest().isPartSet("enable")) {
57                                         ownIdentity.addContext("WoTNS");
58                                 } else if (request.getHttpRequest().isPartSet("disable")) {
59                                         ownIdentity.removeContext("WoTNS");
60                                 }
61                                 throw new RedirectException("index.html");
62                         } catch (WebOfTrustException wote1) {
63                                 /* TODO - show error. */
64                         }
65                 }
66         }
67
68 }