-
Notifications
You must be signed in to change notification settings - Fork 276
/
Copy pathV2ApiUtil.java
367 lines (342 loc) · 14.6 KB
/
V2ApiUtil.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
package io.apicurio.registry.rest.v2;
import io.apicurio.registry.rest.v2.beans.ArtifactMetaData;
import io.apicurio.registry.rest.v2.beans.ArtifactReference;
import io.apicurio.registry.rest.v2.beans.ArtifactSearchResults;
import io.apicurio.registry.rest.v2.beans.Comment;
import io.apicurio.registry.rest.v2.beans.GroupMetaData;
import io.apicurio.registry.rest.v2.beans.GroupSearchResults;
import io.apicurio.registry.rest.v2.beans.SearchedArtifact;
import io.apicurio.registry.rest.v2.beans.SearchedGroup;
import io.apicurio.registry.rest.v2.beans.SearchedVersion;
import io.apicurio.registry.rest.v2.beans.SortOrder;
import io.apicurio.registry.rest.v2.beans.VersionMetaData;
import io.apicurio.registry.rest.v2.beans.VersionSearchResults;
import io.apicurio.registry.storage.dto.ArtifactMetaDataDto;
import io.apicurio.registry.storage.dto.ArtifactReferenceDto;
import io.apicurio.registry.storage.dto.ArtifactSearchResultsDto;
import io.apicurio.registry.storage.dto.ArtifactVersionMetaDataDto;
import io.apicurio.registry.storage.dto.CommentDto;
import io.apicurio.registry.storage.dto.EditableArtifactMetaDataDto;
import io.apicurio.registry.storage.dto.GroupMetaDataDto;
import io.apicurio.registry.storage.dto.GroupSearchResultsDto;
import io.apicurio.registry.storage.dto.VersionSearchResultsDto;
import io.apicurio.registry.types.ArtifactState;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Comparator;
import java.util.Date;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
public final class V2ApiUtil {
private V2ApiUtil() {
}
/**
* Creates a jax-rs meta-data entity from the id, type, and artifactStore meta-data.
*
* @param groupId
* @param artifactId
* @param artifactType
* @param dto
*/
public static ArtifactMetaData dtoToMetaData(String groupId, String artifactId,
String artifactType, ArtifactMetaDataDto dto) {
ArtifactMetaData metaData = new ArtifactMetaData();
metaData.setCreatedBy(dto.getOwner());
metaData.setCreatedOn(new Date(dto.getCreatedOn()));
metaData.setDescription(dto.getDescription());
if (groupId != null) {
metaData.setGroupId(groupId);
} else {
metaData.setGroupId(dto.getGroupId());
}
if (artifactId != null) {
metaData.setId(artifactId);
} else {
metaData.setId(dto.getArtifactId());
}
metaData.setModifiedBy(dto.getModifiedBy());
metaData.setModifiedOn(new Date(dto.getModifiedOn()));
metaData.setName(dto.getName());
if (artifactType != null) {
metaData.setType(artifactType);
} else {
metaData.setType(dto.getArtifactType());
}
metaData.setState(ArtifactState.ENABLED); // TODO artifact state has gone away from the storage layer
metaData.setLabels(toV2Labels(dto.getLabels()));
metaData.setProperties(toV2Properties(dto.getLabels()));
return metaData;
}
/**
* Converts v3 labels into v2 properties.
* @param v3Labels
* @return
*/
public static Map<String, String> toV2Properties(Map<String, String> v3Labels) {
Map<String, String> rval = new LinkedHashMap<>();
if (v3Labels != null) {
v3Labels.entrySet().forEach(entry -> {
if (entry.getValue() != null && !entry.getValue().trim().isEmpty()) {
rval.put(entry.getKey(), entry.getValue());
}
});
}
if (rval.isEmpty()) {
return null;
}
return rval;
}
/**
* Converts v3 labels into v2 labels.
* @param v3Labels
*/
public static List<String> toV2Labels(Map<String, String> v3Labels) {
List<String> rval = new ArrayList<>();
if (v3Labels != null) {
v3Labels.entrySet().forEach(entry -> {
if (entry.getValue() == null || entry.getValue().trim().isEmpty()) {
rval.add(entry.getKey());
}
});
}
if (rval.isEmpty()) {
return null;
}
return rval;
}
/**
* Converts v2 labels and properties into v3 labels.
* @param v2Labels
* @param v2Properties
*/
public static Map<String, String> toV3Labels(List<String> v2Labels, Map<String, String> v2Properties) {
Map<String, String> rval = new LinkedHashMap<>();
if (v2Labels != null) {
v2Labels.forEach(label -> rval.put(label, null));
}
if (v2Properties != null) {
rval.putAll(v2Properties);
}
if (rval.isEmpty()) {
return null;
}
return rval;
}
/**
* @param groupId
* @param artifactId
* @param artifactType
* @param dto
*/
public static ArtifactMetaData dtoToMetaData(String groupId, String artifactId, String artifactType,
ArtifactVersionMetaDataDto dto) {
ArtifactMetaData metaData = new ArtifactMetaData();
metaData.setCreatedBy(dto.getOwner());
metaData.setCreatedOn(new Date(dto.getCreatedOn()));
metaData.setDescription(dto.getDescription());
metaData.setGroupId(groupId);
metaData.setId(artifactId);
metaData.setModifiedBy(dto.getOwner());
metaData.setModifiedOn(new Date(dto.getCreatedOn()));
metaData.setName(dto.getName());
if (artifactType != null) {
metaData.setType(artifactType);
} else {
metaData.setType(dto.getArtifactType());
}
metaData.setVersion(dto.getVersion());
metaData.setGlobalId(dto.getGlobalId());
metaData.setContentId(dto.getContentId());
metaData.setState(ArtifactState.valueOf(dto.getState().name()));
metaData.setLabels(toV2Labels(dto.getLabels()));
metaData.setProperties(toV2Properties(dto.getLabels()));
return metaData;
}
/**
* Creates a jax-rs version meta-data entity from the id, type, and artifactStore meta-data.
*
* @param groupId
* @param artifactId
* @param artifactType
* @param dto
*/
public static VersionMetaData dtoToVersionMetaData(String groupId, String artifactId,
String artifactType, ArtifactMetaDataDto dto) {
VersionMetaData metaData = new VersionMetaData();
metaData.setGroupId(groupId);
metaData.setId(artifactId);
metaData.setCreatedBy(dto.getOwner());
metaData.setCreatedOn(new Date(dto.getCreatedOn()));
metaData.setDescription(dto.getDescription());
metaData.setName(dto.getName());
metaData.setType(artifactType);
metaData.setState(ArtifactState.ENABLED); // This is ok because this method is only called when creating an artifact version
metaData.setLabels(toV2Labels(dto.getLabels()));
metaData.setProperties(toV2Properties(dto.getLabels()));
return metaData;
}
/**
* Creates a jax-rs version meta-data entity from the id, type, and artifactStore meta-data.
*
* @param artifactId
* @param artifactType
* @param dto
*/
public static VersionMetaData dtoToVersionMetaData(String groupId, String artifactId, String artifactType,
ArtifactVersionMetaDataDto dto) {
VersionMetaData metaData = new VersionMetaData();
metaData.setGroupId(groupId);
metaData.setId(artifactId);
metaData.setCreatedBy(dto.getOwner());
metaData.setCreatedOn(new Date(dto.getCreatedOn()));
metaData.setDescription(dto.getDescription());
metaData.setName(dto.getName());
metaData.setType(artifactType);
metaData.setVersion(dto.getVersion());
metaData.setGlobalId(dto.getGlobalId());
metaData.setContentId(dto.getContentId());
metaData.setState(ArtifactState.fromValue(dto.getState().name()));
metaData.setLabels(toV2Labels(dto.getLabels()));
metaData.setProperties(toV2Properties(dto.getLabels()));
return metaData;
}
/**
* Sets values from the EditableArtifactMetaDataDto into the ArtifactMetaDataDto.
*
* @param amdd
* @param editableArtifactMetaData
* @return the updated ArtifactMetaDataDto object
*/
public static ArtifactMetaDataDto setEditableMetaDataInArtifact(ArtifactMetaDataDto amdd, EditableArtifactMetaDataDto editableArtifactMetaData) {
if (editableArtifactMetaData.getName() != null) {
amdd.setName(editableArtifactMetaData.getName());
}
if (editableArtifactMetaData.getDescription() != null) {
amdd.setDescription(editableArtifactMetaData.getDescription());
}
if (editableArtifactMetaData.getLabels() != null && !editableArtifactMetaData.getLabels().isEmpty()) {
amdd.setLabels(editableArtifactMetaData.getLabels());
}
return amdd;
}
public static Comparator<ArtifactMetaDataDto> comparator(SortOrder sortOrder) {
return (id1, id2) -> compare(sortOrder, id1, id2);
}
public static int compare(SortOrder sortOrder, ArtifactMetaDataDto metaDataDto1, ArtifactMetaDataDto metaDataDto2) {
String name1 = metaDataDto1.getName();
if (name1 == null) {
name1 = metaDataDto1.getArtifactId();
}
String name2 = metaDataDto2.getName();
if (name2 == null) {
name2 = metaDataDto2.getArtifactId();
}
return sortOrder == SortOrder.desc ? name2.compareToIgnoreCase(name1) : name1.compareToIgnoreCase(name2);
}
public static ArtifactSearchResults dtoToSearchResults(ArtifactSearchResultsDto dto) {
ArtifactSearchResults results = new ArtifactSearchResults();
results.setCount((int) dto.getCount());
results.setArtifacts(new ArrayList<>(dto.getArtifacts().size()));
dto.getArtifacts().forEach(artifact -> {
SearchedArtifact sa = new SearchedArtifact();
sa.setCreatedBy(artifact.getOwner());
sa.setCreatedOn(artifact.getCreatedOn());
sa.setDescription(artifact.getDescription());
sa.setId(artifact.getArtifactId());
sa.setGroupId(artifact.getGroupId());
sa.setModifiedBy(artifact.getModifiedBy());
sa.setModifiedOn(artifact.getModifiedOn());
sa.setName(artifact.getName());
sa.setState(ArtifactState.ENABLED);
sa.setType(artifact.getArtifactType());
results.getArtifacts().add(sa);
});
return results;
}
public static GroupSearchResults dtoToSearchResults(GroupSearchResultsDto dto) {
GroupSearchResults results = new GroupSearchResults();
results.setCount((int) dto.getCount());
results.setGroups(new ArrayList<>(dto.getGroups().size()));
dto.getGroups().forEach(group -> {
SearchedGroup sg = new SearchedGroup();
sg.setCreatedBy(group.getOwner());
sg.setCreatedOn(group.getCreatedOn());
sg.setDescription(group.getDescription());
sg.setId(group.getId());
sg.setModifiedBy(group.getModifiedBy());
sg.setModifiedOn(group.getModifiedOn());
results.getGroups().add(sg);
});
return results;
}
public static VersionSearchResults dtoToSearchResults(VersionSearchResultsDto dto) {
VersionSearchResults results = new VersionSearchResults();
results.setCount((int) dto.getCount());
results.setVersions(new ArrayList<>(dto.getVersions().size()));
dto.getVersions().forEach(version -> {
SearchedVersion sv = new SearchedVersion();
sv.setCreatedBy(version.getOwner());
sv.setCreatedOn(version.getCreatedOn());
sv.setDescription(version.getDescription());
sv.setGlobalId(version.getGlobalId());
sv.setContentId(version.getContentId());
sv.setName(version.getName());
sv.setState(ArtifactState.fromValue(version.getState().name()));
sv.setType(version.getArtifactType());
sv.setVersion(version.getVersion());
results.getVersions().add(sv);
});
return results;
}
public static ArtifactReferenceDto referenceToDto(ArtifactReference reference) {
final ArtifactReferenceDto artifactReference = new ArtifactReferenceDto();
artifactReference.setGroupId(reference.getGroupId());
artifactReference.setName(reference.getName());
artifactReference.setVersion(reference.getVersion());
artifactReference.setArtifactId(reference.getArtifactId());
return artifactReference;
}
public static ArtifactReference referenceDtoToReference(ArtifactReferenceDto reference) {
final ArtifactReference artifactReference = new ArtifactReference();
artifactReference.setGroupId(reference.getGroupId());
artifactReference.setName(reference.getName());
artifactReference.setVersion(reference.getVersion());
artifactReference.setArtifactId(reference.getArtifactId());
return artifactReference;
}
public static GroupMetaData groupDtoToGroup(GroupMetaDataDto dto) {
GroupMetaData group = new GroupMetaData();
group.setId(dto.getGroupId());
group.setDescription(dto.getDescription());
group.setCreatedBy(dto.getOwner());
group.setModifiedBy(dto.getModifiedBy());
group.setCreatedOn(new Date(dto.getCreatedOn()));
group.setModifiedOn(new Date(dto.getModifiedOn()));
group.setProperties(dto.getLabels());
return group;
}
public static Comment commentDtoToComment(CommentDto dto) {
return Comment.builder()
.commentId(dto.getCommentId())
.createdBy(dto.getOwner())
.createdOn(new Date(dto.getCreatedOn()))
.value(dto.getValue())
.build();
}
public static String prettyPrintReferences(Collection<ArtifactReference> references) {
return references.stream()
.map(ar -> nullGroupIdToDefault(ar.getGroupId()) + ":" + ar.getArtifactId() + ":" + ar.getVersion() + "->" + ar.getName())
.reduce((left, right) -> left + ", " + right)
.orElse("");
}
public static String defaultGroupIdToNull(String groupId) {
if ("default".equalsIgnoreCase(groupId)) {
return null;
}
return groupId;
}
public static String nullGroupIdToDefault(String groupId) {
return groupId != null ? groupId : "default";
}
}