Add title to pages.
[WoTNS.git] / src / main / java / net / pterodactylus / wotns / ui / web / AddTargetPage.java
1 /*
2  * WoTNS - AddTargetPage.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 java.net.MalformedURLException;
21
22 import net.pterodactylus.util.template.Template;
23 import net.pterodactylus.util.template.TemplateContext;
24 import net.pterodactylus.util.web.Method;
25 import net.pterodactylus.wotns.freenet.wot.OwnIdentity;
26 import net.pterodactylus.wotns.freenet.wot.WebOfTrustException;
27 import net.pterodactylus.wotns.web.FreenetRequest;
28 import freenet.keys.FreenetURI;
29
30
31 /**
32  * TODO
33  *
34  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
35  */
36 public class AddTargetPage extends BasicPage {
37
38         /**
39          * @param webInterface
40          * @param path
41          * @param template
42          */
43         public AddTargetPage(Template template, WebInterface webInterface) {
44                 super(webInterface, "addTarget.html", null, template);
45         }
46
47         /**
48          * {@inheritDoc}
49          */
50         @Override
51         protected void processTemplate(FreenetRequest request, TemplateContext templateContext) throws RedirectException {
52                 super.processTemplate(request, templateContext);
53                 if (request.getMethod() == Method.POST) {
54                         String ownIdentityId = request.getHttpRequest().getPartAsStringFailsafe("ownIdentity", 43);
55                         OwnIdentity ownIdentity = identityManager.getOwnIdentity(ownIdentityId);
56                         if (ownIdentity == null) {
57                                 /* TODO - show error. */
58                                 return;
59                         }
60                         String name = request.getHttpRequest().getPartAsStringFailsafe("name", 64).trim();
61                         if (name.length() == 0) {
62                                 /* TODO - show error. */
63                                 return;
64                         }
65                         String target = request.getHttpRequest().getPartAsStringFailsafe("target", 256).trim();
66                         if (name.length() == 0) {
67                                 /* TODO - show error. */
68                                 return;
69                         }
70                         try {
71                                 new FreenetURI(target);
72                                 ownIdentity.setProperty("tns." + name, target);
73                                 throw new RedirectException("manage.html?ownIdentity=" + ownIdentityId);
74                         } catch (MalformedURLException mue1) {
75                                 /* TODO - show error. */
76                         } catch (WebOfTrustException wote1) {
77                                 /* TODO - show error. */
78                         }
79                 }
80         }
81
82 }