Merge branch 'release/0.9-rc1'
[Sone.git] / src / main / java / net / pterodactylus / sone / template / RequestChangeFilter.java
1 /*
2  * Sone - RequestChangeFilter.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.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  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
39  */
40 public class RequestChangeFilter implements Filter {
41
42         /**
43          * {@inheritDoc}
44          */
45         @Override
46         public Object format(TemplateContext templateContext, Object data, Map<String, Object> parameters) {
47                 FreenetRequest request = (FreenetRequest) data;
48                 String name = String.valueOf(parameters.get("name"));
49                 String value = String.valueOf(parameters.get("value"));
50
51                 Map<String, String> values = new HashMap<String, String>();
52                 Collection<String> parameterNames = request.getHttpRequest().getParameterNames();
53                 for (String parameterName : parameterNames) {
54                         values.put(parameterName, request.getHttpRequest().getParam(parameterName));
55                 }
56                 values.put(name, value);
57
58                 StringBuilder query = new StringBuilder();
59                 try {
60                         for (Entry<String, String> parameterEntry : values.entrySet()) {
61                                 query.append((query.length() == 0) ? '?' : '&');
62                                 query.append(URLEncoder.encode(parameterEntry.getKey(), "UTF-8"));
63                                 query.append('=');
64                                 query.append(URLEncoder.encode(parameterEntry.getValue(), "UTF-8"));
65                         }
66                         String oldUri = request.getUri().toString();
67                         int questionMark = oldUri.indexOf('?');
68                         if (questionMark == -1) {
69                                 questionMark = oldUri.length();
70                         }
71                         return new URI(oldUri.substring(0, questionMark) + query.toString());
72                 } catch (UnsupportedEncodingException uee1) {
73                         /* UTF-8 not supported? I don’t think so. */
74                 } catch (URISyntaxException use1) {
75                         use1.printStackTrace();
76                 }
77                 return null;
78         }
79
80 }