java 阿里云邮件认证绑定

pom

<!--阿里云邮件-->
<dependency>
	<groupId>com.aliyun</groupId>
	<artifactId>aliyun-java-sdk-dm</artifactId>
	<version>3.1.0</version>
</dependency>

DesUtil:工具类

import java.security.Key;
import java.security.SecureRandom;

import javax.crypto.Cipher;
import javax.crypto.KeyGenerator;

import sun.misc.BASE64Decoder;
import sun.misc.BASE64Encoder;

public class DesUtil {

    private static Key key;

    private static String KEY_STR="写一堆自己都记不住的字符";
    private static String CHARSETNAME="UTF-8";
    private static String ALGORITHM="DES";


    static {
        try {
            //生成DES算法对象
            KeyGenerator generator=KeyGenerator.getInstance(ALGORITHM);
            //运用SHA1安全策略
            SecureRandom secureRandom=SecureRandom.getInstance("SHA1PRNG");
            //设置上密钥种子
            secureRandom.setSeed(KEY_STR.getBytes());
            //初始化基于SHA1的算法对象
            generator.init(secureRandom);
            //生成密钥对象
            key=generator.generateKey();
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }


    /***
     * 获取加密的信息
     * @param str
     * @return
     */
    public static String getEncryptString(String str) {
        //基于BASE64编码,接收byte[]并转换成String
        BASE64Encoder encoder = new BASE64Encoder();
        try {
            //按utf8编码
            byte[] bytes = str.getBytes(CHARSETNAME);
            //获取加密对象
            Cipher cipher = Cipher.getInstance(ALGORITHM);
            //初始化密码信息
            cipher.init(Cipher.ENCRYPT_MODE, key);
            //加密
            byte[] doFinal = cipher.doFinal(bytes);
            //byte[]to encode好的String 并返回
            return encoder.encode(doFinal);
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }


    /***
     * 获取解密之后的信息
     * @param str
     * @return
     */
    public static String getDecryptString(String str) {
        BASE64Decoder decoder = new BASE64Decoder();
        try {
            //将字符串decode成byte[]
            byte[] bytes = decoder.decodeBuffer(str);
            //获取解密对象
            Cipher cipher = Cipher.getInstance(ALGORITHM);
            //初始化解密信息
            cipher.init(Cipher.DECRYPT_MODE, key);
            //解密
            byte[] doFial = cipher.doFinal(bytes);

            return new String(doFial, CHARSETNAME);

        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }
}

直接上实现类了

import com.alibaba.fastjson.JSONObject;
import com.aliyuncs.DefaultAcsClient;
import com.aliyuncs.IAcsClient;
import com.aliyuncs.dm.model.v20151123.SingleSendMailRequest;
import com.aliyuncs.exceptions.ClientException;
import com.aliyuncs.profile.DefaultProfile;
import com.aliyuncs.profile.IClientProfile;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;

@Slf4j
@Service
public class AliSendMailServiceImpl implements AliSendMailService {

    private static String body = "完成邮件认证的接口地址";

    @Override
    public boolean sendMail(Long id, JSONObject jsonObject) {
        IClientProfile profile = DefaultProfile.getProfile("cn-hangzhou", "ccessKeyId", "accessKeySecret");
        IAcsClient client = new DefaultAcsClient(profile);
        SingleSendMailRequest request = new SingleSendMailRequest();
        try{
            //控制台创建的发信地址
            request.setAccountName("注册的发信邮箱");
            //发信人昵称
            request.setFromAlias("test");
            request.setAddressType(1);
            //控制台创建的标签
            request.setTagName("test");
            request.setReplyToAddress(true);
            //目标地址
            String toAddress = jsonObject.getString("toAddress");
            request.setToAddress(toAddress);
            //邮件主题
            request.setSubject("请点击验证链接完成绑定");
            //邮件正文,参数加密,(参数根据业务自己设定,>< 是为了分割方便^_^!)
            String encryptString = DesUtil.getEncryptString(id + "><" + toAddress);
            request.setHtmlBody(body + encryptString);
            client.getAcsResponse(request);
            return true;
        } catch (ClientException e) {
            log.error("ErrCode : " + e.getErrCode());
            e.printStackTrace();
        }
        return false;
    }
}

AliSendMailController:控制层

import com.alibaba.fastjson.JSONObject;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import javax.servlet.http.HttpServletRequest;

@Slf4j
@RestController
@RequestMapping("/aliMail")
@Api(value = "AliSendMailController", tags = "阿里云邮件推送")
public class AliSendMailController {

    @Autowired
    private AliSendMailService aliSendMailService;

    @Autowired
    private UserInfoService userInfoService;
    
    @PostMapping("/sendMail")
    @ApiOperation(value = "发送邮件")
    public CommonResult aliSendMail(@RequestBody JSONObject jsonObject){
        String toAddress = jsonObject.getString("toAddress");
        // 判断新邮箱和原邮箱是否相同
        // TODO 自己的业务逻辑代码
        if (判断用户mail是否唯一){
            return "失败";
        }
        boolean b = aliSendMailService.sendMail("自己的参数", jsonObject);
        if (b){
            return CommonResult.success(true);
        }
        return CommonResult.failed(false, "邮件发送失败,请联系管理员");
    }
}
~有写错的或者有更优雅的写法记得@ 我~
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值