-
Notifications
You must be signed in to change notification settings - Fork 276
/
Copy pathSearchResourceImpl.java
373 lines (339 loc) · 15.3 KB
/
SearchResourceImpl.java
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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
package io.apicurio.registry.rest.v3;
import io.apicurio.common.apps.logging.Logged;
import io.apicurio.registry.auth.Authorized;
import io.apicurio.registry.auth.AuthorizedLevel;
import io.apicurio.registry.auth.AuthorizedStyle;
import io.apicurio.registry.content.ContentHandle;
import io.apicurio.registry.content.TypedContent;
import io.apicurio.registry.metrics.health.liveness.ResponseErrorLivenessCheck;
import io.apicurio.registry.metrics.health.readiness.ResponseTimeoutReadinessCheck;
import io.apicurio.registry.model.GroupId;
import io.apicurio.registry.rest.v3.beans.ArtifactSearchResults;
import io.apicurio.registry.rest.v3.beans.ArtifactSortBy;
import io.apicurio.registry.rest.v3.beans.GroupSearchResults;
import io.apicurio.registry.rest.v3.beans.GroupSortBy;
import io.apicurio.registry.rest.v3.beans.SortOrder;
import io.apicurio.registry.rest.v3.beans.VersionSearchResults;
import io.apicurio.registry.rest.v3.beans.VersionSortBy;
import io.apicurio.registry.storage.RegistryStorage;
import io.apicurio.registry.storage.dto.ArtifactSearchResultsDto;
import io.apicurio.registry.storage.dto.GroupSearchResultsDto;
import io.apicurio.registry.storage.dto.OrderBy;
import io.apicurio.registry.storage.dto.OrderDirection;
import io.apicurio.registry.storage.dto.SearchFilter;
import io.apicurio.registry.storage.dto.VersionSearchResultsDto;
import io.apicurio.registry.storage.impl.sql.RegistryStorageContentUtils;
import io.apicurio.registry.types.Current;
import io.apicurio.registry.types.VersionState;
import io.apicurio.registry.utils.StringUtil;
import jakarta.enterprise.context.ApplicationScoped;
import jakarta.inject.Inject;
import jakarta.interceptor.Interceptors;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.ws.rs.BadRequestException;
import jakarta.ws.rs.core.Context;
import java.io.InputStream;
import java.math.BigInteger;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
@ApplicationScoped
@Interceptors({ ResponseErrorLivenessCheck.class, ResponseTimeoutReadinessCheck.class })
@Logged
public class SearchResourceImpl implements SearchResource {
private static final String EMPTY_CONTENT_ERROR_MESSAGE = "Empty content is not allowed.";
private static final String CANONICAL_QUERY_PARAM_ERROR_MESSAGE = "When setting 'canonical' to 'true', the 'artifactType' query parameter is also required.";
@Inject
@Current
RegistryStorage storage;
@Context
HttpServletRequest request;
@Inject
RegistryStorageContentUtils contentUtils;
@Override
@Authorized(style = AuthorizedStyle.None, level = AuthorizedLevel.Read)
public ArtifactSearchResults searchArtifacts(String name, BigInteger offset, BigInteger limit,
SortOrder order, ArtifactSortBy orderby, List<String> labels, String description, String groupId,
Long globalId, Long contentId, String artifactId, String artifactType) {
if (orderby == null) {
orderby = ArtifactSortBy.name;
}
if (offset == null) {
offset = BigInteger.valueOf(0);
}
if (limit == null) {
limit = BigInteger.valueOf(20);
}
final OrderBy oBy = OrderBy.valueOf(orderby.name());
final OrderDirection oDir = (order == null || order == SortOrder.asc) ? OrderDirection.asc
: OrderDirection.desc;
Set<SearchFilter> filters = new HashSet<SearchFilter>();
if (!StringUtil.isEmpty(name)) {
filters.add(SearchFilter.ofName(name));
}
if (!StringUtil.isEmpty(description)) {
filters.add(SearchFilter.ofDescription(description));
}
if (!StringUtil.isEmpty(groupId)) {
filters.add(SearchFilter.ofGroupId(new GroupId(groupId).getRawGroupIdWithNull()));
}
if (!StringUtil.isEmpty(artifactId)) {
filters.add(SearchFilter.ofArtifactId(artifactId));
}
if (!StringUtil.isEmpty(artifactType)) {
filters.add(SearchFilter.ofArtifactType(artifactType));
}
if (labels != null && !labels.isEmpty()) {
labels.stream().map(prop -> {
int delimiterIndex = prop.indexOf(":");
String labelKey;
String labelValue;
if (delimiterIndex == 0) {
throw new BadRequestException(
"label search filter wrong format, missing left side of ':' delimiter");
}
if (delimiterIndex == (prop.length() - 1)) {
throw new BadRequestException(
"label search filter wrong format, missing right side of ':' delimiter");
}
if (delimiterIndex < 0) {
labelKey = prop;
labelValue = null;
} else {
labelKey = prop.substring(0, delimiterIndex);
labelValue = prop.substring(delimiterIndex + 1);
}
return SearchFilter.ofLabel(labelKey, labelValue);
}).forEach(filters::add);
}
if (globalId != null && globalId > 0) {
filters.add(SearchFilter.ofGlobalId(globalId));
}
if (contentId != null && contentId > 0) {
filters.add(SearchFilter.ofContentId(contentId));
}
ArtifactSearchResultsDto results = storage.searchArtifacts(filters, oBy, oDir, offset.intValue(),
limit.intValue());
return V3ApiUtil.dtoToSearchResults(results);
}
@Override
@Authorized(style = AuthorizedStyle.None, level = AuthorizedLevel.Read)
public ArtifactSearchResults searchArtifactsByContent(Boolean canonical, String artifactType,
String groupId, BigInteger offset, BigInteger limit, SortOrder order, ArtifactSortBy orderby,
InputStream data) {
if (orderby == null) {
orderby = ArtifactSortBy.name;
}
if (offset == null) {
offset = BigInteger.valueOf(0);
}
if (limit == null) {
limit = BigInteger.valueOf(20);
}
final OrderBy oBy = OrderBy.valueOf(orderby.name());
final OrderDirection oDir = order == null || order == SortOrder.asc ? OrderDirection.asc
: OrderDirection.desc;
if (canonical == null) {
canonical = Boolean.FALSE;
}
ContentHandle content = ContentHandle.create(data);
if (content.bytes().length == 0) {
throw new BadRequestException(EMPTY_CONTENT_ERROR_MESSAGE);
}
String ct = getContentType();
TypedContent typedContent = TypedContent.create(content, ct);
Set<SearchFilter> filters = new HashSet<SearchFilter>();
if (canonical && artifactType != null) {
String canonicalHash = contentUtils.getCanonicalContentHash(typedContent, artifactType, null,
null);
filters.add(SearchFilter.ofCanonicalHash(canonicalHash));
} else if (!canonical) {
String contentHash = content.getSha256Hash();
filters.add(SearchFilter.ofContentHash(contentHash));
} else {
throw new BadRequestException(CANONICAL_QUERY_PARAM_ERROR_MESSAGE);
}
if (!StringUtil.isEmpty(groupId)) {
filters.add(SearchFilter.ofGroupId(new GroupId(groupId).getRawGroupIdWithNull()));
}
ArtifactSearchResultsDto results = storage.searchArtifacts(filters, oBy, oDir, offset.intValue(),
limit.intValue());
return V3ApiUtil.dtoToSearchResults(results);
}
@Override
@Authorized(style = AuthorizedStyle.None, level = AuthorizedLevel.Read)
public GroupSearchResults searchGroups(BigInteger offset, BigInteger limit, SortOrder order,
GroupSortBy orderby, List<String> labels, String description, String groupId) {
if (orderby == null) {
orderby = GroupSortBy.groupId;
}
if (offset == null) {
offset = BigInteger.valueOf(0);
}
if (limit == null) {
limit = BigInteger.valueOf(20);
}
final OrderBy oBy = OrderBy.valueOf(orderby.name());
final OrderDirection oDir = order == null || order == SortOrder.asc ? OrderDirection.asc
: OrderDirection.desc;
Set<SearchFilter> filters = new HashSet<SearchFilter>();
if (!StringUtil.isEmpty(groupId)) {
filters.add(SearchFilter.ofGroupId(groupId));
}
if (!StringUtil.isEmpty(description)) {
filters.add(SearchFilter.ofDescription(description));
}
if (labels != null && !labels.isEmpty()) {
labels.stream().map(prop -> {
int delimiterIndex = prop.indexOf(":");
String labelKey;
String labelValue;
if (delimiterIndex == 0) {
throw new BadRequestException(
"label search filter wrong formatted, missing left side of ':' delimiter");
}
if (delimiterIndex == (prop.length() - 1)) {
throw new BadRequestException(
"label search filter wrong formatted, missing right side of ':' delimiter");
}
if (delimiterIndex < 0) {
labelKey = prop;
labelValue = null;
} else {
labelKey = prop.substring(0, delimiterIndex);
labelValue = prop.substring(delimiterIndex + 1);
}
return SearchFilter.ofLabel(labelKey, labelValue);
}).forEach(filters::add);
}
GroupSearchResultsDto results = storage.searchGroups(filters, oBy, oDir, offset.intValue(),
limit.intValue());
return V3ApiUtil.dtoToSearchResults(results);
}
@Override
@Authorized(style = AuthorizedStyle.None, level = AuthorizedLevel.Read)
public VersionSearchResults searchVersions(String version, BigInteger offset, BigInteger limit,
SortOrder order, VersionSortBy orderby, List<String> labels, String description, String groupId,
Long globalId, Long contentId, String artifactId, String name, VersionState state,
String artifactType) {
if (orderby == null) {
orderby = VersionSortBy.globalId;
}
if (offset == null) {
offset = BigInteger.valueOf(0);
}
if (limit == null) {
limit = BigInteger.valueOf(20);
}
final OrderBy oBy = OrderBy.valueOf(orderby.name());
final OrderDirection oDir = (order == null || order == SortOrder.asc) ? OrderDirection.asc
: OrderDirection.desc;
Set<SearchFilter> filters = new HashSet<SearchFilter>();
if (!StringUtil.isEmpty(groupId)) {
filters.add(SearchFilter.ofGroupId(new GroupId(groupId).getRawGroupIdWithNull()));
}
if (!StringUtil.isEmpty(artifactId)) {
filters.add(SearchFilter.ofArtifactId(artifactId));
}
if (!StringUtil.isEmpty(version)) {
filters.add(SearchFilter.ofVersion(version));
}
if (!StringUtil.isEmpty(name)) {
filters.add(SearchFilter.ofName(name));
}
if (!StringUtil.isEmpty(description)) {
filters.add(SearchFilter.ofDescription(description));
}
if (!StringUtil.isEmpty(artifactType)) {
filters.add(SearchFilter.ofArtifactType(artifactType));
}
if (labels != null && !labels.isEmpty()) {
labels.stream().map(prop -> {
int delimiterIndex = prop.indexOf(":");
String labelKey;
String labelValue;
if (delimiterIndex == 0) {
throw new BadRequestException(
"label search filter wrong formatted, missing left side of ':' delimiter");
}
if (delimiterIndex == (prop.length() - 1)) {
throw new BadRequestException(
"label search filter wrong formatted, missing right side of ':' delimiter");
}
if (delimiterIndex < 0) {
labelKey = prop;
labelValue = null;
} else {
labelKey = prop.substring(0, delimiterIndex);
labelValue = prop.substring(delimiterIndex + 1);
}
return SearchFilter.ofLabel(labelKey, labelValue);
}).forEach(filters::add);
}
if (globalId != null && globalId > 0) {
filters.add(SearchFilter.ofGlobalId(globalId));
}
if (contentId != null && contentId > 0) {
filters.add(SearchFilter.ofContentId(contentId));
}
if (state != null) {
filters.add(SearchFilter.ofState(state));
}
VersionSearchResultsDto results = storage.searchVersions(filters, oBy, oDir, offset.intValue(),
limit.intValue());
return V3ApiUtil.dtoToSearchResults(results);
}
@Override
@Authorized(style = AuthorizedStyle.None, level = AuthorizedLevel.Read)
public VersionSearchResults searchVersionsByContent(Boolean canonical, String artifactType,
BigInteger offset, BigInteger limit, SortOrder order, VersionSortBy orderby, String groupId,
String artifactId, InputStream data) {
if (orderby == null) {
orderby = VersionSortBy.globalId;
}
if (offset == null) {
offset = BigInteger.valueOf(0);
}
if (limit == null) {
limit = BigInteger.valueOf(20);
}
final OrderBy oBy = OrderBy.valueOf(orderby.name());
final OrderDirection oDir = (order == null || order == SortOrder.asc) ? OrderDirection.asc
: OrderDirection.desc;
Set<SearchFilter> filters = new HashSet<SearchFilter>();
if (!StringUtil.isEmpty(groupId)) {
filters.add(SearchFilter.ofGroupId(new GroupId(groupId).getRawGroupIdWithNull()));
}
if (!StringUtil.isEmpty(artifactId)) {
filters.add(SearchFilter.ofArtifactId(artifactId));
}
if (canonical == null) {
canonical = Boolean.FALSE;
}
ContentHandle content = ContentHandle.create(data);
if (content.bytes().length == 0) {
throw new BadRequestException(EMPTY_CONTENT_ERROR_MESSAGE);
}
String ct = getContentType();
TypedContent typedContent = TypedContent.create(content, ct);
if (canonical && artifactType != null) {
String canonicalHash = contentUtils.getCanonicalContentHash(typedContent, artifactType, null,
null);
filters.add(SearchFilter.ofCanonicalHash(canonicalHash));
} else if (!canonical) {
String contentHash = content.getSha256Hash();
filters.add(SearchFilter.ofContentHash(contentHash));
} else {
throw new BadRequestException(CANONICAL_QUERY_PARAM_ERROR_MESSAGE);
}
VersionSearchResultsDto results = storage.searchVersions(filters, oBy, oDir, offset.intValue(),
limit.intValue());
return V3ApiUtil.dtoToSearchResults(results);
}
/**
* Make sure this is ONLY used when request instance is active. e.g. in actual http request
*/
private String getContentType() {
return request.getContentType();
}
}