Ver código fonte

Merge remote-tracking branch 'origin/develop' into develop

FengChaoYu 5 meses atrás
pai
commit
6d6820c6f1

+ 38 - 0
mall-server-api/src/main/java/com/gree/mall/manager/schedule/SyncUnicomeCallRecord.java

@@ -0,0 +1,38 @@
+package com.gree.mall.manager.schedule;
+
+import cn.hutool.core.date.DateTime;
+import cn.hutool.core.date.DateUtil;
+
+import com.gree.mall.manager.logic.unicom.UnicomLogic;
+import lombok.extern.slf4j.Slf4j;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
+import org.springframework.scheduling.annotation.Scheduled;
+import org.springframework.stereotype.Component;
+import org.springframework.transaction.annotation.Transactional;
+
+import java.util.Date;
+
+/**
+ * 同步云呼通话记录
+ */
+@Slf4j
+@Component
+@ConditionalOnProperty(name = "schedule.enable", havingValue = "true", matchIfMissing = true)
+public class SyncUnicomeCallRecord {
+    @Autowired
+    UnicomLogic unicomLogic;
+
+
+
+    @Scheduled(fixedDelay = 60  * 1000)
+    public void task(){
+        //同步最近5分钟的通话记录
+        try {
+            DateTime startTime = DateUtil.offsetMinute(new Date(), -30);
+            unicomLogic.syncMsgRecord(startTime, new Date());
+        }catch(Exception e){
+            log.error("【同步通话记录失败】...");
+        }
+    }
+}

+ 6 - 0
mall-server-api/src/main/resources/bootstrap-dev.properties

@@ -104,4 +104,10 @@ spring.elasticsearch.rest.read-timeout=30s
 #cmc bank request setting
 cmc.bank.url=http://cdctest.cmburl.cn:80/cdcserver/api/v2
 
+#联通云呼配置
+unicome.yunh.baseurl=https://a5.7x24cc.com
+unicome.yunh.account=N000000015221
+unicome.yunh.secret=fe443fc0264411ec80212baafe602ea7
+unicome.yunh.appid=69jpgmwqxyhtcsor
+
 

+ 7 - 1
mall-server-api/src/main/resources/bootstrap-prd.propertiesb

@@ -84,4 +84,10 @@ spring.elasticsearch.username=elastic
 spring.elasticsearch.password=zfire2022@
 spring.elasticsearch.connection-timeout=5s
 spring.elasticsearch.socket-timeout=30s
-management.health.elasticsearch.enabled=false
+management.health.elasticsearch.enabled=false
+
+#联通云呼配置
+unicome.yunh.baseurl=https://a5.7x24cc.com
+unicome.yunh.account=N000000015221
+unicome.yunh.secret=fe443fc0264411ec80212baafe602ea7
+unicome.yunh.appid=69jpgmwqxyhtcsor

+ 7 - 1
mall-server-api/src/main/resources/bootstrap-test.properties

@@ -91,4 +91,10 @@ cmc.bank.url=http://cdctest.cmburl.cn:80/cdcserver/api/v2
 cmc.bank.pubKey=BNsIe9U0x8IeSe4h/dxUzVEz9pie0hDSfMRINRXc7s1UIXfkExnYECF4QqJ2SnHxLv3z/99gsfDQrQ6dzN5lZj0=
 cmc.bank.privKey=NBtl7WnuUtA2v5FaebEkU0/Jj1IodLGT6lQqwkzmd2E=
 cmc.bank.sm4key=VuAzSWQhsoNqzn0K
-cmc.bank.uid=B000012532
+cmc.bank.uid=B000012532
+
+#联通云呼配置
+unicome.yunh.baseurl=https://a5.7x24cc.com
+unicome.yunh.account=N000000015221
+unicome.yunh.secret=fe443fc0264411ec80212baafe602ea7
+unicome.yunh.appid=69jpgmwqxyhtcsor