2 * Sone - EditProfilePage.java - Copyright © 2010–2013 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.sone.web;
20 import static net.pterodactylus.sone.text.TextFilter.filter;
21 import static net.pterodactylus.sone.utils.NumberParsers.parseInt;
23 import java.util.List;
25 import net.pterodactylus.sone.data.Profile;
26 import net.pterodactylus.sone.data.Profile.DuplicateField;
27 import net.pterodactylus.sone.data.Profile.Field;
28 import net.pterodactylus.sone.data.Sone;
29 import net.pterodactylus.sone.web.page.FreenetRequest;
30 import net.pterodactylus.util.template.Template;
31 import net.pterodactylus.util.template.TemplateContext;
32 import net.pterodactylus.util.web.Method;
33 import freenet.clients.http.ToadletContext;
36 * This page lets the user edit her profile.
38 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
40 public class EditProfilePage extends SoneTemplatePage {
43 * Creates a new “edit profile” page.
46 * The template to render
48 * The Sone web interface
50 public EditProfilePage(Template template, WebInterface webInterface) {
51 super("editProfile.html", template, "Page.EditProfile.Title", webInterface, true);
55 // TEMPLATEPAGE METHODS
62 protected void processTemplate(FreenetRequest request, TemplateContext templateContext) throws RedirectException {
63 super.processTemplate(request, templateContext);
64 ToadletContext toadletContenxt = request.getToadletContext();
65 Sone currentSone = getCurrentSone(toadletContenxt);
66 Profile profile = currentSone.getProfile();
67 String firstName = profile.getFirstName();
68 String middleName = profile.getMiddleName();
69 String lastName = profile.getLastName();
70 Integer birthDay = profile.getBirthDay();
71 Integer birthMonth = profile.getBirthMonth();
72 Integer birthYear = profile.getBirthYear();
73 String avatarId = profile.getAvatar();
74 List<Field> fields = profile.getFields();
75 if (request.getMethod() == Method.POST) {
76 if (request.getHttpRequest().getPartAsStringFailsafe("save-profile", 4).equals("true")) {
77 firstName = request.getHttpRequest().getPartAsStringFailsafe("first-name", 256).trim();
78 middleName = request.getHttpRequest().getPartAsStringFailsafe("middle-name", 256).trim();
79 lastName = request.getHttpRequest().getPartAsStringFailsafe("last-name", 256).trim();
80 birthDay = parseInt(request.getHttpRequest().getPartAsStringFailsafe("birth-day", 256).trim(), null);
81 birthMonth = parseInt(request.getHttpRequest().getPartAsStringFailsafe("birth-month", 256).trim(), null);
82 birthYear = parseInt(request.getHttpRequest().getPartAsStringFailsafe("birth-year", 256).trim(), null);
83 avatarId = request.getHttpRequest().getPartAsStringFailsafe("avatarId", 36);
84 profile.setFirstName(firstName.length() > 0 ? firstName : null);
85 profile.setMiddleName(middleName.length() > 0 ? middleName : null);
86 profile.setLastName(lastName.length() > 0 ? lastName : null);
87 profile.setBirthDay(birthDay).setBirthMonth(birthMonth).setBirthYear(birthYear);
88 profile.setAvatar(webInterface.getCore().getImage(avatarId, false));
89 for (Field field : fields) {
90 String value = request.getHttpRequest().getPartAsStringFailsafe("field-" + field.getId(), 400);
91 String filteredValue = filter(request.getHttpRequest().getHeader("Host"), value);
92 field.setValue(filteredValue);
94 currentSone.setProfile(profile);
95 webInterface.getCore().touchConfiguration();
96 throw new RedirectException("editProfile.html");
97 } else if (request.getHttpRequest().getPartAsStringFailsafe("add-field", 4).equals("true")) {
98 String fieldName = request.getHttpRequest().getPartAsStringFailsafe("field-name", 256).trim();
100 profile.addField(fieldName);
101 currentSone.setProfile(profile);
102 webInterface.getCore().touchConfiguration();
103 throw new RedirectException("editProfile.html#profile-fields");
104 } catch (DuplicateField df1) {
105 templateContext.set("fieldName", fieldName);
106 templateContext.set("duplicateFieldName", true);
109 String id = getFieldId(request, "delete-field-");
111 throw new RedirectException("deleteProfileField.html?field=" + id);
113 id = getFieldId(request, "move-up-field-");
115 Field field = profile.getFieldById(id);
117 throw new RedirectException("invalid.html");
119 profile.moveFieldUp(field);
120 currentSone.setProfile(profile);
121 throw new RedirectException("editProfile.html#profile-fields");
123 id = getFieldId(request, "move-down-field-");
125 Field field = profile.getFieldById(id);
127 throw new RedirectException("invalid.html");
129 profile.moveFieldDown(field);
130 currentSone.setProfile(profile);
131 throw new RedirectException("editProfile.html#profile-fields");
133 id = getFieldId(request, "edit-field-");
135 throw new RedirectException("editProfileField.html?field=" + id);
139 templateContext.set("firstName", firstName);
140 templateContext.set("middleName", middleName);
141 templateContext.set("lastName", lastName);
142 templateContext.set("birthDay", birthDay);
143 templateContext.set("birthMonth", birthMonth);
144 templateContext.set("birthYear", birthYear);
145 templateContext.set("avatarId", avatarId);
146 templateContext.set("fields", fields);
154 * Searches for a part whose names starts with the given {@code String} and
155 * extracts the ID from the located name.
158 * The request to get the parts from
159 * @param partNameStart
160 * The start of the name of the requested part
161 * @return The parsed ID, or {@code null} if there was no part matching the
164 private static String getFieldId(FreenetRequest request, String partNameStart) {
165 for (String partName : request.getHttpRequest().getParts()) {
166 if (partName.startsWith(partNameStart)) {
167 return partName.substring(partNameStart.length());