|
@@ -10,13 +10,13 @@ import com.google.api.services.tagmanager.TagManagerScopes;
|
|
|
import com.google.api.services.tagmanager.model.*;
|
|
|
import com.google.auth.http.HttpCredentialsAdapter;
|
|
|
import com.google.auth.oauth2.GoogleCredentials;
|
|
|
-import com.google.common.annotations.VisibleForTesting;
|
|
|
import com.wechi.adweb.bridge.exception.DataException;
|
|
|
import com.wechi.adweb.bridge.google.gtm.dto.*;
|
|
|
import com.wechi.adweb.bridge.util.JsonUtils;
|
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
|
+import org.apache.commons.lang3.BooleanUtils;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
@@ -128,7 +128,8 @@ public class GTMService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- public GTMContainerDTO createContainer(String accountResourceName, String displayName)
|
|
|
+ public GTMContainerDTO createContainer(
|
|
|
+ String accountResourceName, String displayName, String googleTagId)
|
|
|
throws DataException {
|
|
|
try {
|
|
|
Container container = new Container();
|
|
@@ -143,19 +144,26 @@ public class GTMService {
|
|
|
.execute();
|
|
|
log.info("Created container {}", JsonUtils.toJson(createdContainer));
|
|
|
|
|
|
- // Converts and returns.
|
|
|
- return GTMContainerDTO.builder()
|
|
|
- .id(createdContainer.getContainerId())
|
|
|
- .resourceName(createdContainer.getPath())
|
|
|
- .displayName(createdContainer.getName())
|
|
|
- .accountId(parseId(accountResourceName))
|
|
|
- .domainNames(createdContainer.getDomainName())
|
|
|
- .publicId(createdContainer.getPublicId())
|
|
|
- .tagIds(createdContainer.getTagIds())
|
|
|
- .notes(createdContainer.getNotes())
|
|
|
- .usageContext(createdContainer.getUsageContext())
|
|
|
- .fingerprint(container.getFingerprint())
|
|
|
- .build();
|
|
|
+ // Converts.
|
|
|
+ GTMContainerDTO gtmContainer =
|
|
|
+ GTMContainerDTO.builder()
|
|
|
+ .id(createdContainer.getContainerId())
|
|
|
+ .resourceName(createdContainer.getPath())
|
|
|
+ .displayName(createdContainer.getName())
|
|
|
+ .accountId(parseId(accountResourceName))
|
|
|
+ .domainNames(createdContainer.getDomainName())
|
|
|
+ .publicId(createdContainer.getPublicId())
|
|
|
+ .tagIds(createdContainer.getTagIds())
|
|
|
+ .notes(createdContainer.getNotes())
|
|
|
+ .usageContext(createdContainer.getUsageContext())
|
|
|
+ .fingerprint(container.getFingerprint())
|
|
|
+ .build();
|
|
|
+
|
|
|
+ // Initializes the container in ASYNC mode.
|
|
|
+ this.initContainerAccess(accountResourceName, gtmContainer.getId());
|
|
|
+ this.initContainerSetups(gtmContainer.getResourceName(), googleTagId);
|
|
|
+
|
|
|
+ return gtmContainer;
|
|
|
} catch (IOException e) {
|
|
|
log.error(e.getMessage());
|
|
|
throw new DataException(e);
|
|
@@ -172,8 +180,8 @@ public class GTMService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- @VisibleForTesting
|
|
|
- void initContainerAccess(String accountResourceName, String containerId) throws DataException {
|
|
|
+ private void initContainerAccess(String accountResourceName, String containerId)
|
|
|
+ throws DataException {
|
|
|
try {
|
|
|
// 1. Container access.
|
|
|
// See
|
|
@@ -211,8 +219,16 @@ public class GTMService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- @VisibleForTesting
|
|
|
- GTMWorkspaceDTO getDefaultWorkspace(String containerResourceName) throws DataException {
|
|
|
+ private void initContainerSetups(String containerResourceName, String googleTagId)
|
|
|
+ throws DataException {
|
|
|
+ GTMWorkspaceDTO gtmWorkspace = this.getDefaultWorkspace(containerResourceName);
|
|
|
+ GTMTriggerDTO gtmTrigger = this.createTrigger(gtmWorkspace.getResourceName());
|
|
|
+ this.createGoogleTag(gtmWorkspace.getResourceName(), gtmTrigger.getId(), googleTagId);
|
|
|
+ GTMVersionDTO gtmVersion = this.createContainerVersion(gtmWorkspace.getResourceName());
|
|
|
+ this.publishContainerVersion(gtmVersion.getResourceName());
|
|
|
+ }
|
|
|
+
|
|
|
+ private GTMWorkspaceDTO getDefaultWorkspace(String containerResourceName) throws DataException {
|
|
|
try {
|
|
|
Workspace workspace =
|
|
|
tagManager
|
|
@@ -248,8 +264,7 @@ public class GTMService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- @VisibleForTesting
|
|
|
- GTMTriggerDTO createTrigger(String workspaceResourceName) throws DataException {
|
|
|
+ private GTMTriggerDTO createTrigger(String workspaceResourceName) throws DataException {
|
|
|
try {
|
|
|
Trigger trigger = new Trigger();
|
|
|
trigger.setName("Page View Trigger");
|
|
@@ -285,8 +300,7 @@ public class GTMService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- @VisibleForTesting
|
|
|
- void createGoogleTag(String workspaceResourceName, String triggerId, String googleTagId)
|
|
|
+ private void createGoogleTag(String workspaceResourceName, String triggerId, String googleTagId)
|
|
|
throws DataException {
|
|
|
try {
|
|
|
Parameter parameter = new Parameter();
|
|
@@ -317,8 +331,8 @@ public class GTMService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- @VisibleForTesting
|
|
|
- GTMVersionDTO createContainerVersion(String workspaceResourceName) throws DataException {
|
|
|
+ private GTMVersionDTO createContainerVersion(String workspaceResourceName)
|
|
|
+ throws DataException {
|
|
|
try {
|
|
|
CreateContainerVersionRequestVersionOptions versionOptions =
|
|
|
new CreateContainerVersionRequestVersionOptions();
|
|
@@ -344,7 +358,7 @@ public class GTMService {
|
|
|
.displayName(createdContainerVersion.getName())
|
|
|
.accountId(createdContainerVersion.getAccountId())
|
|
|
.containerId(createdContainerVersion.getContainerId())
|
|
|
- .deleted(createdContainerVersion.getDeleted())
|
|
|
+ .deleted(BooleanUtils.isTrue(createdContainerVersion.getDeleted()))
|
|
|
.description(createdContainerVersion.getDescription())
|
|
|
.fingerprint(createdContainerVersion.getFingerprint())
|
|
|
.build();
|
|
@@ -354,8 +368,7 @@ public class GTMService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- @VisibleForTesting
|
|
|
- void publishContainerVersion(String versionResourceName) throws Exception {
|
|
|
+ private void publishContainerVersion(String versionResourceName) throws DataException {
|
|
|
try {
|
|
|
tagManager.accounts().containers().versions().publish(versionResourceName).execute();
|
|
|
log.info("Published container version {}", versionResourceName);
|