#334 合并主分支

Zusammengeführt
chenpeiqing hat 2 Commits von wangfan/cpq-dev nach wangfan/master vor 2 Tagen zusammengeführt

+ 2 - 0
jeecg-boot-base-core/src/main/java/org/jeecg/common/constant/CommonConstant.java

@@ -493,4 +493,6 @@ public interface CommonConstant {
 
   /** 没有主账户 */
   Integer HAS_NOT_MASTER_ACCOUNT = 0;
+
+  String ADWEB_PREFIX = "AdWeb_";
 }

+ 11 - 11
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/enquiry/service/impl/AdwebEnquiryServiceImpl.java

@@ -1695,30 +1695,30 @@ public class AdwebEnquiryServiceImpl extends ServiceImpl<AdwebEnquiryMapper, Adw
 
   /** 获取站点黑名单IP列表 */
   private List<String> getSiteBlackIpList(AdwebSite adwebSite) {
-    String siteBlackIpRedisKey = SiteWhiteIpListKey + "::" + adwebSite.getId();
+    String siteBlackIpRedisKey = SiteBlackIpKey + "::" + adwebSite.getId();
 
-    List<String> siteWhiteIpList = getListFromRedis(siteBlackIpRedisKey);
+    List<String> siteBlackIpList = getListFromRedis(siteBlackIpRedisKey);
 
-    if (CollectionUtils.isEmpty(siteWhiteIpList)) {
-      List<AdwebSiteBlackIp> enquirySiteWhiteIpList =
+    if (CollectionUtils.isEmpty(siteBlackIpList)) {
+      List<AdwebSiteBlackIp> enquirySiteBlackIpList =
           adwebSiteBlackIpService.list(
               new LambdaQueryWrapper<AdwebSiteBlackIp>()
                   .ne(AdwebSiteBlackIp::getStatus, 0)
-                  .eq(AdwebSiteBlackIp::getBlackOrWhite, 1)
+                  .eq(AdwebSiteBlackIp::getBlackOrWhite, 0)
                   .eq(AdwebSiteBlackIp::getSiteId, adwebSite.getId())
                   .select(AdwebSiteBlackIp::getIp));
-      if (CollectionUtils.isNotEmpty(enquirySiteWhiteIpList)) {
-        siteWhiteIpList =
-            enquirySiteWhiteIpList.stream()
+      if (CollectionUtils.isNotEmpty(enquirySiteBlackIpList)) {
+        siteBlackIpList =
+            enquirySiteBlackIpList.stream()
                 .map(AdwebSiteBlackIp::getIp)
                 .collect(Collectors.toList());
-        adwebRedisUtil.set(siteBlackIpRedisKey, siteWhiteIpList, 60 * 60 * 24);
+        adwebRedisUtil.set(siteBlackIpRedisKey, siteBlackIpList, 60 * 60 * 24);
       } else {
-        siteWhiteIpList = new ArrayList<>();
+        siteBlackIpList = new ArrayList<>();
       }
     }
 
-    return siteWhiteIpList;
+    return siteBlackIpList;
   }
 
   /** 获取站点黑名单邮箱列表 */

+ 92 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/xxl/EnquiryEmailSenderJob.java

@@ -0,0 +1,92 @@
+package org.jeecg.modules.xxl;
+
+import cn.hutool.core.collection.CollUtil;
+import cn.hutool.core.date.DateUtil;
+import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper;
+import com.xxl.job.core.handler.annotation.XxlJob;
+import jakarta.annotation.Resource;
+import java.util.Date;
+import java.util.List;
+import java.util.stream.Collectors;
+import lombok.extern.slf4j.Slf4j;
+import org.jeecg.common.constant.CommonConstant;
+import org.jeecg.common.system.vo.DictModel;
+import org.jeecg.common.util.DateUtils;
+import org.jeecg.modules.adweb.common.util.AdwebRedisUtil;
+import org.jeecg.modules.adweb.enquiry.constant.EnquirySendStatus;
+import org.jeecg.modules.adweb.enquiry.entity.EnquiryEmailMessage;
+import org.jeecg.modules.adweb.enquiry.service.IEnquiryEmailMessageService;
+import org.jeecg.modules.system.service.ISysDictService;
+import org.springframework.stereotype.Component;
+
+/** 询盘邮件发送失败后重新发送任务 */
+@Slf4j
+@Component
+public class EnquiryEmailSenderJob {
+
+  @Resource private IEnquiryEmailMessageService enquiryEmailMessageService;
+
+  @Resource private AdwebRedisUtil adwebRedisUtil;
+
+  @Resource private ISysDictService sysDictService;
+
+  @XxlJob("EnquiryEmailSenderJobHandler")
+  public void EnquiryEmailSenderJobHandler() throws Exception {
+    log.info("询盘邮件发送 EnquiryEmailSenderJob !  时间:{}", DateUtils.getTimestamp());
+
+    String keyName = CommonConstant.ADWEB_PREFIX + this.getClass().getSimpleName();
+    if (!adwebRedisUtil.lock(keyName, 60 * 60 * 1000)) {
+      log.info("定时任务 {} 正在执行", this.getClass().getSimpleName());
+      return;
+    }
+
+    try {
+
+      // 重发邮件数量,默认数量
+      String param = "50";
+
+      List<DictModel> dictItems = sysDictService.queryDictItemsByCode("enquiry_email_timeout");
+      int sendEmailTimeout = 30;
+      int waitSendTimeout = 300;
+      for (DictModel model : dictItems) {
+        if ("send_email_timeout".equals(model.getText())) {
+          sendEmailTimeout = Integer.parseInt(model.getValue());
+        }
+        if ("wait_send_timeout".equals(model.getText())) {
+          waitSendTimeout = Integer.parseInt(model.getValue());
+        }
+      }
+
+      // 将超过30分钟未完成发送的记录改为待发送
+      Date thirtyMinBefore = DateUtil.offsetMinute(new Date(), -sendEmailTimeout);
+      UpdateWrapper<EnquiryEmailMessage> updateWrapper = new UpdateWrapper<>();
+      updateWrapper.eq("send_status", EnquirySendStatus.SENDING);
+      updateWrapper.lt("send_start_time", thirtyMinBefore);
+      updateWrapper.set("send_status", EnquirySendStatus.WAIT_SEND);
+      updateWrapper.set("send_start_time", null);
+      enquiryEmailMessageService.update(updateWrapper);
+
+      List<EnquiryEmailMessage> messages =
+          enquiryEmailMessageService.getWaitSendEmail(waitSendTimeout, Integer.parseInt(param));
+
+      log.info("询盘邮件发送任务,待发送邮件数量:{}", messages.size());
+
+      if (CollUtil.isNotEmpty(messages)) {
+        UpdateWrapper<EnquiryEmailMessage> updateWrapper1 = new UpdateWrapper<>();
+        updateWrapper1.in(
+            "id", messages.stream().map(EnquiryEmailMessage::getId).collect(Collectors.toList()));
+        updateWrapper1.set("send_status", EnquirySendStatus.SENDING);
+        updateWrapper1.set("send_start_time", new Date());
+        enquiryEmailMessageService.update(updateWrapper1);
+        for (EnquiryEmailMessage message : messages) {
+          enquiryEmailMessageService.sendEmailByMessage(message);
+        }
+      }
+
+    } catch (Exception e) {
+      log.error("询盘邮件发送任务出错", e);
+    }
+
+    adwebRedisUtil.unlock(keyName);
+  }
+}