|
@@ -0,0 +1,140 @@
|
|
|
+package org.jeecg.modules.okki.wechatgroup.service.impl;
|
|
|
+
|
|
|
+import com.alibaba.fastjson.JSONObject;
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
+import io.swagger.models.auth.In;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.apache.commons.collections4.CollectionUtils;
|
|
|
+import org.apache.commons.lang.StringUtils;
|
|
|
+import org.jeecg.common.util.FastJsonUtil;
|
|
|
+import org.jeecg.modules.okki.site.entity.OkkiSite;
|
|
|
+import org.jeecg.modules.okki.site.service.IOkkiSiteService;
|
|
|
+import org.jeecg.modules.okki.utils.HttpClientUtils;
|
|
|
+import org.jeecg.modules.okki.wechatgroup.dto.WechatGroupMsgRespDto;
|
|
|
+import org.jeecg.modules.okki.wechatgroup.entity.OkkiShopWechatGroupMsg;
|
|
|
+import org.jeecg.modules.okki.wechatgroup.mapper.OkkiShopWechatGroupMsgMapper;
|
|
|
+import org.jeecg.modules.okki.wechatgroup.service.IOkkiShopWechatGroupMsgService;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.beans.factory.annotation.Value;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
+
|
|
|
+import java.util.*;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Description: okki_shop_wechat_group_msg
|
|
|
+ * @Author: jeecg-boot
|
|
|
+ * @Date: 2024-09-09
|
|
|
+ * @Version: V1.0
|
|
|
+ */
|
|
|
+@Service
|
|
|
+@Slf4j
|
|
|
+public class OkkiShopWechatGroupMsgServiceImpl extends ServiceImpl<OkkiShopWechatGroupMsgMapper, OkkiShopWechatGroupMsg> implements IOkkiShopWechatGroupMsgService {
|
|
|
+
|
|
|
+ @Value("${OKKI.BASE_URL}")
|
|
|
+ private String URL;
|
|
|
+
|
|
|
+ @Value("${OKKI.CLIENT_SECRET}")
|
|
|
+ private String CLIENT_SECRET;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private IOkkiSiteService okkiSiteService;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private OkkiShopWechatGroupMsgMapper okkiShopWechatGroupMsgMapper;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取站点信息
|
|
|
+ *
|
|
|
+ * @param siteId
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public void getSiteWechatMsgMaxSeq(String siteId) {
|
|
|
+ List<OkkiShopWechatGroupMsg> shopWechatGroupMsgs = okkiShopWechatGroupMsgMapper.getSiteWechatMsgList(siteId);
|
|
|
+ log.info("一共有:{}个站点,需要企业微信群消息", shopWechatGroupMsgs.size());
|
|
|
+ for (int i = 0; i < shopWechatGroupMsgs.size(); i++) {
|
|
|
+ OkkiShopWechatGroupMsg okkiShopWechatGroupMsg = shopWechatGroupMsgs.get(i);
|
|
|
+ int maxSeq = okkiShopWechatGroupMsg.getSeq() == 0 ? 1 : okkiShopWechatGroupMsg.getSeq();
|
|
|
+ log.info("开始处理第{}个,站点ID为:{},seq为:{},企业微信群消息", i + 1, okkiShopWechatGroupMsg.getSiteId(), maxSeq);
|
|
|
+ saveWechatGroupMsg(String.valueOf(okkiShopWechatGroupMsg.getSiteId()), maxSeq);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 保存企业微信群消息
|
|
|
+ *
|
|
|
+ * @param siteId
|
|
|
+ * @param minSeq
|
|
|
+ */
|
|
|
+ public void saveWechatGroupMsg(String siteId, Integer minSeq) {
|
|
|
+ List<OkkiShopWechatGroupMsg> wechatGroupMsgList = sendWechatGroupMsgRequest(siteId, minSeq);
|
|
|
+ log.info("本次请求企业微信群消息数据:{}", FastJsonUtil.toJSONString(wechatGroupMsgList));
|
|
|
+ List<OkkiShopWechatGroupMsg> shopWechatGroupMsgs = new ArrayList<>();
|
|
|
+ if (!CollectionUtils.isEmpty(wechatGroupMsgList)) {
|
|
|
+ wechatGroupMsgList.forEach(c -> {
|
|
|
+ OkkiShopWechatGroupMsg shopWechatGroupMsg = new OkkiShopWechatGroupMsg();
|
|
|
+ shopWechatGroupMsg.setMsgId(c.getMsgId());
|
|
|
+ shopWechatGroupMsg.setRoomId(c.getRoomId());
|
|
|
+ shopWechatGroupMsg.setSeq(c.getSeq());
|
|
|
+ shopWechatGroupMsg.setAction(c.getAction());
|
|
|
+ shopWechatGroupMsg.setFromId(StringUtils.isNotBlank(c.getForm()) ? c.getForm() : "");
|
|
|
+ shopWechatGroupMsg.setTolist(c.getTolist());
|
|
|
+ shopWechatGroupMsg.setMsgType(c.getMsgType());
|
|
|
+ shopWechatGroupMsg.setMsgTime(c.getMsgTime());
|
|
|
+ shopWechatGroupMsg.setContent(c.getContent());
|
|
|
+ shopWechatGroupMsg.setClientId(c.getClientId());
|
|
|
+ shopWechatGroupMsg.setSiteId(c.getSiteId());
|
|
|
+ shopWechatGroupMsg.setCreateTime(c.getCreateTime());
|
|
|
+ shopWechatGroupMsg.setUpdateTime(c.getUpdateTime());
|
|
|
+ shopWechatGroupMsgs.add(shopWechatGroupMsg);
|
|
|
+ });
|
|
|
+ this.saveBatch(shopWechatGroupMsgs);
|
|
|
+
|
|
|
+ //获取下一页数据
|
|
|
+ OkkiShopWechatGroupMsg lastWechatGroupMsg = shopWechatGroupMsgs.get(shopWechatGroupMsgs.size() - 1);
|
|
|
+ saveWechatGroupMsg(siteId, lastWechatGroupMsg.getSeq());
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 发送获取企业微信群消息请求
|
|
|
+ *
|
|
|
+ * @param siteId
|
|
|
+ */
|
|
|
+ public List<OkkiShopWechatGroupMsg> sendWechatGroupMsgRequest(String siteId, Integer minSeq) {
|
|
|
+ List<OkkiShopWechatGroupMsg> okkiShopWechatGroupMsgs = new ArrayList<>();
|
|
|
+ // 请求okki平台接口
|
|
|
+ Map<String, String> query = new TreeMap<>();
|
|
|
+ query.put("sign_method", "hmac-md5");
|
|
|
+ query.put("timestamp", String.valueOf(System.currentTimeMillis()));
|
|
|
+ query.put("site_id", String.valueOf(siteId));
|
|
|
+ query.put("method", "query_wechat_group_msg");
|
|
|
+
|
|
|
+ Map<String, Object> postData = new HashMap<>();
|
|
|
+ postData.put("page", 1);
|
|
|
+ postData.put("page_size", 10);
|
|
|
+ postData.put("min_seq", minSeq);
|
|
|
+ try {
|
|
|
+ String queryStr = HttpClientUtils.buildQueryString(query);
|
|
|
+ String body = HttpClientUtils.toJsonString(postData);
|
|
|
+ String signStr = queryStr + body;
|
|
|
+ query.put("signature", HttpClientUtils.generateHmacMD5(signStr, CLIENT_SECRET));
|
|
|
+ String okkiUrl = URL + "?" + HttpClientUtils.buildQueryString(query);
|
|
|
+ log.info("url:" + okkiUrl + ",body:" + body);
|
|
|
+ String msgResult = HttpClientUtils.doPost(okkiUrl, body);
|
|
|
+ // {"code":0,"msg":"success","now":"2024-09-09 09:42:28","data":[]}
|
|
|
+ WechatGroupMsgRespDto wechatGroupMsgRespDto = JSONObject.parseObject(msgResult, WechatGroupMsgRespDto.class);
|
|
|
+ log.info("wechatGroupMsgRespDto:{}", FastJsonUtil.toJSONString(wechatGroupMsgRespDto));
|
|
|
+ if (wechatGroupMsgRespDto.getCode() != 0) {
|
|
|
+ throw new RuntimeException(wechatGroupMsgRespDto.getMsg());
|
|
|
+ }
|
|
|
+ okkiShopWechatGroupMsgs = wechatGroupMsgRespDto.getData();
|
|
|
+ } catch (Exception e) {
|
|
|
+ throw new RuntimeException(e);
|
|
|
+ }
|
|
|
+ return okkiShopWechatGroupMsgs;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|