SMSUtils.java 9.15 KB
package com.subsidy.util;

import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.aliyuncs.CommonRequest;
import com.aliyuncs.CommonResponse;
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.http.MethodType;
import com.aliyuncs.profile.DefaultProfile;
import com.aliyuncs.profile.IClientProfile;
import com.subsidy.common.configure.AliyunSmsProperties;
import com.subsidy.common.exception.HttpException;
import net.sourceforge.pinyin4j.PinyinHelper;
import net.sourceforge.pinyin4j.format.HanyuPinyinCaseType;
import net.sourceforge.pinyin4j.format.HanyuPinyinOutputFormat;
import net.sourceforge.pinyin4j.format.HanyuPinyinToneType;
import net.sourceforge.pinyin4j.format.exception.BadHanyuPinyinOutputFormatCombination;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

import java.util.Map;

/**
 * 短信发送工具类
 */

@Component
public class SMSUtils {



    @Autowired
    private AliyunSmsProperties aliyunSmsProperties;

    public SendSmsResponse send(String phone, String code) {
        try {
            System.setProperty("sun.net.client.defaultConnectTimeout", "10000");
            System.setProperty("sun.net.client.defaultReadTimeout", "10000");

            //初始化acsClient,暂不支持region化
            IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou", aliyunSmsProperties.getAccessKeyId(), aliyunSmsProperties.getAccessKeySecret());
            DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", aliyunSmsProperties.getProduct(), aliyunSmsProperties.getDomain());
            IAcsClient acsClient = new DefaultAcsClient(profile);

            //组装请求对象-具体描述见控制台-文档部分内容
            SendSmsRequest request = new SendSmsRequest();
            //必填:待发送手机号
            request.setPhoneNumbers(phone);
            //必填:短信签名-可在短信控制台中找到
            request.setSignName("有课互联");
            //必填:短信模板-可在短信控制台中找到
            request.setTemplateCode("SMS_190945394");
            //可选:模板中的变量替换JSON串,如模板内容为"亲爱的${name},您的验证码为${code}"时,此处的值为
            request.setTemplateParam("{\"code\":\""+ code +"\"}");

            //hint 此处可能会抛出异常,注意catch
            SendSmsResponse sendSmsResponse = acsClient.getAcsResponse(request);
            if(sendSmsResponse != null && sendSmsResponse.getCode().equals("OK")) {
                return sendSmsResponse;
            }

            throw new Exception(sendSmsResponse.getMessage());
        } catch (Exception e) {
            e.printStackTrace();
            throw new HttpException(70011);
        }
    }


    /**
     *  发送验证码短信
     * @param templateId  短信模板id
     * @param telephone   手机号
     * @return
     */
    public  String sendVerifySMS(String templateId,String telephone,String param){

        try {
            System.setProperty("sun.net.client.defaultConnectTimeout", "10000");
            System.setProperty("sun.net.client.defaultReadTimeout", "10000");

            //初始化acsClient,暂不支持region化
            IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou", aliyunSmsProperties.getAccessKeyId(), aliyunSmsProperties.getAccessKeySecret());
            DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", aliyunSmsProperties.getProduct(), aliyunSmsProperties.getDomain());
            IAcsClient acsClient = new DefaultAcsClient(profile);

            //组装请求对象-具体描述见控制台-文档部分内容
            SendSmsRequest request = new SendSmsRequest();
            //必填:待发送手机号
            request.setPhoneNumbers(telephone);
            //必填:短信签名-可在短信控制台中找到
            request.setSignName("有课互联");
            //必填:短信模板-可在短信控制台中找到
            request.setTemplateCode(templateId);
            //可选:模板中的变量替换JSON串,如模板内容为"亲爱的${name},您的验证码为${code}"时,此处的值为
            request.setTemplateParam("{\"code\":\""+ param +"\"}");

            //hint 此处可能会抛出异常,注意catch
            SendSmsResponse sendSmsResponse = acsClient.getAcsResponse(request);
            if(sendSmsResponse != null && sendSmsResponse.getCode().equals("OK")) {
                return ConstantUtils.SUCCESS_SEND_OUT;
            }

            throw new Exception(sendSmsResponse.getMessage());
        } catch(Exception e) {
            e.printStackTrace();
            return ConstantUtils.FAIL_SEND_OUT;
        }
    }

