-
Notifications
You must be signed in to change notification settings - Fork 276
/
Copy pathSearchResourceImpl.java
202 lines (181 loc) · 8.18 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
package io.apicurio.registry.rest.v2;
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.canon.ContentCanonicalizer;
import io.apicurio.registry.metrics.health.liveness.ResponseErrorLivenessCheck;
import io.apicurio.registry.metrics.health.readiness.ResponseTimeoutReadinessCheck;
import io.apicurio.registry.rest.v2.beans.ArtifactSearchResults;
import io.apicurio.registry.rest.v2.beans.SortBy;
import io.apicurio.registry.rest.v2.beans.SortOrder;
import io.apicurio.registry.storage.RegistryStorage;
import io.apicurio.registry.storage.dto.ArtifactSearchResultsDto;
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.types.Current;
import io.apicurio.registry.types.provider.ArtifactTypeUtilProvider;
import io.apicurio.registry.types.provider.ArtifactTypeUtilProviderFactory;
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 org.apache.commons.codec.digest.DigestUtils;
import org.slf4j.Logger;
import java.io.InputStream;
import java.math.BigInteger;
import java.util.Collections;
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
Logger log;
@Inject
@Current
RegistryStorage storage;
@Inject
ArtifactTypeUtilProviderFactory factory;
@Context
HttpServletRequest request;
/**
* @see io.apicurio.registry.rest.v2.SearchResource#searchArtifacts(String, BigInteger, BigInteger, SortOrder, SortBy, List, List, String, String, Long, Long)
*/
@Override
@Authorized(style=AuthorizedStyle.None, level=AuthorizedLevel.Read)
public ArtifactSearchResults searchArtifacts(String name, BigInteger offset, BigInteger limit, SortOrder order,
SortBy orderby, List<String> labels, List<String> properties, String description, String group,
Long globalId, Long contentId)
{
if (orderby == null) {
orderby = SortBy.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(group)) {
filters.add(SearchFilter.ofGroupId(gidOrNull(group)));
}
if (properties != null && !properties.isEmpty()) {
properties.stream()
.map(prop -> {
int delimiterIndex = prop.indexOf(":");
String propertyKey;
String propertyValue;
if (delimiterIndex == 0) {
throw new BadRequestException("property search filter wrong formatted, missing left side of ':' delimiter");
}
if (delimiterIndex == (prop.length() - 1)) {
throw new BadRequestException("property search filter wrong formatted, missing right side of ':' delimiter");
}
if (delimiterIndex < 0) {
propertyKey = prop;
propertyValue = null;
} else{
propertyKey = prop.substring(0, delimiterIndex);
propertyValue = prop.substring(delimiterIndex + 1);
}
return SearchFilter.ofLabel(propertyKey, propertyValue);
})
.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 V2ApiUtil.dtoToSearchResults(results);
}
/**
* @see io.apicurio.registry.rest.v2.SearchResource#searchArtifactsByContent(Boolean, String, BigInteger, BigInteger, SortOrder, SortBy, InputStream)
*/
@Override
@Authorized(style=AuthorizedStyle.None, level=AuthorizedLevel.Read)
public ArtifactSearchResults searchArtifactsByContent(Boolean canonical, String artifactType, BigInteger offset, BigInteger limit, SortOrder order, SortBy orderby, InputStream data) {
if (orderby == null) {
orderby = SortBy.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 = sha256Hash(canonicalizeContent(artifactType, content));
filters.add(SearchFilter.ofCanonicalHash(canonicalHash));
} else if (!canonical) {
String contentHash = sha256Hash(content);
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 V2ApiUtil.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();
}
private String sha256Hash(ContentHandle chandle) {
return DigestUtils.sha256Hex(chandle.bytes());
}
private String gidOrNull(String groupId) {
if ("default".equalsIgnoreCase(groupId)) {
return null;
}
return groupId;
}
protected ContentHandle canonicalizeContent(String artifactType, ContentHandle content) {
try {
ArtifactTypeUtilProvider provider = factory.getArtifactTypeProvider(artifactType);
ContentCanonicalizer canonicalizer = provider.getContentCanonicalizer();
ContentHandle canonicalContent = canonicalizer.canonicalize(content, Collections.emptyMap());
return canonicalContent;
} catch (Exception e) {
log.debug("Failed to canonicalize content of type: {}", artifactType);
return content;
}
}
}