|
@@ -0,0 +1,137 @@
|
|
|
+package com.qmth.distributed.print.business.service.impl;
|
|
|
+
|
|
|
+import com.aliyuncs.DefaultAcsClient;
|
|
|
+import com.aliyuncs.IAcsClient;
|
|
|
+import com.aliyuncs.dysmsapi.model.v20170525.SendSmsRequest;
|
|
|
+import com.aliyuncs.dysmsapi.model.v20170525.SendSmsResponse;
|
|
|
+import com.aliyuncs.exceptions.ClientException;
|
|
|
+import com.aliyuncs.http.MethodType;
|
|
|
+import com.aliyuncs.profile.DefaultProfile;
|
|
|
+import com.aliyuncs.profile.IClientProfile;
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
+import com.qmth.distributed.print.business.config.DictionaryConfig;
|
|
|
+import com.qmth.distributed.print.business.entity.BasicMessage;
|
|
|
+import com.qmth.distributed.print.business.entity.BasicVerifyCode;
|
|
|
+import com.qmth.distributed.print.business.entity.SysConfig;
|
|
|
+import com.qmth.distributed.print.business.enums.MessageEnum;
|
|
|
+import com.qmth.distributed.print.business.mapper.BasicMessageMapper;
|
|
|
+import com.qmth.distributed.print.business.service.BasicMessageService;
|
|
|
+import com.qmth.distributed.print.business.service.SysConfigService;
|
|
|
+import com.qmth.distributed.print.common.contant.SystemConstant;
|
|
|
+import com.qmth.distributed.print.common.enums.ExceptionResultEnum;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+import org.springframework.transaction.annotation.Transactional;
|
|
|
+
|
|
|
+import javax.annotation.Resource;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Description: 短信消息发送
|
|
|
+ * @Author: CaoZixuan
|
|
|
+ * @Date: 2021-04-28
|
|
|
+ */
|
|
|
+@Service
|
|
|
+public class BasicMessageServiceImpl extends ServiceImpl<BasicMessageMapper, BasicMessage> implements BasicMessageService {
|
|
|
+ @Resource
|
|
|
+ private SysConfigService sysConfigService;
|
|
|
+ @Resource
|
|
|
+ private DictionaryConfig dictionaryConfig;
|
|
|
+
|
|
|
+ @Transactional(rollbackFor = Exception.class)
|
|
|
+ @Override
|
|
|
+ public void saveMessageSendLog(Long userId,String mobileNumber,Long businessId,String variableParams,Long createId,MessageEnum messageType) {
|
|
|
+ // 其他方法调用所传入的参数,必须校验有值
|
|
|
+ this.checkData(userId,mobileNumber,businessId,variableParams,createId,messageType);
|
|
|
+
|
|
|
+ // code和content
|
|
|
+ String templateCode = messageType.getTemplateCode();
|
|
|
+ String templateContent = messageType.getTemplateContent();
|
|
|
+
|
|
|
+
|
|
|
+ // 短信提示系统是否启用配置验证
|
|
|
+ SysConfig sysConfig = sysConfigService.getByKey("sys.message.enable");
|
|
|
+ if (sysConfig.getConfigValue() == null) {
|
|
|
+ throw ExceptionResultEnum.ERROR.exception("短信消息提示启用开关未设置");
|
|
|
+ }
|
|
|
+ if (sysConfig.getConfigValue().equals("false")) {
|
|
|
+ throw ExceptionResultEnum.ERROR.exception("短信消息提示已关闭");
|
|
|
+ }
|
|
|
+
|
|
|
+ try {
|
|
|
+ System.setProperty("sun.net.client.defaultConnectTimeout", "180000");
|
|
|
+ System.setProperty("sun.net.client.defaultReadTimeout", "18000");
|
|
|
+ // 初始化ascClient需要的几个参数
|
|
|
+ final String product = "Dysmsapi";// 短信API产品名称(短信产品名固定,无需修改)
|
|
|
+ final String domain = "dysmsapi.aliyuncs.com";// 短信API产品域名(接口地址固定,无需修改)
|
|
|
+ // 替换成你的AK
|
|
|
+ final String accessKeyId = dictionaryConfig.smsDomain().getAliyunSMSKey();// 你的accessKeyId,参考本文档步骤2
|
|
|
+ final String accessKeySecret = dictionaryConfig.smsDomain().getAliyunSMSSecret();// 你的accessKeySecret,参考本文档步骤2
|
|
|
+ // 初始化ascClient,暂时不支持多region(请勿修改)
|
|
|
+ IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou", accessKeyId, accessKeySecret);
|
|
|
+ DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", product, domain);
|
|
|
+ IAcsClient acsClient = new DefaultAcsClient(profile);
|
|
|
+ // 组装请求对象
|
|
|
+ SendSmsRequest request = new SendSmsRequest();
|
|
|
+ // 使用post提交
|
|
|
+ request.setMethod(MethodType.POST);
|
|
|
+ // 必填:待发送手机号。支持以逗号分隔的形式进行批量调用,批量上限为1000个手机号码,批量调用相对于单条调用及时性稍有延迟,验证码类型的短信推荐使用单条调用的方式;发送国际/港澳台消息时,接收号码格式为00+国际区号+号码,如“0085200000000”
|
|
|
+ request.setPhoneNumbers(mobileNumber);
|
|
|
+ // 必填:短信签名-可在短信控制台中找到
|
|
|
+ request.setSignName(dictionaryConfig.smsDomain().getAliyunSMSSignName());
|
|
|
+ // 必填:短信模板-可在短信控制台中找到
|
|
|
+ request.setTemplateCode(templateCode);
|
|
|
+ // 可选:模板中的变量替换JSON串,如模板内容为"亲爱的${name},您的验证码为${code}"时,此处的值为
|
|
|
+ // 友情提示:如果JSON中需要带换行符,请参照标准的JSON协议对换行符的要求,比如短信内容中包含\r\n的情况在JSON中需要表示成\\r\\n,否则会导致JSON在服务端解析失败
|
|
|
+ request.setTemplateParam(variableParams);
|
|
|
+ // 可选-上行短信扩展码(扩展码字段控制在7位或以下,无特殊需求用户请忽略此字段)
|
|
|
+ // request.setSmsUpExtendCode("90997");
|
|
|
+ // 可选:outId为提供给业务方扩展字段,最终在短信回执消息中将此值带回给调用者
|
|
|
+// request.setOutId("yourOutId");
|
|
|
+ // 请求失败这里会抛ClientException异常
|
|
|
+
|
|
|
+ SendSmsResponse sendSmsResponse = acsClient.getAcsResponse(request);
|
|
|
+
|
|
|
+ if (sendSmsResponse.getCode() != null) {
|
|
|
+ BasicMessage basicMessage = new BasicMessage();
|
|
|
+ // 传入的必填字段
|
|
|
+ basicMessage.setUserId(userId);
|
|
|
+ basicMessage.setMobileNumber(mobileNumber);
|
|
|
+ basicMessage.setBusinessId(businessId);
|
|
|
+ basicMessage.setVariableParams(variableParams);
|
|
|
+ basicMessage.setCreateId(createId);
|
|
|
+ basicMessage.setMessageType(messageType);
|
|
|
+
|
|
|
+ // 经过处理的新字段
|
|
|
+ basicMessage.setId(SystemConstant.getDbUuid());
|
|
|
+ basicMessage.setBusinessOperate(messageType.getName());
|
|
|
+ basicMessage.setCreateTime(System.currentTimeMillis());
|
|
|
+ basicMessage.setTemplateCode(templateCode);
|
|
|
+ basicMessage.setTemplateContent(templateContent);
|
|
|
+ basicMessage.setSendStatus(sendSmsResponse.getCode());
|
|
|
+ basicMessage.setSendResult(sendSmsResponse.getMessage());
|
|
|
+ this.save(basicMessage);
|
|
|
+ } else {
|
|
|
+ throw ExceptionResultEnum.ERROR.exception(sendSmsResponse.getMessage());
|
|
|
+ }
|
|
|
+ }catch (ClientException e){
|
|
|
+ throw ExceptionResultEnum.ERROR.exception(e.getMessage());
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private void checkData(Object ... objects){
|
|
|
+ for (Object object : objects) {
|
|
|
+ if (object instanceof String){
|
|
|
+ String param = String.valueOf(object);
|
|
|
+ if (param.length() == 0 || param.equals("null")){
|
|
|
+ throw ExceptionResultEnum.ERROR.exception("调用发送短信方法时必传参数缺失");
|
|
|
+ }
|
|
|
+ }else if (object instanceof Long){
|
|
|
+ Long param = SystemConstant.convertIdToLong(String.valueOf(object));
|
|
|
+ if (param == null || param == 0){
|
|
|
+ throw ExceptionResultEnum.ERROR.exception("调用发送短信方法时必传参数缺失");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|