|
@@ -17,6 +17,7 @@ import com.wechi.adweb.bridge.util.JsonUtils;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
|
import org.apache.commons.lang3.BooleanUtils;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
@@ -42,6 +43,8 @@ public class GTMService {
|
|
|
@Value("${google.gtm.container.admins}")
|
|
|
private List<String> containerAdmins;
|
|
|
|
|
|
+ @Autowired private SnippetService snippetService;
|
|
|
+
|
|
|
public TagManager tagManager;
|
|
|
|
|
|
@PostConstruct
|
|
@@ -110,6 +113,9 @@ public class GTMService {
|
|
|
.tagIds(container.getTagIds())
|
|
|
.notes(container.getNotes())
|
|
|
.usageContext(container.getUsageContext())
|
|
|
+ // Omits snippets for list request to reduce payload size.
|
|
|
+ // .headSnippet(snippetService.getHeadSnippet(container.getPublicId()))
|
|
|
+ // .bodySnippet(snippetService.getBodySnippet(container.getPublicId()))
|
|
|
.fingerprint(container.getFingerprint())
|
|
|
.build();
|
|
|
|
|
@@ -145,6 +151,8 @@ public class GTMService {
|
|
|
.tagIds(container.getTagIds())
|
|
|
.notes(container.getNotes())
|
|
|
.usageContext(container.getUsageContext())
|
|
|
+ .headSnippet(snippetService.getHeadSnippet(container.getPublicId()))
|
|
|
+ .bodySnippet(snippetService.getBodySnippet(container.getPublicId()))
|
|
|
.fingerprint(container.getFingerprint())
|
|
|
.build();
|
|
|
|
|
@@ -183,6 +191,10 @@ public class GTMService {
|
|
|
.tagIds(createdContainer.getTagIds())
|
|
|
.notes(createdContainer.getNotes())
|
|
|
.usageContext(createdContainer.getUsageContext())
|
|
|
+ .headSnippet(
|
|
|
+ snippetService.getHeadSnippet(createdContainer.getPublicId()))
|
|
|
+ .bodySnippet(
|
|
|
+ snippetService.getBodySnippet(createdContainer.getPublicId()))
|
|
|
.fingerprint(container.getFingerprint())
|
|
|
.build();
|
|
|
|