|
@@ -0,0 +1,45 @@
|
|
|
+package com.ym.mec.web.controller;
|
|
|
+
|
|
|
+import com.ym.mec.biz.service.SmsCodeService;
|
|
|
+import com.ym.mec.common.controller.BaseController;
|
|
|
+import com.ym.mec.common.security.SecurityConstants;
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import io.swagger.annotations.ApiImplicitParam;
|
|
|
+import io.swagger.annotations.ApiImplicitParams;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
+import org.apache.commons.lang3.StringUtils;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.web.bind.annotation.PostMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+@RestController
|
|
|
+@RequestMapping("code")
|
|
|
+@Api(tags = "验证码服务")
|
|
|
+public class SmsCodeController extends BaseController {
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private SmsCodeService smsCodeService;
|
|
|
+
|
|
|
+ @ApiOperation(value = "发送登录短信验证码")
|
|
|
+ @ApiImplicitParam(name = "mobile", value = "手机号", required = true, dataType = "String")
|
|
|
+ @PostMapping(value = "/sendSms")
|
|
|
+ public Object sendLoginVerifyCode(String mobile) throws Exception {
|
|
|
+ smsCodeService.sendValidCode(mobile);
|
|
|
+ return succeed();
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation(value = "校验短信验证码")
|
|
|
+ @ApiImplicitParams({ @ApiImplicitParam(name = "phone", value = "手机号", required = true, dataType = "String"),
|
|
|
+ @ApiImplicitParam(name = "code", value = "短信验证码", required = true, dataType = "String") })
|
|
|
+ @PostMapping(value = "/verifySmsCode")
|
|
|
+ public Object verifySmsCode(String phone,String code) {
|
|
|
+ if(StringUtils.isEmpty(phone) || StringUtils.isEmpty(code)){
|
|
|
+ return failed(SecurityConstants.PARAM_VERIFY_EXCEPTION);
|
|
|
+ }
|
|
|
+ if(smsCodeService.verifyValidCode(phone,code)){
|
|
|
+ return succeed();
|
|
|
+ }
|
|
|
+ return failed();
|
|
|
+ }
|
|
|
+}
|