Commit dc9561e9 authored by honghy's avatar honghy

注释回调接口

parent c24b0851
package cn.iocoder.yudao.module.system.controller.admin.sms;
import cn.hutool.core.util.URLUtil;
import cn.hutool.extra.servlet.ServletUtil;
import cn.iocoder.yudao.framework.common.pojo.CommonResult;
import cn.iocoder.yudao.framework.common.util.json.JsonUtils;
import cn.iocoder.yudao.framework.operatelog.core.annotations.OperateLog;
import cn.iocoder.yudao.framework.sms.core.client.impl.sendchamp.SendChampSmsClient;
import cn.iocoder.yudao.framework.sms.core.enums.SmsChannelEnum;
import cn.iocoder.yudao.module.system.service.sms.SmsLogService;
import cn.iocoder.yudao.module.system.service.sms.SmsSendService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiImplicitParam;
import io.swagger.annotations.ApiOperation;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success;
/**
* @author ECIT-2
*/
@Api(tags = "管理后台 - 短信回调")
@RestController
@RequestMapping("/system/sms/callback")
public class SmsCallbackController {
@Resource
private SmsSendService smsSendService;
@Resource
private SmsLogService smsLogService;
@PostMapping("/yunpian")
@ApiOperation(value = "云片短信的回调", notes = "参见 https://www.yunpian.com/official/document/sms/zh_cn/domestic_push_report 文档")
@ApiImplicitParam(name = "sms_status", value = "发送状态", required = true, example = "[{具体内容}]", dataTypeClass = String.class)
@OperateLog(enable = false)
public String receiveYunpianSmsStatus(@RequestParam("sms_status") String smsStatus) throws Throwable {
String text = URLUtil.decode(smsStatus); // decode 解码参数,因为它被 encode
smsSendService.receiveSmsStatus(SmsChannelEnum.YUN_PIAN.getCode(), text);
return "SUCCESS"; // 约定返回 SUCCESS 为成功
}
@PostMapping("/aliyun")
@ApiOperation(value = "阿里云短信的回调", notes = "参见 https://help.aliyun.com/document_detail/120998.html 文档")
@OperateLog(enable = false)
public CommonResult<Boolean> receiveAliyunSmsStatus(HttpServletRequest request) throws Throwable {
String text = ServletUtil.getBody(request);
smsSendService.receiveSmsStatus(SmsChannelEnum.ALIYUN.getCode(), text);
return success(true);
}
@PostMapping("/sendchamp")
@ApiOperation(value = "sendchamp短信的回调")
@OperateLog(enable = false)
public CommonResult<Boolean> receiveSendchampSmsStatus(HttpServletRequest request) {
String text = ServletUtil.getBody(request);
SendChampSmsClient.SmsReceiveStatus smsReceiveStatus = JsonUtils.parseObject(text, SendChampSmsClient.SmsReceiveStatus.class);
smsLogService.updateSendChampReceive(smsReceiveStatus);
return success(true);
}
}
//package cn.iocoder.yudao.module.system.controller.admin.sms;
//
//import cn.hutool.core.util.URLUtil;
//import cn.hutool.extra.servlet.ServletUtil;
//import cn.iocoder.yudao.framework.common.pojo.CommonResult;
//import cn.iocoder.yudao.framework.common.util.json.JsonUtils;
//import cn.iocoder.yudao.framework.operatelog.core.annotations.OperateLog;
//import cn.iocoder.yudao.framework.sms.core.client.impl.sendchamp.SendChampSmsClient;
//import cn.iocoder.yudao.framework.sms.core.enums.SmsChannelEnum;
//import cn.iocoder.yudao.module.system.service.sms.SmsLogService;
//import cn.iocoder.yudao.module.system.service.sms.SmsSendService;
//import io.swagger.annotations.Api;
//import io.swagger.annotations.ApiImplicitParam;
//import io.swagger.annotations.ApiOperation;
//import org.springframework.web.bind.annotation.PostMapping;
//import org.springframework.web.bind.annotation.RequestMapping;
//import org.springframework.web.bind.annotation.RequestParam;
//import org.springframework.web.bind.annotation.RestController;
//
//import javax.annotation.Resource;
//import javax.servlet.http.HttpServletRequest;
//
//import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success;
//
///**
// * @author ECIT-2
// */
//@Api(tags = "管理后台 - 短信回调")
//@RestController
//@RequestMapping("/system/sms/callback")
//public class SmsCallbackController {
//
// @Resource
// private SmsSendService smsSendService;
//
// @Resource
// private SmsLogService smsLogService;
//
// @PostMapping("/yunpian")
// @ApiOperation(value = "云片短信的回调", notes = "参见 https://www.yunpian.com/official/document/sms/zh_cn/domestic_push_report 文档")
// @ApiImplicitParam(name = "sms_status", value = "发送状态", required = true, example = "[{具体内容}]", dataTypeClass = String.class)
// @OperateLog(enable = false)
// public String receiveYunpianSmsStatus(@RequestParam("sms_status") String smsStatus) throws Throwable {
// String text = URLUtil.decode(smsStatus); // decode 解码参数,因为它被 encode
// smsSendService.receiveSmsStatus(SmsChannelEnum.YUN_PIAN.getCode(), text);
// return "SUCCESS"; // 约定返回 SUCCESS 为成功
// }
//
// @PostMapping("/aliyun")
// @ApiOperation(value = "阿里云短信的回调", notes = "参见 https://help.aliyun.com/document_detail/120998.html 文档")
// @OperateLog(enable = false)
// public CommonResult<Boolean> receiveAliyunSmsStatus(HttpServletRequest request) throws Throwable {
// String text = ServletUtil.getBody(request);
// smsSendService.receiveSmsStatus(SmsChannelEnum.ALIYUN.getCode(), text);
// return success(true);
// }
//
// @PostMapping("/sendchamp")
// @ApiOperation(value = "sendchamp短信的回调")
// @OperateLog(enable = false)
// public CommonResult<Boolean> receiveSendchampSmsStatus(HttpServletRequest request) {
// String text = ServletUtil.getBody(request);
// SendChampSmsClient.SmsReceiveStatus smsReceiveStatus = JsonUtils.parseObject(text, SendChampSmsClient.SmsReceiveStatus.class);
// smsLogService.updateSendChampReceive(smsReceiveStatus);
// return success(true);
// }
//}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment