2 * WoTNS - AddTargetPage.java - Copyright © 2011 David Roden
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.
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.
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/>.
18 package net.pterodactylus.wotns.ui.web;
20 import java.net.MalformedURLException;
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;
34 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
36 public class AddTargetPage extends BasicPage {
43 public AddTargetPage(Template template, WebInterface webInterface) {
44 super(webInterface, "addTarget.html", null, template);
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. */
60 String name = request.getHttpRequest().getPartAsStringFailsafe("name", 64).trim();
61 if (name.length() == 0) {
62 /* TODO - show error. */
65 String target = request.getHttpRequest().getPartAsStringFailsafe("target", 256).trim();
66 if (name.length() == 0) {
67 /* TODO - show error. */
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. */