|
@@ -6,15 +6,11 @@ import com.xxl.job.core.handler.annotation.XxlJob;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
|
import org.jeecg.modules.adweb.common.constant.AdwebConstant;
|
|
|
+import org.jeecg.modules.adweb.common.util.CommonUtil;
|
|
|
import org.jeecg.modules.adweb.seo.service.dataforseo.DataForSEOService;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
-import java.util.Arrays;
|
|
|
-import java.util.Collections;
|
|
|
-import java.util.List;
|
|
|
-import java.util.Objects;
|
|
|
-
|
|
|
/**
|
|
|
* DataForSEO Serp查询及同步任务,{@link DataForSEOService}
|
|
|
*
|
|
@@ -36,7 +32,7 @@ public class DataForSEOJob {
|
|
|
public ReturnT<String> runLongTailKeywordsSerpTasksHandler(String siteCodes) {
|
|
|
log.info("执行长尾词Serp查询..., site codes = {}", siteCodes);
|
|
|
dataForSEOService.runKeywordsSerpTasks(
|
|
|
- this.parseSiteCodes(siteCodes),
|
|
|
+ CommonUtil.splitAndTrim(siteCodes, ","),
|
|
|
AdwebConstant.KEYWORD_TYPE_LONG_TAIL,
|
|
|
Integer.MAX_VALUE);
|
|
|
log.info("执行长尾词Serp查询结束");
|
|
@@ -54,7 +50,7 @@ public class DataForSEOJob {
|
|
|
public ReturnT<String> runAppointKeywordsSerpTasksHandler(String siteCodes) {
|
|
|
log.info("执行指定词Serp查询..., site codes = {}", siteCodes);
|
|
|
dataForSEOService.runKeywordsSerpTasks(
|
|
|
- this.parseSiteCodes(siteCodes),
|
|
|
+ CommonUtil.splitAndTrim(siteCodes, ","),
|
|
|
AdwebConstant.KEYWORD_TYPE_APPOINT,
|
|
|
Integer.MAX_VALUE);
|
|
|
log.info("执行指定词Serp查询结束");
|
|
@@ -75,10 +71,4 @@ public class DataForSEOJob {
|
|
|
|
|
|
return ReturnT.SUCCESS;
|
|
|
}
|
|
|
-
|
|
|
- private List<String> parseSiteCodes(String param) {
|
|
|
- return Objects.nonNull(param)
|
|
|
- ? Arrays.stream(param.split(",")).map(siteCode -> siteCode.trim()).toList()
|
|
|
- : Collections.EMPTY_LIST;
|
|
|
- }
|
|
|
}
|