package com.iailab.module.system.controller.admin.sms;
|
|
import com.iailab.framework.common.pojo.CommonResult;
|
import com.iailab.framework.common.util.servlet.ServletUtils;
|
import com.iailab.module.system.framework.sms.core.enums.SmsChannelEnum;
|
import com.iailab.module.system.service.sms.SmsSendService;
|
import io.swagger.v3.oas.annotations.Operation;
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
import org.springframework.web.bind.annotation.PostMapping;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
import javax.annotation.Resource;
|
import javax.annotation.security.PermitAll;
|
import javax.servlet.http.HttpServletRequest;
|
|
import static com.iailab.framework.common.pojo.CommonResult.success;
|
|
@Tag(name = "管理后台 - 短信回调")
|
@RestController
|
@RequestMapping("/system/sms/callback")
|
public class SmsCallbackController {
|
|
@Resource
|
private SmsSendService smsSendService;
|
|
@PostMapping("/aliyun")
|
@PermitAll
|
@Operation(summary = "阿里云短信的回调", description = "参见 https://help.aliyun.com/zh/sms/developer-reference/configure-delivery-receipts-1 文档")
|
public CommonResult<Boolean> receiveAliyunSmsStatus(HttpServletRequest request) throws Throwable {
|
String text = ServletUtils.getBody(request);
|
smsSendService.receiveSmsStatus(SmsChannelEnum.ALIYUN.getCode(), text);
|
return success(true);
|
}
|
|
@PostMapping("/tencent")
|
@PermitAll
|
@Operation(summary = "腾讯云短信的回调", description = "参见 https://cloud.tencent.com/document/product/382/59178 文档")
|
public CommonResult<Boolean> receiveTencentSmsStatus(HttpServletRequest request) throws Throwable {
|
String text = ServletUtils.getBody(request);
|
smsSendService.receiveSmsStatus(SmsChannelEnum.TENCENT.getCode(), text);
|
return success(true);
|
}
|
|
}
|