|
@@ -133,6 +133,30 @@ public class AuthorizationController {
|
|
|
return ResponseEntity.ok(authInfo);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation("登录授权")
|
|
|
+ @AnonymousPostMapping(value = "/login3")
|
|
|
+ public ResponseEntity<Object> login3(@Validated @RequestBody AuthUserDto authUser, HttpServletRequest request) throws Exception {
|
|
|
+ UsernamePasswordAuthenticationToken authenticationToken =
|
|
|
+ new UsernamePasswordAuthenticationToken(authUser.getUsername(), authUser.getPassword());
|
|
|
+ Authentication authentication = authenticationManagerBuilder.getObject().authenticate(authenticationToken);
|
|
|
+ SecurityContextHolder.getContext().setAuthentication(authentication);
|
|
|
+ // 生成令牌
|
|
|
+ String token = tokenProvider.createToken(authentication);
|
|
|
+ final JwtUserDto jwtUserDto = (JwtUserDto) authentication.getPrincipal();
|
|
|
+ // 保存在线信息
|
|
|
+ onlineUserService.save(jwtUserDto, token, request);
|
|
|
+ // 返回 token 与 用户信息
|
|
|
+ Map<String, Object> authInfo = new HashMap<String, Object>(2) {{
|
|
|
+ put("token", properties.getTokenStartWith() + token);
|
|
|
+ put("user", jwtUserDto);
|
|
|
+ }};
|
|
|
+ if (loginProperties.isSingleLogin()) {
|
|
|
+ //踢掉之前已经登录的token
|
|
|
+ onlineUserService.checkLoginOnUser(authUser.getUsername(), token);
|
|
|
+ }
|
|
|
+ return ResponseEntity.ok(authInfo);
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation("获取用户信息")
|
|
|
@GetMapping(value = "/info")
|
|
|
public ResponseEntity<Object> getUserInfo() {
|