|
@@ -18,6 +18,7 @@ import org.jeecg.modules.adweb.dmp.dto.google.analytics.CreatePropertyRequestDTO
|
|
|
import org.jeecg.modules.adweb.dmp.dto.google.analytics.GAAccountDTO;
|
|
|
import org.jeecg.modules.adweb.dmp.dto.google.analytics.GAPropertyDTO;
|
|
|
import org.jeecg.modules.adweb.dmp.dto.google.gtm.CreateContainerRequestDTO;
|
|
|
+import org.jeecg.modules.adweb.dmp.dto.google.gtm.GTMAccountDTO;
|
|
|
import org.jeecg.modules.adweb.dmp.dto.google.gtm.GTMContainerDTO;
|
|
|
import org.jeecg.modules.adweb.dmp.entity.GoogleGTM;
|
|
|
import org.jeecg.modules.adweb.dmp.service.IGoogleGTMService;
|
|
@@ -43,8 +44,9 @@ import java.util.List;
|
|
|
public class GTMAdminService {
|
|
|
|
|
|
private static final String GA_CREATE_PROPERTY_API_PATH = "/api/google/ga/properties/create";
|
|
|
+ private static final String GA_DELETE_PROPERTY_API_PATH = "/api/google/ga/properties/delete";
|
|
|
private static final String GTM_CREATE_CONTAINER_API_PATH = "/api/google/gtm/containers/create";
|
|
|
- private static final String GTM_GET_CONTAINER_API_PATH = "/api/google/gtm/containers/get";
|
|
|
+ private static final String GTM_DELETE_CONTAINER_API_PATH = "/api/google/gtm/containers/delete";
|
|
|
|
|
|
@Value("${data-bridge.api.host}")
|
|
|
private String dataBridgeApiHost;
|
|
@@ -93,7 +95,6 @@ public class GTMAdminService {
|
|
|
List<GoogleGTM> googleGTMs =
|
|
|
googleGTMService.list(
|
|
|
new LambdaQueryWrapper<GoogleGTM>().eq(GoogleGTM::getSiteCode, siteCode));
|
|
|
-
|
|
|
if (ListUtil.notEmpty(googleGTMs)) {
|
|
|
log.info("站点 {} 对应的GoogleGTM已存在,ID = {}", siteCode, googleGTMs.get(0).getId());
|
|
|
return googleGTMs.get(0);
|
|
@@ -109,7 +110,6 @@ public class GTMAdminService {
|
|
|
.displayName(siteName)
|
|
|
.url(siteUrl)
|
|
|
.build());
|
|
|
-
|
|
|
GAPropertyDTO gaProperty =
|
|
|
RestTemplateUtil.postForObject(
|
|
|
restTemplate,
|
|
@@ -126,11 +126,10 @@ public class GTMAdminService {
|
|
|
createGTMContainerRequest.setRequestTime(System.currentTimeMillis());
|
|
|
createGTMContainerRequest.setData(
|
|
|
CreateContainerRequestDTO.builder()
|
|
|
- .accountResourceName(GTMContainerDTO.toResourceName(gtmAccountId))
|
|
|
+ .accountResourceName(GTMAccountDTO.toResourceName(gtmAccountId))
|
|
|
.displayName(siteName)
|
|
|
.googleTagId(gaProperty.getDataStreams().get(0).getStreamMeasurementId())
|
|
|
.build());
|
|
|
-
|
|
|
GTMContainerDTO gtmContainer =
|
|
|
RestTemplateUtil.postForObject(
|
|
|
restTemplate,
|
|
@@ -176,5 +175,50 @@ public class GTMAdminService {
|
|
|
* <li>2. 删除{@link GoogleGTM}表
|
|
|
*/
|
|
|
@VisibleForTesting
|
|
|
- void deleteContainer(String siteCode) {}
|
|
|
+ boolean deleteContainer(String siteCode) {
|
|
|
+ List<GoogleGTM> googleGTMs =
|
|
|
+ googleGTMService.list(
|
|
|
+ new LambdaQueryWrapper<GoogleGTM>().eq(GoogleGTM::getSiteCode, siteCode));
|
|
|
+ if (ListUtil.isEmpty(googleGTMs)) {
|
|
|
+ log.info("站点 {} 对应的GoogleGTM不存在", siteCode);
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+
|
|
|
+ GoogleGTM googleGTM = googleGTMs.get(0);
|
|
|
+
|
|
|
+ // 1. 删除GA property - 通过data-bridge API
|
|
|
+ OpenAPIRequest<String> deleteGAPropertyRequest = new OpenAPIRequest<>();
|
|
|
+ deleteGAPropertyRequest.setRequestServer(this.getClass().getSimpleName());
|
|
|
+ deleteGAPropertyRequest.setRequestTime(System.currentTimeMillis());
|
|
|
+ deleteGAPropertyRequest.setData(GAPropertyDTO.toResourceName(googleGTM.getGaPropertyId()));
|
|
|
+ String gaPropertyResourceName =
|
|
|
+ RestTemplateUtil.postForObject(
|
|
|
+ restTemplate,
|
|
|
+ dataBridgeApiHost + GA_DELETE_PROPERTY_API_PATH,
|
|
|
+ deleteGAPropertyRequest,
|
|
|
+ new ParameterizedTypeReference<OpenAPIResponse<String>>() {})
|
|
|
+ .getData();
|
|
|
+ log.info("为站点 {} 删除GA property: {}", siteCode, gaPropertyResourceName);
|
|
|
+
|
|
|
+ // 2. 删除GTM container - 通过data-bridge API
|
|
|
+ OpenAPIRequest<String> deleteGTMContainerRequest = new OpenAPIRequest<>();
|
|
|
+ deleteGTMContainerRequest.setRequestServer(this.getClass().getSimpleName());
|
|
|
+ deleteGTMContainerRequest.setRequestTime(System.currentTimeMillis());
|
|
|
+ deleteGTMContainerRequest.setData(
|
|
|
+ GTMContainerDTO.toResourceName(
|
|
|
+ googleGTM.getGtmAccountId(), googleGTM.getGtmContainerId()));
|
|
|
+ String gtmContainerResourceName =
|
|
|
+ RestTemplateUtil.postForObject(
|
|
|
+ restTemplate,
|
|
|
+ dataBridgeApiHost + GTM_DELETE_CONTAINER_API_PATH,
|
|
|
+ deleteGTMContainerRequest,
|
|
|
+ new ParameterizedTypeReference<OpenAPIResponse<String>>() {})
|
|
|
+ .getData();
|
|
|
+ log.info("为站点 {} 删除GTM container: {}", siteCode, gtmContainerResourceName);
|
|
|
+
|
|
|
+ // 3. 更新数据库
|
|
|
+ googleGTMService.removeById(googleGTM.getId());
|
|
|
+
|
|
|
+ return true;
|
|
|
+ }
|
|
|
}
|