package com.stylefeng.guns.modular.system.util;
|
|
|
import cn.hutool.http.ContentType;
|
import cn.hutool.http.HttpRequest;
|
import cn.hutool.http.HttpResponse;
|
import cn.hutool.http.HttpUtil;
|
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson.JSONObject;
|
import com.twilio.Twilio;
|
import com.twilio.rest.api.v2010.account.Message;
|
import com.twilio.type.PhoneNumber;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Component;
|
|
import javax.net.ssl.*;
|
import java.io.*;
|
import java.net.URL;
|
import java.net.URLEncoder;
|
import java.security.MessageDigest;
|
import java.security.NoSuchAlgorithmException;
|
import java.security.cert.CertificateException;
|
import java.security.cert.X509Certificate;
|
import java.text.SimpleDateFormat;
|
import java.util.*;
|
|
@Component
|
public class SMSUtil {
|
|
//无需修改,用于格式化鉴权头域,给"X-WSSE"参数赋值
|
private static final String WSSE_HEADER_FORMAT = "UsernameToken Username=\"%s\",PasswordDigest=\"%s\",Nonce=\"%s\",Created=\"%s\"";
|
//无需修改,用于格式化鉴权头域,给"Authorization"参数赋值
|
private static final String AUTH_HEADER_VALUE = "WSSE realm=\"SDP\",profile=\"UsernameToken\",type=\"Appkey\"";
|
|
/**
|
* 发送短信(华为云)
|
* @param templateId 模板id
|
* @param receiver 必填,全局号码格式(包含国家码),示例:+8615123456789,多个号码之间用英文逗号分隔
|
* @param templateParas 选填,使用无变量模板时请赋空值 String templateParas = "",双变量模板示例:模板内容为"您有${1}件快递请到${2}领取"时,templateParas可填写为"[\"3\",\"人民公园正门\"]"
|
* 模板变量,此处以单变量验证码短信为例,请客户自行生成6位验证码,并定义为字符串类型,以杜绝首位0丢失的问题(例如:002569变成了2569)
|
* @throws Exception
|
*/
|
public static void send_huawei_sms(String templateId, String receiver, String templateParas) throws Exception {
|
|
//必填,请参考"开发准备"获取如下数据,替换为实际值
|
String url = "https://smsapi.cn-south-1.myhuaweicloud.com:443/sms/batchSendSms/v1"; //APP接入地址(在控制台"应用管理"页面获取)+接口访问URI
|
String appKey = "g3DW0G5Fbp3110UiGl5fkWcn799s"; //APP_Key
|
String appSecret = "LaT1NYvQKNkHO5KikniEueN8iTaz"; //APP_Secret
|
String sender = "ismsapp0000000103"; //国内短信签名通道号或国际/港澳台短信通道号
|
|
//条件必填,国内短信关注,当templateId指定的模板类型为通用模板时生效且必填,必须是已审核通过的,与模板类型一致的签名名称
|
//国际/港澳台短信不用关注该参数
|
String signature = "IGO"; //签名名称
|
|
//选填,短信状态报告接收地址,推荐使用域名,为空或者不填表示不接收状态报告
|
String statusCallBack = "";
|
|
//请求Body,不携带签名名称时,signature请填null
|
String body = buildRequestBody(sender, receiver, templateId, templateParas, statusCallBack, signature);
|
if (null == body || body.isEmpty()) {
|
System.out.println("body is null.");
|
return;
|
}
|
|
//请求Headers中的X-WSSE参数值
|
String wsseHeader = buildWsseHeader(appKey, appSecret);
|
if (null == wsseHeader || wsseHeader.isEmpty()) {
|
System.out.println("wsse header is null.");
|
return;
|
}
|
|
Writer out = null;
|
BufferedReader in = null;
|
StringBuffer result = new StringBuffer();
|
HttpsURLConnection connection = null;
|
InputStream is = null;
|
|
|
HostnameVerifier hv = new HostnameVerifier() {
|
|
@Override
|
public boolean verify(String hostname, SSLSession session) {
|
return true;
|
}
|
};
|
trustAllHttpsCertificates();
|
|
try {
|
URL realUrl = new URL(url);
|
connection = (HttpsURLConnection) realUrl.openConnection();
|
|
connection.setHostnameVerifier(hv);
|
connection.setDoOutput(true);
|
connection.setDoInput(true);
|
connection.setUseCaches(true);
|
//请求方法
|
connection.setRequestMethod("POST");
|
//请求Headers参数
|
connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
|
connection.setRequestProperty("Authorization", AUTH_HEADER_VALUE);
|
connection.setRequestProperty("X-WSSE", wsseHeader);
|
|
connection.connect();
|
out = new OutputStreamWriter(connection.getOutputStream());
|
out.write(body); //发送请求Body参数
|
out.flush();
|
out.close();
|
|
int status = connection.getResponseCode();
|
if (200 == status) { //200
|
is = connection.getInputStream();
|
} else { //400/401
|
is = connection.getErrorStream();
|
}
|
in = new BufferedReader(new InputStreamReader(is, "UTF-8"));
|
String line = "";
|
while ((line = in.readLine()) != null) {
|
result.append(line);
|
}
|
System.out.println(result.toString()); //打印响应消息实体
|
} catch (Exception e) {
|
e.printStackTrace();
|
} finally {
|
try {
|
if (null != out) {
|
out.close();
|
}
|
if (null != is) {
|
is.close();
|
}
|
if (null != in) {
|
in.close();
|
}
|
} catch (Exception e) {
|
e.printStackTrace();
|
}
|
}
|
}
|
|
/**
|
* 构造请求Body体
|
* @param sender
|
* @param receiver
|
* @param templateId
|
* @param templateParas
|
* @param statusCallBack
|
* @param signature | 签名名称,使用国内短信通用模板时填写
|
* @return
|
*/
|
static String buildRequestBody(String sender, String receiver, String templateId, String templateParas,
|
String statusCallBack, String signature) {
|
if (null == sender || null == receiver || null == templateId || sender.isEmpty() || receiver.isEmpty()
|
|| templateId.isEmpty()) {
|
System.out.println("buildRequestBody(): sender, receiver or templateId is null.");
|
return null;
|
}
|
Map<String, String> map = new HashMap<String, String>();
|
|
map.put("from", sender);
|
map.put("to", receiver);
|
map.put("templateId", templateId);
|
if (null != templateParas && !templateParas.isEmpty()) {
|
map.put("templateParas", templateParas);
|
}
|
if (null != statusCallBack && !statusCallBack.isEmpty()) {
|
map.put("statusCallback", statusCallBack);
|
}
|
if (null != signature && !signature.isEmpty()) {
|
map.put("signature", signature);
|
}
|
|
StringBuilder sb = new StringBuilder();
|
String temp = "";
|
|
for (String s : map.keySet()) {
|
try {
|
temp = URLEncoder.encode(map.get(s), "UTF-8");
|
} catch (UnsupportedEncodingException e) {
|
e.printStackTrace();
|
}
|
sb.append(s).append("=").append(temp).append("&");
|
}
|
|
return sb.deleteCharAt(sb.length()-1).toString();
|
}
|
|
/**
|
* 构造X-WSSE参数值
|
* @param appKey
|
* @param appSecret
|
* @return
|
*/
|
static String buildWsseHeader(String appKey, String appSecret) {
|
if (null == appKey || null == appSecret || appKey.isEmpty() || appSecret.isEmpty()) {
|
System.out.println("buildWsseHeader(): appKey or appSecret is null.");
|
return null;
|
}
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'");
|
String time = sdf.format(new Date()); //Created
|
String nonce = UUID.randomUUID().toString().replace("-", ""); //Nonce
|
|
MessageDigest md;
|
byte[] passwordDigest = null;
|
|
try {
|
md = MessageDigest.getInstance("SHA-256");
|
md.update((nonce + time + appSecret).getBytes());
|
passwordDigest = md.digest();
|
} catch (NoSuchAlgorithmException e) {
|
e.printStackTrace();
|
}
|
|
//如果JDK版本是1.8,请加载原生Base64类,并使用如下代码
|
String passwordDigestBase64Str = Base64.getEncoder().encodeToString(passwordDigest); //PasswordDigest
|
//如果JDK版本低于1.8,请加载三方库提供Base64类,并使用如下代码
|
//String passwordDigestBase64Str = Base64.encodeBase64String(passwordDigest); //PasswordDigest
|
//若passwordDigestBase64Str中包含换行符,请执行如下代码进行修正
|
//passwordDigestBase64Str = passwordDigestBase64Str.replaceAll("[\\s*\t\n\r]", "");
|
return String.format(WSSE_HEADER_FORMAT, appKey, passwordDigestBase64Str, nonce, time);
|
}
|
|
/*** @throws Exception
|
*/
|
static void trustAllHttpsCertificates() throws Exception {
|
TrustManager[] trustAllCerts = new TrustManager[] {
|
new X509TrustManager() {
|
public void checkClientTrusted(X509Certificate[] chain, String authType) throws CertificateException {
|
return;
|
}
|
public void checkServerTrusted(X509Certificate[] chain, String authType) throws CertificateException {
|
return;
|
}
|
public X509Certificate[] getAcceptedIssuers() {
|
return null;
|
}
|
}
|
};
|
SSLContext sc = SSLContext.getInstance("SSL");
|
sc.init(null, trustAllCerts, null);
|
HttpsURLConnection.setDefaultSSLSocketFactory(sc.getSocketFactory());
|
}
|
|
|
/**
|
* 发送Twilio短信
|
* @param toPhone
|
* @param msg
|
* @return
|
*/
|
public static boolean sendTwilioMessage(String toPhone, String msg){
|
String ACCOUNT_SID = "AC1fd05e898bd59d17ba72db621afca537";
|
String AUTH_TOKEN = "7cee1a6cb0e2936a9037be577b1ffe57";
|
String formPhone = "+16672740015";
|
try {
|
Twilio.init(ACCOUNT_SID, AUTH_TOKEN);
|
Message message = Message.creator(
|
new PhoneNumber(toPhone),
|
new PhoneNumber(formPhone),
|
msg
|
).create();
|
System.out.println(message.getSid());
|
Message.Status status = message.getStatus();
|
switch (status.toString()){
|
case "canceled":
|
return false;
|
case "undelivered":
|
return false;
|
case "failed":
|
return false;
|
}
|
return true;
|
}catch (Exception e){
|
e.printStackTrace();
|
return false;
|
}
|
}
|
|
|
/**
|
* 短信 : https://sms.mymailcentre.com/smsportal/cellulant
|
* @param toPhone
|
* @param msg
|
* @return
|
*/
|
public boolean sendCellulantMessage(String toPhone, String msg){
|
String url = "https://sms.nalosolutions.com/smsbackend/Cell_resl/send-message/";
|
HttpRequest post = HttpUtil.createPost(url);
|
post.contentType(ContentType.JSON.toString());
|
JSONObject params = new JSONObject();
|
params.put("key", "c_x7x5!v_1mhg(l34p05g2b@teheq)ex9mk1jj(u@nlfx_w5(rdx)tb_ttx22b3o");
|
params.put("username", "I-GO");
|
params.put("password", "abcd1234");
|
params.put("msisdn", toPhone);
|
params.put("message", msg);
|
params.put("sender_id", "I-GO");
|
params.put("callback_url", "http://182.160.16.251:80/user/base/sendCellulantMessageCallback");
|
post.body(params.toJSONString());
|
System.err.println("短信请求:\n请求地址:" + url + "\n请求参数:" + params.toJSONString());
|
HttpResponse execute = post.execute();
|
String body = execute.body();
|
execute.close();
|
JSONObject jsonObject = JSON.parseObject(body);
|
System.err.println("短信响应:" + body);
|
Integer status = jsonObject.getInteger("status");
|
if(null != status && 1701 == status){
|
return true;
|
}else{
|
System.err.println("短信发送失败:" + jsonObject.toJSONString());
|
return false;
|
}
|
|
|
}
|
|
public static void main(String[] ages){
|
//{"callback_url":"http://182.160.16.251:80/user/base/sendCellulantMessageCallback","msisdn":"233244915521","message":"Your verification code is 2358,it is valid within 5 minutes, please do not reveal it to others.","key":"ru#0flkf3993qh!!rg!@y4)nhwi08c#tg_vasek!ja)kvfnfjyoljoz(@nai(jkf","sender_id":"I-GO"}
|
SMSUtil smsUtil = new SMSUtil();
|
smsUtil.sendCellulantMessage("233244915521", "Your verification code is 2358,it is valid within 5 minutes, please do not reveal it to others.");
|
}
|
}
|