|
|
|
@ -1,11 +1,14 @@
|
|
|
|
|
package cn.iocoder.yudao.module.system.controller.admin.weixin; |
|
|
|
|
|
|
|
|
|
import cn.iocoder.yudao.module.system.service.weixin.TokenValidatorService; |
|
|
|
|
import cn.iocoder.yudao.module.system.service.weixin.WeChatService; |
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping; |
|
|
|
|
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.annotation.security.PermitAll; |
|
|
|
|
|
|
|
|
|
@RestController |
|
|
|
@ -13,9 +16,15 @@ import javax.annotation.security.PermitAll;
|
|
|
|
|
@PermitAll |
|
|
|
|
public class WeChatController { |
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
|
@Resource |
|
|
|
|
private WeChatService weChatService; |
|
|
|
|
|
|
|
|
|
@Resource |
|
|
|
|
private TokenValidatorService tokenValidatorService; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private static final String TOKEN = "hbts"; |
|
|
|
|
|
|
|
|
|
@GetMapping("/send") |
|
|
|
|
@PermitAll |
|
|
|
|
public String sendMessage() { |
|
|
|
@ -30,4 +39,18 @@ public class WeChatController {
|
|
|
|
|
return "Failed to send message"; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@GetMapping("/push") |
|
|
|
|
@PermitAll |
|
|
|
|
public String validate(@RequestParam("signature") String signature, |
|
|
|
|
@RequestParam("timestamp") String timestamp, |
|
|
|
|
@RequestParam("nonce") String nonce, |
|
|
|
|
@RequestParam("echostr") String echostr) { |
|
|
|
|
if (tokenValidatorService.validateToken(TOKEN, signature, timestamp, nonce)) { |
|
|
|
|
return echostr; |
|
|
|
|
} |
|
|
|
|
return ""; |
|
|
|
|
} |
|
|
|
|
} |