|
@@ -1,82 +0,0 @@
|
|
|
-package com.yh.saas.plugin.yiliangyiyun.util;
|
|
|
-
|
|
|
-import com.github.qcloudsms.SmsSingleSender;
|
|
|
-import com.github.qcloudsms.SmsSingleSenderResult;
|
|
|
-import com.yh.saas.plugin.yiliangyiyun.exception.ExceptionDefinition;
|
|
|
-import com.yh.saas.plugin.yiliangyiyun.exception.ServiceException;
|
|
|
-import com.yh.saas.plugin.yiliangyiyun.exception.ThirdPartServiceException;
|
|
|
-import org.slf4j.Logger;
|
|
|
-import org.slf4j.LoggerFactory;
|
|
|
-import org.springframework.beans.factory.InitializingBean;
|
|
|
-import org.springframework.beans.factory.annotation.Value;
|
|
|
-
|
|
|
-/**
|
|
|
- * Created by rize on 2019/7/1.
|
|
|
- */
|
|
|
-public class QCloudSMSClient implements SMSClient, InitializingBean {
|
|
|
-
|
|
|
- private SmsSingleSender sender;
|
|
|
-
|
|
|
- @Value("${sms.qcloud.app-id}")
|
|
|
- private Integer appid;
|
|
|
- @Value("${sms.qcloud.app-key}")
|
|
|
- private String appkey;
|
|
|
- @Value("${sms.qcloud.register-template-id}")
|
|
|
- private Integer registerTemplateId;
|
|
|
- @Value("${sms.qcloud.bind-phone-template-id}")
|
|
|
- private Integer bindPhoneTemplateId;
|
|
|
- @Value("${sms.qcloud.reset-password-template-id}")
|
|
|
- private Integer resetPasswordTemplateId;
|
|
|
- @Value("${sms.qcloud.admin-login-template-id}")
|
|
|
- private Integer adminLoginTemplateId;
|
|
|
- @Value("${sms.qcloud.sign}")
|
|
|
- private String sign;
|
|
|
-
|
|
|
- private static Logger logger = LoggerFactory.getLogger(QCloudSMSClient.class);
|
|
|
-
|
|
|
- @Override
|
|
|
- public void afterPropertiesSet() throws Exception {
|
|
|
- sender = new SmsSingleSender(appid, appkey);
|
|
|
- }
|
|
|
-
|
|
|
- public SMSResult sendMsg(String phone, int templateId, String ...params) throws ServiceException {
|
|
|
- try {
|
|
|
- SmsSingleSenderResult smsSingleSenderResult = sender.sendWithParam("86", phone, templateId, params, this.sign, "", "");
|
|
|
- if (smsSingleSenderResult.result == 0) {
|
|
|
- SMSResult smsResult = new SMSResult();
|
|
|
- smsResult.setSucc(true);
|
|
|
- smsResult.setMsg("成功");
|
|
|
- return smsResult;
|
|
|
- } else {
|
|
|
- logger.info("[腾讯短信发送] 回复与预期不一致 result=" + smsSingleSenderResult.result + ";errMsg=" + smsSingleSenderResult.errMsg);
|
|
|
- throw new ThirdPartServiceException(smsSingleSenderResult.errMsg, smsSingleSenderResult.result);
|
|
|
- }
|
|
|
- } catch (ServiceException e) {
|
|
|
- throw e;
|
|
|
- } catch (Exception e) {
|
|
|
- logger.error("[腾讯短信发送] 异常", e);
|
|
|
- throw new ThirdPartServiceException("腾讯云短信发送未知异常", ExceptionDefinition.THIRD_PART_SERVICE_EXCEPTION.getCode());
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- @Override
|
|
|
- public SMSResult sendRegisterVerify(String phone, String verifyCode) throws ServiceException {
|
|
|
- return sendMsg(phone, registerTemplateId, verifyCode);
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public SMSResult sendBindPhoneVerify(String phone, String verifyCode) throws ServiceException {
|
|
|
- return sendMsg(phone, registerTemplateId, verifyCode);
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public SMSResult sendResetPasswordVerify(String phone, String verifyCode) throws ServiceException {
|
|
|
- return sendMsg(phone, registerTemplateId, verifyCode);
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public SMSResult sendAdminLoginVerify(String phone, String verifyCode) throws ServiceException {
|
|
|
- return sendMsg(phone, adminLoginTemplateId,verifyCode);
|
|
|
- }
|
|
|
-}
|