    public String sendWarning(String templateId,String telephone,String param){
        try {
            System.setProperty("sun.net.client.defaultConnectTimeout", "10000");
            System.setProperty("sun.net.client.defaultReadTimeout", "10000");

            //初始化acsClient,暂不支持region化
            IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou", aliyunSmsProperties.getAccessKeyId(), aliyunSmsProperties.getAccessKeySecret());
            DefaultProfile.addEndpoint("cn-hangzhou", "cn-hangzhou", aliyunSmsProperties.getProduct(), aliyunSmsProperties.getDomain());
            IAcsClient acsClient = new DefaultAcsClient(profile);

            //组装请求对象-具体描述见控制台-文档部分内容
            SendSmsRequest request = new SendSmsRequest();
            //必填:待发送手机号
            request.setPhoneNumbers(telephone);
            //必填:短信签名-可在短信控制台中找到
            request.setSignName("有课互联科技");
            //必填:短信模板-可在短信控制台中找到
            request.setTemplateCode(templateId);
            //可选:模板中的变量替换JSON串,如模板内容为"亲爱的${name},您的验证码为${code}"时,此处的值为
            request.setTemplateParam("{\"ids\":\""+ param +"\"}");

            //hint 此处可能会抛出异常,注意catch
            SendSmsResponse sendSmsResponse = acsClient.getAcsResponse(request);
            if(sendSmsResponse != null && sendSmsResponse.getCode().equals("OK")) {
                return ConstantUtils.SUCCESS_SEND_OUT;
            }

            throw new Exception(sendSmsResponse.getMessage());
        } catch(Exception e) {
            e.printStackTrace();
            return ConstantUtils.FAIL_SEND_OUT;
        }
    }

    /**
     *  发送通知短信
     * @param templateId  短信模板id
     * @param telephone   手机号
     * @return
     */
    public static String sendNoticeSMS(String templateId,String telephone,String param){
        DefaultProfile profile = DefaultProfile.getProfile(ConstantUtils.REGION_ID, ConstantUtils.ACCESS_KEY_ID, ConstantUtils.SECRET);
        IAcsClient client = new DefaultAcsClient(profile);

        CommonRequest request = new CommonRequest();
        request.setSysMethod(MethodType.POST);
        request.setSysDomain("dysmsapi.aliyuncs.com");
        request.setSysVersion("2017-05-25");
        request.setSysAction("SendSms");
        request.putQueryParameter("RegionId",ConstantUtils.REGION_ID);
        request.putQueryParameter("PhoneNumbers",telephone);
        request.putQueryParameter("SignName",ConstantUtils.TECH_NAME);
        request.putQueryParameter("TemplateCode",templateId);
//        if (StringUtils.isEmpty(param)){
//            request.putQueryParameter("TemplateParam","{ \"code\":\""+verifyCode +"\"}");
//        }
        request.putQueryParameter("TemplateParam",param);
        CommonResponse response = null;
        try {
            response = client.getCommonResponse(request);
            if(response != null) {
                JSONObject data = JSON.parseObject(response.getData());
                if(data.get("Code").equals("OK")) {
                    return ConstantUtils.SUCCESS_SEND_OUT;
                }
                throw new HttpException(1000, data.get("Message").toString());
            }
            return ConstantUtils.FAIL_SEND_OUT;
        } catch(Exception e) {
            e.printStackTrace();
            return ConstantUtils.FAIL_SEND_OUT;
        }
    }

    //public static void main(String[] args) {
    //    String param = "{ \"course\":\""+"语文课"+ "\",\"time\":\""+"2020-01-02" +"\",\"address\":\""+"上海市" +"\"}";
    //    sendNoticeSMS("SMS_215336604","15201936167,18201963812",param);
    //}

    public static void main(String[] args) throws BadHanyuPinyinOutputFormatCombination {
        HanyuPinyinOutputFormat format = new HanyuPinyinOutputFormat();
        //拼音小写
        format.setCaseType(HanyuPinyinCaseType.LOWERCASE);
        //不带声调
        format.setToneType(HanyuPinyinToneType.WITHOUT_TONE);

        //format.setVCharType();
        //要转换的中文,格式,转换之后的拼音的分隔符,遇到不能转换的是否保留   wo,shi,zhong,guo,ren,,hello
        System.out.println(PinyinHelper.toHanYuPinyinString("我是中国人", format, "", false));
    }


}