SYYTe/maku-boot-system/src/main/java/net/maku/sms/QiniuSmsStrategy.java
2024-06-25 17:16:45 +08:00

42 lines
1.1 KiB
Java

package net.maku.sms;
import com.qiniu.http.Response;
import com.qiniu.sms.SmsManager;
import com.qiniu.util.Auth;
import net.maku.framework.common.exception.ServerException;
import net.maku.sms.config.SmsConfig;
import java.util.Map;
/**
* 七牛云短信
*
* @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/
public class QiniuSmsStrategy implements SmsStrategy {
private final SmsConfig smsConfig;
private final SmsManager smsManager;
public QiniuSmsStrategy(SmsConfig smsConfig) {
this.smsConfig = smsConfig;
Auth auth = Auth.create(smsConfig.getAccessKey(), smsConfig.getSecretKey());
smsManager = new SmsManager(auth);
}
@Override
public void send(String mobile, Map<String, String> params) {
try {
Response response = smsManager.sendSingleMessage(smsConfig.getTemplateId(), mobile, params);
// 是否发送成功
if (!response.isOK()) {
throw new ServerException(response.error);
}
} catch (Exception e) {
throw new ServerException(e.getMessage());
}
}
}