|
@@ -188,7 +188,7 @@ public class SeoKeywordsRankServiceImpl implements ISeoKeywordsRankService {
|
|
|
if (userPlanSubscription != null) {
|
|
|
// 通过站点获取订阅id
|
|
|
List<SeoRankInfoVO> seoRankInfos =
|
|
|
- this.getSeoRankInfo(siteCode, userPlanSubscription.getId());
|
|
|
+ this.getSeoRankInfo(siteCode);
|
|
|
map.put("appointKeyword", seoRankInfos.get(0));
|
|
|
map.put("longTailKeyword", seoRankInfos.get(1));
|
|
|
|
|
@@ -208,13 +208,13 @@ public class SeoKeywordsRankServiceImpl implements ISeoKeywordsRankService {
|
|
|
* @return 关键词排名数量
|
|
|
*/
|
|
|
@Override
|
|
|
- public List<SeoRankInfoVO> getSeoRankInfo(String siteCode, String subscriptionId)
|
|
|
+ public List<SeoRankInfoVO> getSeoRankInfo(String siteCode)
|
|
|
throws ParseException {
|
|
|
// 排名信息
|
|
|
SeoRankInfoVO appointRankInfo = new SeoRankInfoVO();
|
|
|
SeoRankInfoVO longTailRankInfo = new SeoRankInfoVO();
|
|
|
// 1-10
|
|
|
- Map<String, Integer> first = dealKeywordsRankData(siteCode, subscriptionId, 1, 10);
|
|
|
+ Map<String, Integer> first = dealKeywordsRankData(siteCode, 1, 10);
|
|
|
if (first.containsKey("appoint")) {
|
|
|
appointRankInfo.setFirstNum(first.get("appoint"));
|
|
|
}
|
|
@@ -223,7 +223,7 @@ public class SeoKeywordsRankServiceImpl implements ISeoKeywordsRankService {
|
|
|
}
|
|
|
|
|
|
// 11-30
|
|
|
- Map<String, Integer> second = dealKeywordsRankData(siteCode, subscriptionId, 11, 30);
|
|
|
+ Map<String, Integer> second = dealKeywordsRankData(siteCode, 11, 30);
|
|
|
if (second.containsKey("appoint")) {
|
|
|
appointRankInfo.setSecondNum(second.get("appoint"));
|
|
|
}
|
|
@@ -231,7 +231,7 @@ public class SeoKeywordsRankServiceImpl implements ISeoKeywordsRankService {
|
|
|
longTailRankInfo.setSecondNum(second.get("longTail"));
|
|
|
}
|
|
|
// 31-100
|
|
|
- Map<String, Integer> third = dealKeywordsRankData(siteCode, subscriptionId, 31, 100);
|
|
|
+ Map<String, Integer> third = dealKeywordsRankData(siteCode, 31, 100);
|
|
|
if (third.containsKey("appoint")) {
|
|
|
appointRankInfo.setThirdType(third.get("appoint"));
|
|
|
}
|
|
@@ -245,12 +245,12 @@ public class SeoKeywordsRankServiceImpl implements ISeoKeywordsRankService {
|
|
|
}
|
|
|
|
|
|
private Map<String, Integer> dealKeywordsRankData(
|
|
|
- String siteCode, String subscriptionId, Integer rankStart, Integer rankEnd) {
|
|
|
+ String siteCode, Integer rankStart, Integer rankEnd) {
|
|
|
Map<String, Integer> KeywordsRankMap = new HashMap<>();
|
|
|
|
|
|
// 指定词
|
|
|
List<String> appointDateList =
|
|
|
- seoKeywordsService.getKeywordsLastSevenDays(siteCode, 1, subscriptionId);
|
|
|
+ seoKeywordsService.getKeywordsLastSevenDays(siteCode, 1);
|
|
|
String appointDatesStr = "";
|
|
|
if (CollectionUtils.isNotEmpty(appointDateList)) {
|
|
|
for (int i = 0; i < appointDateList.size(); i++) {
|
|
@@ -265,7 +265,7 @@ public class SeoKeywordsRankServiceImpl implements ISeoKeywordsRankService {
|
|
|
// 指定词
|
|
|
RankInfoVO appointRankInfo =
|
|
|
seoKeywordsMapper.queryKeywordNumByRankRange(
|
|
|
- siteCode, subscriptionId, rankStart, rankEnd, appointDatesStr, "1");
|
|
|
+ siteCode, rankStart, rankEnd, appointDatesStr, "1");
|
|
|
if (appointRankInfo != null) {
|
|
|
KeywordsRankMap.put("appoint", appointRankInfo.getKeywordNum());
|
|
|
}
|
|
@@ -273,7 +273,7 @@ public class SeoKeywordsRankServiceImpl implements ISeoKeywordsRankService {
|
|
|
|
|
|
// 长尾词
|
|
|
List<String> dateList =
|
|
|
- seoKeywordsService.getKeywordsLastSevenDays(siteCode, 2, subscriptionId);
|
|
|
+ seoKeywordsService.getKeywordsLastSevenDays(siteCode, 2);
|
|
|
String dateStr = "";
|
|
|
if (CollectionUtils.isNotEmpty(dateList)) {
|
|
|
for (int i = 0; i < dateList.size(); i++) {
|
|
@@ -286,7 +286,7 @@ public class SeoKeywordsRankServiceImpl implements ISeoKeywordsRankService {
|
|
|
dateStr = "(" + dateStr + ")";
|
|
|
RankInfoVO longRankInfo =
|
|
|
seoKeywordsMapper.queryKeywordNumByRankRange(
|
|
|
- siteCode, subscriptionId, rankStart, rankEnd, dateStr, "2");
|
|
|
+ siteCode, rankStart, rankEnd, dateStr, "2");
|
|
|
if (longRankInfo != null) {
|
|
|
KeywordsRankMap.put("longTail", longRankInfo.getKeywordNum());
|
|
|
}
|