17 changed files with 441 additions and 25 deletions
@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" |
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
||||
<parent> |
||||
<artifactId>blade-ops-api</artifactId> |
||||
<groupId>org.springblade</groupId> |
||||
<version>2.3.1.RELEASE</version> |
||||
</parent> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
|
||||
<artifactId>blade-resource-api</artifactId> |
||||
<name>${project.artifactId}</name> |
||||
<version>${bladex.project.version}</version> |
||||
<packaging>jar</packaging> |
||||
|
||||
<dependencies> |
||||
<dependency> |
||||
<groupId>org.springblade</groupId> |
||||
<artifactId>blade-core-sms</artifactId> |
||||
</dependency> |
||||
<dependency> |
||||
<groupId>org.springblade</groupId> |
||||
<artifactId>blade-starter-tenant</artifactId> |
||||
</dependency> |
||||
</dependencies> |
||||
|
||||
</project> |
@ -0,0 +1,62 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package org.springblade.resource.enums; |
||||
|
||||
import lombok.AllArgsConstructor; |
||||
import lombok.Getter; |
||||
import org.springblade.core.tool.utils.StringPool; |
||||
|
||||
/** |
||||
* Sms资源编码枚举类 |
||||
* |
||||
* @author Chill |
||||
* @apiNote 该枚举类对应短信配置模块的资源编码,可根据业务需求自行拓展 |
||||
*/ |
||||
@Getter |
||||
@AllArgsConstructor |
||||
public enum SmsCodeEnum { |
||||
|
||||
/** |
||||
* 默认编号 |
||||
*/ |
||||
DEFAULT(StringPool.EMPTY, 1), |
||||
|
||||
/** |
||||
* 验证码编号 |
||||
*/ |
||||
VALIDATE("validate", 2), |
||||
|
||||
/** |
||||
* 通知公告编号 |
||||
*/ |
||||
NOTICE("notice", 3), |
||||
|
||||
/** |
||||
* 下单通知编号 |
||||
*/ |
||||
ORDER("order", 4), |
||||
|
||||
/** |
||||
* 会议通知编号 |
||||
*/ |
||||
MEETING("meeting", 5), |
||||
; |
||||
|
||||
final String name; |
||||
final int category; |
||||
|
||||
} |
@ -0,0 +1,72 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package org.springblade.resource.feign; |
||||
|
||||
import org.springblade.core.launch.constant.AppConstant; |
||||
import org.springblade.core.tool.api.R; |
||||
import org.springframework.cloud.openfeign.FeignClient; |
||||
import org.springframework.web.bind.annotation.PostMapping; |
||||
import org.springframework.web.bind.annotation.RequestParam; |
||||
|
||||
/** |
||||
* ISmsClient |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
@FeignClient( |
||||
value = AppConstant.APPLICATION_RESOURCE_NAME, |
||||
fallback = ISmsClientFallback.class |
||||
) |
||||
public interface ISmsClient { |
||||
String API_PREFIX = "/client"; |
||||
String SEND_MESSAGE = API_PREFIX + "/send-message"; |
||||
String SEND_VALIDATE = API_PREFIX + "/send-validate"; |
||||
String VALIDATE_MESSAGE = API_PREFIX + "/validate-message"; |
||||
|
||||
/** |
||||
* 通用短信发送 |
||||
* |
||||
* @param code 资源编号 |
||||
* @param params 模板参数 |
||||
* @param phones 手机号集合 |
||||
* @return R |
||||
*/ |
||||
@PostMapping(SEND_MESSAGE) |
||||
R sendMessage(@RequestParam("code") String code, @RequestParam("params") String params, @RequestParam("phones") String phones); |
||||
|
||||
/** |
||||
* 短信验证码发送 |
||||
* |
||||
* @param code 资源编号 |
||||
* @param phone 手机号 |
||||
* @return R |
||||
*/ |
||||
@PostMapping(SEND_VALIDATE) |
||||
R sendValidate(@RequestParam("code") String code, @RequestParam("phone") String phone); |
||||
|
||||
/** |
||||
* 校验短信 |
||||
* |
||||
* @param code 资源编号 |
||||
* @param id 校验id |
||||
* @param value 校验值 |
||||
* @return R |
||||
*/ |
||||
@PostMapping(VALIDATE_MESSAGE) |
||||
R validateMessage(@RequestParam("code") String code, @RequestParam("id") String id, @RequestParam("value") String value); |
||||
|
||||
} |
@ -0,0 +1,43 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package org.springblade.resource.feign; |
||||
|
||||
import org.springblade.core.tool.api.R; |
||||
import org.springframework.stereotype.Component; |
||||
|
||||
/** |
||||
* 流程远程调用失败处理类 |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
@Component |
||||
public class ISmsClientFallback implements ISmsClient { |
||||
@Override |
||||
public R sendMessage(String code, String params, String phones) { |
||||
return R.fail("远程调用失败"); |
||||
} |
||||
|
||||
@Override |
||||
public R sendValidate(String code, String phone) { |
||||
return R.fail("远程调用失败"); |
||||
} |
||||
|
||||
@Override |
||||
public R validateMessage(String code, String id, String value) { |
||||
return R.fail("远程调用失败"); |
||||
} |
||||
} |
@ -0,0 +1,107 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package org.springblade.resource.utils; |
||||
|
||||
import org.springblade.core.sms.model.SmsCode; |
||||
import org.springblade.core.tool.api.R; |
||||
import org.springblade.core.tool.jackson.JsonUtil; |
||||
import org.springblade.core.tool.utils.RandomType; |
||||
import org.springblade.core.tool.utils.SpringUtil; |
||||
import org.springblade.core.tool.utils.StringUtil; |
||||
import org.springblade.resource.feign.ISmsClient; |
||||
|
||||
import java.util.HashMap; |
||||
import java.util.Map; |
||||
|
||||
/** |
||||
* 短信服务工具类 |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
public class SmsUtil { |
||||
|
||||
public static final String PARAM_KEY = "code"; |
||||
public static final String SEND_SUCCESS = "短信发送成功"; |
||||
public static final String SEND_FAIL = "短信发送失败"; |
||||
public static final String VALIDATE_SUCCESS = "短信校验成功"; |
||||
public static final String VALIDATE_FAIL = "短信校验失败"; |
||||
|
||||
private static ISmsClient smsClient; |
||||
|
||||
public static ISmsClient getSmsClient() { |
||||
if (smsClient == null) { |
||||
smsClient = SpringUtil.getBean(ISmsClient.class); |
||||
} |
||||
return smsClient; |
||||
} |
||||
|
||||
/** |
||||
* 获取短信验证码参数 |
||||
* |
||||
* @return 验证码参数 |
||||
*/ |
||||
public static Map<String, String> getValidateParams() { |
||||
Map<String, String> params = new HashMap<>(1); |
||||
params.put(PARAM_KEY, StringUtil.random(6, RandomType.INT)); |
||||
return params; |
||||
} |
||||
|
||||
/** |
||||
* 发送短信 |
||||
* |
||||
* @param code 资源编号 |
||||
* @param params 模板参数 |
||||
* @param phones 手机号集合 |
||||
* @return 发送结果 |
||||
*/ |
||||
public static boolean sendMessage(String code, Map<String, String> params, String phones) { |
||||
R result = getSmsClient().sendMessage(code, JsonUtil.toJson(params), phones); |
||||
return result.isSuccess(); |
||||
} |
||||
|
||||
/** |
||||
* 发送验证码 |
||||
* |
||||
* @param code 资源编号 |
||||
* @param phone 手机号 |
||||
* @return 发送结果 |
||||
*/ |
||||
public static SmsCode sendValidate(String code, String phone) { |
||||
SmsCode smsCode = new SmsCode(); |
||||
R result = getSmsClient().sendValidate(code, phone); |
||||
if (result.isSuccess()) { |
||||
smsCode = JsonUtil.parse(JsonUtil.toJson(result.getData()), SmsCode.class); |
||||
} else { |
||||
smsCode.setSuccess(Boolean.FALSE); |
||||
} |
||||
return smsCode; |
||||
} |
||||
|
||||
/** |
||||
* 校验短信 |
||||
* |
||||
* @param code 资源编号 |
||||
* @param id 校验id |
||||
* @param value 校验值 |
||||
* @return 发送结果 |
||||
*/ |
||||
public static boolean validateMessage(String code, String id, String value) { |
||||
R result = getSmsClient().validateMessage(code, id, value); |
||||
return result.isSuccess(); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,67 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package org.springblade.resource.feign; |
||||
|
||||
import lombok.AllArgsConstructor; |
||||
import org.springblade.core.sms.model.SmsCode; |
||||
import org.springblade.core.sms.model.SmsData; |
||||
import org.springblade.core.tool.api.R; |
||||
import org.springblade.core.tool.jackson.JsonUtil; |
||||
import org.springblade.core.tool.utils.Func; |
||||
import org.springblade.resource.builder.sms.SmsBuilder; |
||||
import org.springframework.web.bind.annotation.PostMapping; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
import java.util.Map; |
||||
|
||||
import static org.springblade.resource.utils.SmsUtil.*; |
||||
|
||||
/** |
||||
* 短信远程调用服务 |
||||
* |
||||
* @author Chill |
||||
*/ |
||||
@RestController |
||||
@AllArgsConstructor |
||||
public class SmsClient implements ISmsClient { |
||||
|
||||
private SmsBuilder smsBuilder; |
||||
|
||||
@Override |
||||
@PostMapping(SEND_MESSAGE) |
||||
public R sendMessage(String code, String params, String phones) { |
||||
SmsData smsData = new SmsData(JsonUtil.readMap(params, String.class, String.class)); |
||||
boolean temp = smsBuilder.template(code).sendMulti(smsData, Func.toStrList(phones)); |
||||
return temp ? R.success(SEND_SUCCESS) : R.fail(SEND_FAIL); |
||||
} |
||||
|
||||
@Override |
||||
@PostMapping(SEND_VALIDATE) |
||||
public R sendValidate(String code, String phone) { |
||||
Map<String, String> params = getValidateParams(); |
||||
SmsCode smsCode = smsBuilder.template(code).sendValidate(new SmsData(params).setKey(PARAM_KEY), phone); |
||||
return smsCode.isSuccess() ? R.data(smsCode, SEND_SUCCESS) : R.fail(SEND_FAIL); |
||||
} |
||||
|
||||
@Override |
||||
@PostMapping(VALIDATE_MESSAGE) |
||||
public R validateMessage(String code, String id, String value) { |
||||
SmsCode smsCode = new SmsCode().setId(id).setValue(value); |
||||
boolean validate = smsBuilder.template(code).validateMessage(smsCode); |
||||
return validate ? R.success(VALIDATE_SUCCESS) : R.fail(VALIDATE_FAIL); |
||||
} |
||||
} |
Loading…
Reference in new issue