|
|
@ -10,6 +10,8 @@ import javax.annotation.Resource;
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
|
import javax.validation.Valid;
|
|
|
|
import javax.validation.Valid;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
|
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
|
import org.springframework.validation.BindingResult;
|
|
|
|
import org.springframework.validation.BindingResult;
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
@ -59,7 +61,7 @@ import springfox.documentation.annotations.ApiIgnore;
|
|
|
|
* 登录相关
|
|
|
|
* 登录相关
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
@ApiIgnore
|
|
|
|
@Api(tags = "用户登录接口")
|
|
|
|
@RestController
|
|
|
|
@RestController
|
|
|
|
@Slf4j
|
|
|
|
@Slf4j
|
|
|
|
public class LoginController extends BaseController {
|
|
|
|
public class LoginController extends BaseController {
|
|
|
@ -86,6 +88,7 @@ public class LoginController extends BaseController {
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
|
|
|
|
@ApiOperation("系统用户登录")
|
|
|
|
@PostMapping(value = "/login")
|
|
|
|
@PostMapping(value = "/login")
|
|
|
|
public BaseResponse index(@RequestBody @Valid LoginRequest loginRequest,
|
|
|
|
public BaseResponse index(@RequestBody @Valid LoginRequest loginRequest,
|
|
|
|
BindingResult bindingResult,
|
|
|
|
BindingResult bindingResult,
|
|
|
@ -150,6 +153,7 @@ public class LoginController extends BaseController {
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
|
|
|
|
@ApiIgnore
|
|
|
|
@PostMapping(value = "/pc/login")
|
|
|
|
@PostMapping(value = "/pc/login")
|
|
|
|
public BaseResponse pcLogin(@RequestBody @Valid PCLoginRequest loginRequest,
|
|
|
|
public BaseResponse pcLogin(@RequestBody @Valid PCLoginRequest loginRequest,
|
|
|
|
BindingResult bindingResult,
|
|
|
|
BindingResult bindingResult,
|
|
|
@ -217,6 +221,7 @@ public class LoginController extends BaseController {
|
|
|
|
@Resource
|
|
|
|
@Resource
|
|
|
|
ISysRoleService sysRoleService;
|
|
|
|
ISysRoleService sysRoleService;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiIgnore
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
@GetMapping("/getInfo")
|
|
|
|
@GetMapping("/getInfo")
|
|
|
|
public BaseResponse getUserInfo(HttpServletRequest request) {
|
|
|
|
public BaseResponse getUserInfo(HttpServletRequest request) {
|
|
|
@ -245,6 +250,7 @@ public class LoginController extends BaseController {
|
|
|
|
@Resource
|
|
|
|
@Resource
|
|
|
|
ISysMenuService menuService;
|
|
|
|
ISysMenuService menuService;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiIgnore
|
|
|
|
@GetMapping("/spms/getRouters")
|
|
|
|
@GetMapping("/spms/getRouters")
|
|
|
|
public BaseResponse getRouters() {
|
|
|
|
public BaseResponse getRouters() {
|
|
|
|
AuthAdmin authAdmin = getUser();
|
|
|
|
AuthAdmin authAdmin = getUser();
|
|
|
@ -257,6 +263,7 @@ public class LoginController extends BaseController {
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
|
|
|
|
@ApiOperation("系统用户登出")
|
|
|
|
@PostMapping("/admin/auth/login/out")
|
|
|
|
@PostMapping("/admin/auth/login/out")
|
|
|
|
public BaseResponse out() {
|
|
|
|
public BaseResponse out() {
|
|
|
|
return ResultVOUtils.success();
|
|
|
|
return ResultVOUtils.success();
|
|
|
@ -267,6 +274,7 @@ public class LoginController extends BaseController {
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
|
|
|
|
@ApiIgnore
|
|
|
|
@AuthRuleAnnotation("") // 需要登录验证,但是不需要权限验证时,value 值填空字符串
|
|
|
|
@AuthRuleAnnotation("") // 需要登录验证,但是不需要权限验证时,value 值填空字符串
|
|
|
|
@PostMapping("/admin/auth/login/password")
|
|
|
|
@PostMapping("/admin/auth/login/password")
|
|
|
|
public BaseResponse password(@RequestBody @Valid UpdatePasswordRequest updatePasswordRequest,
|
|
|
|
public BaseResponse password(@RequestBody @Valid UpdatePasswordRequest updatePasswordRequest,
|
|
|
|