-
Notifications
You must be signed in to change notification settings - Fork 276
/
Copy pathSearchResourceImpl.java
222 lines (200 loc) · 9.29 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
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.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.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.impl.sql.RegistryStorageContentUtils;
import io.apicurio.registry.types.Current;
import io.apicurio.registry.util.ContentTypeUtil;
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)
{
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.ofGroup(new GroupId(groupId).getRawGroupIdWithNull()));
}
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));
}
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, 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);
}
if (ContentTypeUtil.isApplicationYaml(getContentType())) {
content = ContentTypeUtil.yamlToJson(content);
}
Set<SearchFilter> filters = new HashSet<SearchFilter>();
if (canonical && artifactType != null) {
String canonicalHash = contentUtils.getCanonicalContentHash(content, 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);
}
ArtifactSearchResultsDto results = storage.searchArtifacts(filters, oBy, oDir, offset.intValue(), limit.intValue());
return V3ApiUtil.dtoToSearchResults(results);
}
@Override
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.ofGroup(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);
}
/**
* Make sure this is ONLY used when request instance is active.
* e.g. in actual http request
*/
private String getContentType() {
return request.getContentType();
}
}