đź“„ Update year in file headers
[Sone.git] / src / main / java / net / pterodactylus / sone / template / RequestChangeFilter.java
1 /*
2  * Sone - RequestChangeFilter.java - Copyright Â© 2010–2020 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.template;
19
20 import java.io.UnsupportedEncodingException;
21 import java.net.URI;
22 import java.net.URISyntaxException;
23 import java.net.URLEncoder;
24 import java.util.Collection;
25 import java.util.HashMap;
26 import java.util.Map;
27 import java.util.Map.Entry;
28
29 import net.pterodactylus.sone.web.page.FreenetRequest;
30 import net.pterodactylus.util.template.Filter;
31 import net.pterodactylus.util.template.TemplateContext;
32
33 /**
34  * This filter expects a {@link FreenetRequest} as input and outputs a
35  * {@link URI} that is modified by the parameters. The name of the parameter is
36  * handed in as â€śname”, the new value is stored in â€śvalue”.
37  */
38 public class RequestChangeFilter implements Filter {
39
40         /**
41          * {@inheritDoc}
42          */
43         @Override
44         public Object format(TemplateContext templateContext, Object data, Map<String, Object> parameters) {
45                 FreenetRequest request = (FreenetRequest) data;
46                 String name = String.valueOf(parameters.get("name"));
47                 String value = String.valueOf(parameters.get("value"));
48
49                 Map<String, String> values = new HashMap<>();
50                 Collection<String> parameterNames = request.getHttpRequest().getParameterNames();
51                 for (String parameterName : parameterNames) {
52                         values.put(parameterName, request.getHttpRequest().getParam(parameterName));
53                 }
54                 values.put(name, value);
55
56                 StringBuilder query = new StringBuilder();
57                 try {
58                         for (Entry<String, String> parameterEntry : values.entrySet()) {
59                                 query.append((query.length() == 0) ? '?' : '&');
60                                 query.append(URLEncoder.encode(parameterEntry.getKey(), "UTF-8"));
61                                 query.append('=');
62                                 query.append(URLEncoder.encode(parameterEntry.getValue(), "UTF-8"));
63                         }
64                         String oldUri = request.getUri().toString();
65                         int questionMark = oldUri.indexOf('?');
66                         if (questionMark == -1) {
67                                 questionMark = oldUri.length();
68                         }
69                         return new URI(oldUri.substring(0, questionMark) + query.toString());
70                 } catch (UnsupportedEncodingException uee1) {
71                         /* UTF-8 not supported? I don’t think so. */
72                 } catch (URISyntaxException use1) {
73                         use1.printStackTrace();
74                 }
75                 return null;
76         }
77
78 }