forked from OpenFeign/feign
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQueryTemplate.java
More file actions
197 lines (174 loc) · 6.05 KB
/
QueryTemplate.java
File metadata and controls
197 lines (174 loc) · 6.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
/**
* Copyright 2012-2019 The Feign Authors
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package feign.template;
import feign.CollectionFormat;
import feign.Util;
import java.nio.charset.Charset;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.function.Predicate;
import java.util.stream.Collectors;
import java.util.stream.StreamSupport;
/**
* Template for a Query String parameter.
*/
public final class QueryTemplate extends Template {
public static final String UNDEF = "undef";
/* cache a copy of the variables for lookup later */
private List<String> values;
private final Template name;
private final CollectionFormat collectionFormat;
private boolean pure = false;
/**
* Create a new Query Template.
*
* @param name of the query parameter.
* @param values in the template.
* @param charset for the template.
* @return a QueryTemplate.
*/
public static QueryTemplate create(String name, Iterable<String> values, Charset charset) {
return create(name, values, charset, CollectionFormat.EXPLODED);
}
/**
* Create a new Query Template.
*
* @param name of the query parameter.
* @param values in the template.
* @param charset for the template.
* @param collectionFormat to use.
* @return a QueryTemplate
*/
public static QueryTemplate create(String name,
Iterable<String> values,
Charset charset,
CollectionFormat collectionFormat) {
if (name == null || name.isEmpty()) {
throw new IllegalArgumentException("name is required.");
}
if (values == null) {
throw new IllegalArgumentException("values are required");
}
/* remove all empty values from the array */
Collection<String> remaining = StreamSupport.stream(values.spliterator(), false)
.filter(Util::isNotBlank)
.collect(Collectors.toList());
StringBuilder template = new StringBuilder();
Iterator<String> iterator = remaining.iterator();
while (iterator.hasNext()) {
template.append(iterator.next());
if (iterator.hasNext()) {
template.append(",");
}
}
return new QueryTemplate(template.toString(), name, remaining, charset, collectionFormat);
}
/**
* Append a value to the Query Template.
*
* @param queryTemplate to append to.
* @param values to append.
* @return a new QueryTemplate with value appended.
*/
public static QueryTemplate append(QueryTemplate queryTemplate,
Iterable<String> values,
CollectionFormat collectionFormat) {
List<String> queryValues = new ArrayList<>(queryTemplate.getValues());
queryValues.addAll(StreamSupport.stream(values.spliterator(), false)
.filter(Util::isNotBlank)
.collect(Collectors.toList()));
return create(queryTemplate.getName(), queryValues, queryTemplate.getCharset(),
collectionFormat);
}
/**
* Create a new Query Template.
*
* @param template for the Query String.
* @param name of the query parameter.
* @param values for the parameter.
* @param collectionFormat to use.
*/
private QueryTemplate(
String template,
String name,
Iterable<String> values,
Charset charset,
CollectionFormat collectionFormat) {
super(template, ExpansionOptions.REQUIRED, EncodingOptions.REQUIRED, true, charset);
this.name = new Template(name, ExpansionOptions.ALLOW_UNRESOLVED, EncodingOptions.REQUIRED,
false, charset);
this.collectionFormat = collectionFormat;
this.values = StreamSupport.stream(values.spliterator(), false)
.filter(Util::isNotBlank)
.collect(Collectors.toList());
if (this.values.isEmpty()) {
/* in this case, we have a pure parameter */
this.pure = true;
}
}
public List<String> getValues() {
return values;
}
public String getName() {
return name.toString();
}
@Override
public String toString() {
return this.queryString(this.name.toString(), super.toString());
}
/**
* Expand this template. Unresolved variables are removed. If all values remain unresolved, the
* result is an empty string.
*
* @param variables containing the values for expansion.
* @return the expanded template.
*/
@Override
public String expand(Map<String, ?> variables) {
String name = this.name.expand(variables);
return this.queryString(name, super.expand(variables));
}
@Override
protected String resolveExpression(Expression expression, Map<String, ?> variables) {
if (variables.containsKey(expression.getName())) {
if (variables.get(expression.getName()) == null) {
/* explicit undefined */
return UNDEF;
}
return super.resolveExpression(expression, variables);
}
/* mark the variable as undefined */
return UNDEF;
}
private String queryString(String name, String values) {
if (this.pure) {
return name;
}
/* covert the comma separated values into a value query string */
List<String> resolved = Arrays.stream(values.split(","))
.filter(Objects::nonNull)
.filter(s -> !UNDEF.equalsIgnoreCase(s))
.collect(Collectors.toList());
if (!resolved.isEmpty()) {
return this.collectionFormat.join(name, resolved, this.getCharset()).toString();
}
/* nothing to return, all values are unresolved */
return null;
}
}