|
@@ -20,19 +20,19 @@ import org.jeecg.modules.adweb.common.constant.AdwebConstant;
|
|
|
import org.jeecg.modules.adweb.seo.dto.ComprehensiveStatistics;
|
|
|
import org.jeecg.modules.adweb.seo.entity.SeoKeywords;
|
|
|
import org.jeecg.modules.adweb.seo.entity.SeoKeywordsSerp;
|
|
|
-import org.jeecg.modules.adweb.subscription.entity.UserPlanSubscription;
|
|
|
import org.jeecg.modules.adweb.seo.mapper.SeoKeywordsMapper;
|
|
|
import org.jeecg.modules.adweb.seo.service.ISeoKeywordsRankService;
|
|
|
import org.jeecg.modules.adweb.seo.service.ISeoKeywordsSerpService;
|
|
|
import org.jeecg.modules.adweb.seo.service.ISeoKeywordsService;
|
|
|
-import org.jeecg.modules.adweb.subscription.service.IUserPlanSubscriptionService;
|
|
|
import org.jeecg.modules.adweb.seo.vo.RankInfoVO;
|
|
|
import org.jeecg.modules.adweb.seo.vo.SeoRankInfoVO;
|
|
|
import org.jeecg.modules.adweb.site.entity.AdwebSite;
|
|
|
import org.jeecg.modules.adweb.site.service.IAdwebSiteService;
|
|
|
import org.jeecg.modules.adweb.site.service.ISiteUserPermissionService;
|
|
|
import org.jeecg.modules.adweb.subscription.entity.SubscribePlan;
|
|
|
+import org.jeecg.modules.adweb.subscription.entity.UserPlanSubscription;
|
|
|
import org.jeecg.modules.adweb.subscription.mapper.SubscribePlanMapper;
|
|
|
+import org.jeecg.modules.adweb.subscription.service.IUserPlanSubscriptionService;
|
|
|
import org.jeecg.modules.adweb.system.service.SysAdwebApi;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
@@ -57,7 +57,7 @@ public class SeoKeywordsRankServiceImpl implements ISeoKeywordsRankService {
|
|
|
|
|
|
@Autowired private ISiteUserPermissionService siteUserPermissionService;
|
|
|
|
|
|
- @Autowired private IUserPlanSubscriptionService seoPlanSubscriptionService;
|
|
|
+ @Autowired private IUserPlanSubscriptionService userPlanSubscriptionService;
|
|
|
|
|
|
@Autowired private ISeoKeywordsService seoKeywordsService;
|
|
|
|
|
@@ -104,28 +104,29 @@ public class SeoKeywordsRankServiceImpl implements ISeoKeywordsRankService {
|
|
|
siteIds.add(site.getId());
|
|
|
}
|
|
|
|
|
|
- LambdaQueryWrapper<UserPlanSubscription> historyQueryWrapper = new LambdaQueryWrapper<>();
|
|
|
- historyQueryWrapper.select(
|
|
|
+ LambdaQueryWrapper<UserPlanSubscription> subscriptionQueryWrapper =
|
|
|
+ new LambdaQueryWrapper<>();
|
|
|
+ subscriptionQueryWrapper.select(
|
|
|
UserPlanSubscription::getId,
|
|
|
UserPlanSubscription::getPlanId,
|
|
|
UserPlanSubscription::getSiteId,
|
|
|
UserPlanSubscription::getPlanName,
|
|
|
UserPlanSubscription::getPlanType);
|
|
|
- historyQueryWrapper.in(UserPlanSubscription::getSiteId, siteIds);
|
|
|
- historyQueryWrapper.eq(UserPlanSubscription::getStatus, 1);
|
|
|
- List<UserPlanSubscription> seoPlanSubscriptions =
|
|
|
- seoPlanSubscriptionService.list(historyQueryWrapper);
|
|
|
- if (CollectionUtils.isEmpty(seoPlanSubscriptions)) {
|
|
|
+ subscriptionQueryWrapper.in(UserPlanSubscription::getSiteId, siteIds);
|
|
|
+ subscriptionQueryWrapper.eq(UserPlanSubscription::getStatus, 1);
|
|
|
+ List<UserPlanSubscription> userPlanSubscriptions =
|
|
|
+ userPlanSubscriptionService.list(subscriptionQueryWrapper);
|
|
|
+ if (CollectionUtils.isEmpty(userPlanSubscriptions)) {
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
for (AdwebSite site : siteList) {
|
|
|
- for (UserPlanSubscription seoPlanSubscription : seoPlanSubscriptions) {
|
|
|
- if (seoPlanSubscription.getSiteId().equals(site.getId() + "")) {
|
|
|
- site.setPlanId(seoPlanSubscription.getPlanId());
|
|
|
- site.setPlanName(seoPlanSubscription.getPlanName());
|
|
|
- site.setSubscriptionId(seoPlanSubscription.getId());
|
|
|
- site.setPlanType(seoPlanSubscription.getPlanType());
|
|
|
+ for (UserPlanSubscription userPlanSubscription : userPlanSubscriptions) {
|
|
|
+ if (userPlanSubscription.getSiteId().equals(site.getId() + "")) {
|
|
|
+ site.setPlanId(userPlanSubscription.getPlanId());
|
|
|
+ site.setPlanName(userPlanSubscription.getPlanName());
|
|
|
+ site.setSubscriptionId(userPlanSubscription.getId());
|
|
|
+ site.setPlanType(userPlanSubscription.getPlanType());
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -182,11 +183,11 @@ public class SeoKeywordsRankServiceImpl implements ISeoKeywordsRankService {
|
|
|
public Map getRankInfo(String siteCode) throws ParseException {
|
|
|
// 通过站点code获取站点id
|
|
|
AdwebSite siteByCode = adwebSiteService.getSiteByCode(siteCode);
|
|
|
- UserPlanSubscription seoPlanSubscription =
|
|
|
- seoPlanSubscriptionService.getCurrentSeoAndSiteSubscription(siteByCode.getId());
|
|
|
+ UserPlanSubscription userPlanSubscription =
|
|
|
+ userPlanSubscriptionService.getCurrentSubscription(siteByCode.getId());
|
|
|
// 通过站点获取订阅id
|
|
|
List<SeoRankInfoVO> seoRankInfos =
|
|
|
- this.getSeoRankInfo(siteCode, seoPlanSubscription.getId());
|
|
|
+ this.getSeoRankInfo(siteCode, userPlanSubscription.getId());
|
|
|
Map map = new HashMap<>();
|
|
|
map.put("appointKeyword", seoRankInfos.get(0));
|
|
|
map.put("longTailKeyword", seoRankInfos.get(1));
|