Add compatibility mode for old post IDs
[Sone.git] / src / main / java / net / pterodactylus / sone / web / OptionsPage.java
1 /*
2  * Sone - OptionsPage.java - Copyright © 2010–2013 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 static net.pterodactylus.sone.utils.NumberParsers.parseInt;
21
22 import java.util.ArrayList;
23 import java.util.List;
24
25 import net.pterodactylus.sone.core.CompatibilityMode;
26 import net.pterodactylus.sone.core.Preferences;
27 import net.pterodactylus.sone.data.Sone;
28 import net.pterodactylus.sone.data.Sone.ShowCustomAvatars;
29 import net.pterodactylus.sone.fcp.FcpInterface.FullAccessRequired;
30 import net.pterodactylus.sone.web.page.FreenetRequest;
31 import net.pterodactylus.util.template.Template;
32 import net.pterodactylus.util.template.TemplateContext;
33 import net.pterodactylus.util.web.Method;
34
35 /**
36  * This page lets the user edit the options of the Sone plugin.
37  *
38  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
39  */
40 public class OptionsPage extends SoneTemplatePage {
41
42         /**
43          * Creates a new options page.
44          *
45          * @param template
46          *            The template to render
47          * @param webInterface
48          *            The Sone web interface
49          */
50         public OptionsPage(Template template, WebInterface webInterface) {
51                 super("options.html", template, "Page.Options.Title", webInterface, false);
52         }
53
54         //
55         // TEMPLATEPAGE METHODS
56         //
57
58         /**
59          * {@inheritDoc}
60          */
61         @Override
62         protected void processTemplate(FreenetRequest request, TemplateContext templateContext) throws RedirectException {
63                 super.processTemplate(request, templateContext);
64                 Preferences preferences = webInterface.getCore().getPreferences();
65                 Sone currentSone = webInterface.getCurrentSone(request.getToadletContext(), false);
66                 if (request.getMethod() == Method.POST) {
67                         List<String> fieldErrors = new ArrayList<String>();
68                         if (currentSone != null) {
69                                 boolean autoFollow = request.getHttpRequest().isPartSet("auto-follow");
70                                 currentSone.getOptions().setAutoFollow(autoFollow);
71                                 boolean enableSoneInsertNotifications = request.getHttpRequest().isPartSet("enable-sone-insert-notifications");
72                                 currentSone.getOptions().setSoneInsertNotificationEnabled(enableSoneInsertNotifications);
73                                 boolean showNotificationNewSones = request.getHttpRequest().isPartSet("show-notification-new-sones");
74                                 currentSone.getOptions().setShowNewSoneNotifications(showNotificationNewSones);
75                                 boolean showNotificationNewPosts = request.getHttpRequest().isPartSet("show-notification-new-posts");
76                                 currentSone.getOptions().setShowNewPostNotifications(showNotificationNewPosts);
77                                 boolean showNotificationNewReplies = request.getHttpRequest().isPartSet("show-notification-new-replies");
78                                 currentSone.getOptions().setShowNewReplyNotifications(showNotificationNewReplies);
79                                 String showCustomAvatars = request.getHttpRequest().getPartAsStringFailsafe("show-custom-avatars", 32);
80                                 currentSone.getOptions().setShowCustomAvatars(ShowCustomAvatars.valueOf(showCustomAvatars));
81                                 webInterface.getCore().touchConfiguration();
82                         }
83                         Integer insertionDelay = parseInt(request.getHttpRequest().getPartAsStringFailsafe("insertion-delay", 16), null);
84                         if (!preferences.validateInsertionDelay(insertionDelay)) {
85                                 fieldErrors.add("insertion-delay");
86                         } else {
87                                 preferences.setInsertionDelay(insertionDelay);
88                         }
89                         Integer postsPerPage = parseInt(request.getHttpRequest().getPartAsStringFailsafe("posts-per-page", 4), null);
90                         if (!preferences.validatePostsPerPage(postsPerPage)) {
91                                 fieldErrors.add("posts-per-page");
92                         } else {
93                                 preferences.setPostsPerPage(postsPerPage);
94                         }
95                         Integer imagesPerPage = parseInt(request.getHttpRequest().getPartAsStringFailsafe("images-per-page", 4), null);
96                         if (!preferences.validateImagesPerPage(imagesPerPage)) {
97                                 fieldErrors.add("images-per-page");
98                         } else {
99                                 preferences.setImagesPerPage(imagesPerPage);
100                         }
101                         Integer charactersPerPost = parseInt(request.getHttpRequest().getPartAsStringFailsafe("characters-per-post", 10), null);
102                         if (!preferences.validateCharactersPerPost(charactersPerPost)) {
103                                 fieldErrors.add("characters-per-post");
104                         } else {
105                                 preferences.setCharactersPerPost(charactersPerPost);
106                         }
107                         Integer postCutOffLength = parseInt(request.getHttpRequest().getPartAsStringFailsafe("post-cut-off-length", 10), null);
108                         if (!preferences.validatePostCutOffLength(postCutOffLength)) {
109                                 fieldErrors.add("post-cut-off-length");
110                         } else {
111                                 preferences.setPostCutOffLength(postCutOffLength);
112                         }
113                         boolean requireFullAccess = request.getHttpRequest().isPartSet("require-full-access");
114                         preferences.setRequireFullAccess(requireFullAccess);
115                         Integer positiveTrust = parseInt(request.getHttpRequest().getPartAsStringFailsafe("positive-trust", 3), null);
116                         if (!preferences.validatePositiveTrust(positiveTrust)) {
117                                 fieldErrors.add("positive-trust");
118                         } else {
119                                 preferences.setPositiveTrust(positiveTrust);
120                         }
121                         Integer negativeTrust = parseInt(request.getHttpRequest().getPartAsStringFailsafe("negative-trust", 4), null);
122                         if (!preferences.validateNegativeTrust(negativeTrust)) {
123                                 fieldErrors.add("negative-trust");
124                         } else {
125                                 preferences.setNegativeTrust(negativeTrust);
126                         }
127                         String trustComment = request.getHttpRequest().getPartAsStringFailsafe("trust-comment", 256);
128                         if (trustComment.trim().length() == 0) {
129                                 trustComment = null;
130                         }
131                         preferences.setTrustComment(trustComment);
132                         boolean fcpInterfaceActive = request.getHttpRequest().isPartSet("fcp-interface-active");
133                         preferences.setFcpInterfaceActive(fcpInterfaceActive);
134                         Integer fcpFullAccessRequiredInteger = parseInt(request.getHttpRequest().getPartAsStringFailsafe("fcp-full-access-required", 1), preferences.getFcpFullAccessRequired().ordinal());
135                         FullAccessRequired fcpFullAccessRequired = FullAccessRequired.values()[fcpFullAccessRequiredInteger];
136                         preferences.setFcpFullAccessRequired(fcpFullAccessRequired);
137
138                         boolean compatOldElementIds = request.getHttpRequest().isPartSet("compat-old-element-ids");
139                         if (compatOldElementIds) {
140                                 webInterface.getCore().setCompatibilityMode(CompatibilityMode.oldElementIds);
141                         } else {
142                                 webInterface.getCore().clearCompatibilityMod(CompatibilityMode.oldElementIds);
143                         }
144
145                         webInterface.getCore().touchConfiguration();
146                         if (fieldErrors.isEmpty()) {
147                                 throw new RedirectException(getPath());
148                         }
149                         templateContext.set("fieldErrors", fieldErrors);
150                 }
151                 if (currentSone != null) {
152                         templateContext.set("auto-follow", currentSone.getOptions().isAutoFollow());
153                         templateContext.set("enable-sone-insert-notifications", currentSone.getOptions().isSoneInsertNotificationEnabled());
154                         templateContext.set("show-notification-new-sones", currentSone.getOptions().isShowNewSoneNotifications());
155                         templateContext.set("show-notification-new-posts", currentSone.getOptions().isShowNewPostNotifications());
156                         templateContext.set("show-notification-new-replies", currentSone.getOptions().isShowNewReplyNotifications());
157                         templateContext.set("show-custom-avatars", currentSone.getOptions().getShowCustomAvatars().name());
158                 }
159                 templateContext.set("insertion-delay", preferences.getInsertionDelay());
160                 templateContext.set("posts-per-page", preferences.getPostsPerPage());
161                 templateContext.set("images-per-page", preferences.getImagesPerPage());
162                 templateContext.set("characters-per-post", preferences.getCharactersPerPost());
163                 templateContext.set("post-cut-off-length", preferences.getPostCutOffLength());
164                 templateContext.set("require-full-access", preferences.isRequireFullAccess());
165                 templateContext.set("positive-trust", preferences.getPositiveTrust());
166                 templateContext.set("negative-trust", preferences.getNegativeTrust());
167                 templateContext.set("trust-comment", preferences.getTrustComment());
168                 templateContext.set("fcp-interface-active", preferences.isFcpInterfaceActive());
169                 templateContext.set("fcp-full-access-required", preferences.getFcpFullAccessRequired().ordinal());
170                 templateContext.set("compat-old-element-ids", webInterface.getCore().isCompatibilityMode(CompatibilityMode.oldElementIds));
171         }
172
173 }