com.taotao.boot.sms.jdcloud.JdCloudSendHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of taotao-boot-starter-sms-jdcloud Show documentation
Show all versions of taotao-boot-starter-sms-jdcloud Show documentation
taotao-boot-starter-sms-jdcloud
The newest version!
/*
* Copyright (c) 2020-2030, Shuigedeng ([email protected] & https://blog.taotaocloud.top/).
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.taotao.boot.sms.jdcloud;
import com.jdcloud.sdk.auth.CredentialsProvider;
import com.jdcloud.sdk.auth.StaticCredentialsProvider;
import com.jdcloud.sdk.http.HttpRequestConfig;
import com.jdcloud.sdk.http.Protocol;
import com.jdcloud.sdk.service.sms.client.SmsClient;
import com.jdcloud.sdk.service.sms.model.BatchSendRequest;
import com.jdcloud.sdk.service.sms.model.BatchSendResult;
import com.taotao.boot.common.utils.log.LogUtils;
import com.taotao.boot.sms.common.exception.SendFailedException;
import com.taotao.boot.sms.common.handler.AbstractSendHandler;
import com.taotao.boot.sms.common.model.NoticeData;
import org.springframework.context.ApplicationEventPublisher;
import org.springframework.lang.Nullable;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Map;
/**
* 京东云发送处理
*
* @author shuigedeng
* @version 2022.04
* @since 2022-04-27 17:51:00
*/
public class JdCloudSendHandler extends AbstractSendHandler {
private final SmsClient smsClient;
public JdCloudSendHandler(JdCloudProperties properties, ApplicationEventPublisher eventPublisher) {
super(properties, eventPublisher);
CredentialsProvider credentialsProvider =
new StaticCredentialsProvider(properties.getAccessKeyId(), properties.getSecretAccessKey());
smsClient = SmsClient.builder()
.credentialsProvider(credentialsProvider)
.httpRequestConfig(
new HttpRequestConfig.Builder().protocol(Protocol.HTTP).build())
.build();
}
@Override
public boolean send(NoticeData noticeData, Collection phones) {
String type = noticeData.getType();
String templateId = properties.getTemplates(type);
if (templateId == null) {
LogUtils.debug("templateId invalid");
publishSendFailEvent(noticeData, phones, new SendFailedException("templateId invalid"), null);
return false;
}
List paramsOrder = properties.getParamsOrder(type);
ArrayList params = new ArrayList<>();
if (!paramsOrder.isEmpty()) {
Map paramMap = noticeData.getParams();
for (String paramName : paramsOrder) {
String paramValue = paramMap.get(paramName);
params.add(paramValue);
}
}
BatchSendRequest request = new BatchSendRequest();
request.setRegionId(properties.getRegion());
request.setTemplateId(templateId);
request.setSignId(properties.getSignId());
request.setPhoneList(new ArrayList<>(phones));
request.setParams(params);
BatchSendResult result = smsClient.batchSend(request).getResult();
Boolean status = result.getStatus();
boolean flag = status != null && status;
if (flag) {
publishSendSuccessEvent(noticeData, phones, result);
} else {
LogUtils.debug("send fail [code:{}, message:{}]", result.getCode(), result.getMessage());
publishSendFailEvent(noticeData, phones, new SendFailedException(result.getMessage()), result);
}
return flag;
}
@Override
public boolean acceptSend(@Nullable String type) {
return properties.getTemplates().containsKey(type);
}
@Override
public String getChannelName() {
return "jdCloud";
}
}