|
@@ -118,6 +118,8 @@ public class GTMService {
|
|
|
// .headSnippet(snippetService.getHeadSnippet(container.getPublicId()))
|
|
|
// .bodySnippet(snippetService.getBodySnippet(container.getPublicId()))
|
|
|
.fingerprint(container.getFingerprint())
|
|
|
+ // Omits tags for list request to reduce payload size.
|
|
|
+ .tags(Collections.EMPTY_LIST)
|
|
|
.build();
|
|
|
|
|
|
// Adds into the list;
|
|
@@ -135,6 +137,52 @@ public class GTMService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ private List<GTMTagDTO> listTags(String workspaceResourceName) throws DataException {
|
|
|
+ try {
|
|
|
+ List<GTMTagDTO> gtmTags = Lists.newArrayList();
|
|
|
+ for (Tag tag :
|
|
|
+ tagManager
|
|
|
+ .accounts()
|
|
|
+ .containers()
|
|
|
+ .workspaces()
|
|
|
+ .tags()
|
|
|
+ .list(workspaceResourceName)
|
|
|
+ .execute()
|
|
|
+ .getTag()) {
|
|
|
+ GTMTagDTO gtmTag =
|
|
|
+ GTMTagDTO.builder()
|
|
|
+ .id(tag.getTagId())
|
|
|
+ .resourceName(tag.getPath())
|
|
|
+ .displayName(tag.getName())
|
|
|
+ .accountId(tag.getAccountId())
|
|
|
+ .containerId(tag.getContainerId())
|
|
|
+ .workspaceId(tag.getWorkspaceId())
|
|
|
+ .type(tag.getType())
|
|
|
+ .parameters(
|
|
|
+ tag.getParameter().stream()
|
|
|
+ .map(
|
|
|
+ parameter ->
|
|
|
+ GTMTagDTO.TagParameter.builder()
|
|
|
+ .type(parameter.getType())
|
|
|
+ .key(parameter.getKey())
|
|
|
+ .value(parameter.getValue())
|
|
|
+ .build())
|
|
|
+ .toList())
|
|
|
+ .firingTriggerIds(tag.getFiringTriggerId())
|
|
|
+ .build();
|
|
|
+
|
|
|
+ // Adds into the list;
|
|
|
+ gtmTags.add(gtmTag);
|
|
|
+ }
|
|
|
+
|
|
|
+ log.info("listTags for {} : {}", workspaceResourceName, JsonUtils.toJson(gtmTags));
|
|
|
+ return gtmTags;
|
|
|
+ } catch (IOException e) {
|
|
|
+ log.error(e.getMessage());
|
|
|
+ throw new DataException(e);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
public GTMContainerDTO getContainer(String containerResourceName) throws DataException {
|
|
|
try {
|
|
|
Container container =
|
|
@@ -155,6 +203,11 @@ public class GTMService {
|
|
|
.headSnippet(snippetService.getHeadSnippet(container.getPublicId()))
|
|
|
.bodySnippet(snippetService.getBodySnippet(container.getPublicId()))
|
|
|
.fingerprint(container.getFingerprint())
|
|
|
+ // Sets the tags associated with this container.
|
|
|
+ .tags(
|
|
|
+ this.listTags(
|
|
|
+ this.getDefaultWorkspace(container.getPath())
|
|
|
+ .getResourceName()))
|
|
|
.build();
|
|
|
|
|
|
log.info("getContainer : {}", JsonUtils.toJson(gtmContainer));
|