mitao
2024-04-19 b21c37b7899b17dede7773db3c799aab1063ae1c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
package com.finance.web.controller.system;
 
import com.finance.common.constant.Constants;
import com.finance.common.core.domain.AjaxResult;
import com.finance.common.core.domain.entity.SysMenu;
import com.finance.common.core.domain.entity.SysRole;
import com.finance.common.core.domain.entity.SysUser;
import com.finance.common.core.domain.model.LoginBody;
import com.finance.common.core.domain.model.LoginUser;
import com.finance.common.core.redis.RedisCache;
import com.finance.common.utils.SecurityUtils;
import com.finance.framework.web.service.SysLoginService;
import com.finance.framework.web.service.SysPermissionService;
import com.finance.framework.web.service.TokenService;
import com.finance.system.service.ISysMenuService;
import com.finance.system.service.ISysRoleService;
import com.finance.system.service.TbDeptService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import java.util.List;
import java.util.Set;
import java.util.concurrent.TimeUnit;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.util.CollectionUtils;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
 
/**
 * 登录验证
 *
 * @author ruoyi
 */
@Api(tags = "登录")
@RestController
public class SysLoginController {
 
    @Autowired
    private SysLoginService loginService;
 
    @Autowired
    private ISysMenuService menuService;
 
    @Autowired
    private SysPermissionService permissionService;
    @Autowired
    private RedisCache redisCache;
    @Autowired
    private TokenService tokenService;
    @Autowired
    private ISysRoleService roleService;
    @Autowired
    private TbDeptService tbDeptService;
 
    /**
     * 账号密码登录
     *
     * @param loginBody 登录信息
     * @return 结果
     */
//    @ApiOperation(value = "账号密码登录", notes = "账号密码登录")
    @PostMapping("/login")
    public AjaxResult login(@RequestBody LoginBody loginBody) {
        AjaxResult ajax = AjaxResult.success();
        // 生成令牌
        LoginUser loginUser = loginService.login(loginBody.getUsername(), loginBody.getPassword(),
                loginBody.getCode(),
                loginBody.getUuid());
        ajax.put(Constants.TOKEN, tokenService.createToken(loginUser));
        List<SysRole> roles = loginUser.getUser().getRoles();
        if (CollectionUtils.isEmpty(roles)) {
            return AjaxResult.error("请关联角色!");
        }
 
        List<SysMenu> menus = roleService.roleInfoFromUserId(loginUser.getUserId());
 
        ajax.put("menus", menus);
        ajax.put("roleName", roles.get(0).getRoleName());
        ajax.put("userInfo", loginUser);
        return ajax;
    }
 
    /**
     * 账号密码登录
     *
     * @param loginBody 登录信息
     * @return 结果
     */
//    @ApiOperation(value = "短信登录", notes = "短信登录")
    @PostMapping("/loginCode")
    public AjaxResult loginCode(@RequestBody LoginBody loginBody) {
        AjaxResult ajax = AjaxResult.success();
        // 生成令牌
        LoginUser loginUser = loginService.loginCode(loginBody.getUsername(), loginBody.getCode());
        ajax.put(Constants.TOKEN, tokenService.createToken(loginUser));
        List<SysRole> roles = loginUser.getUser().getRoles();
        if (CollectionUtils.isEmpty(roles)) {
            return AjaxResult.error("请关联角色!");
        }
        List<SysMenu> menus = roleService.roleInfoFromUserId(loginUser.getUserId());
 
        ajax.put("menus", menus);
        ajax.put("roleName", roles.get(0).getRoleName());
        ajax.put("userInfo", loginUser);
        return ajax;
    }
 
    /**
     * 账号密码登录
     *
     * @param loginBody 部门管理后台登录
     * @return 结果
     */
    @ApiOperation(value = "部门管理后台登录", notes = "部门管理后台登录")
    @PostMapping("/loginPwd")
    public AjaxResult loginPwd(@RequestBody LoginBody loginBody) {
        AjaxResult ajax = AjaxResult.success();
        // 生成令牌
        LoginUser loginUser = loginService.loginPwd(loginBody.getUsername(),
                loginBody.getPassword(), loginBody.getCode(), loginBody.getUuid());
        ajax.put(Constants.TOKEN, tokenService.createToken(loginUser));
        //List<SysRole> roles = loginUser.getUser().getRoles();
        //if(CollectionUtils.isEmpty(roles)){
        //    return AjaxResult.error("请关联角色!");
        //}
        //List<SysMenu> menus = roleService.roleInfoFromUserId(loginUser.getUserId());
 
        //ajax.put("menus",menus);
        //ajax.put("roleName",roles.get(0).getRoleName());
        ajax.put("userInfo", loginUser);
        return ajax;
    }
 
    /**
     * 获取验证码
     *
     * @param phone 手机号
     * @return 结果
     */
//    @ApiOperation(value = "获取验证码",notes = "获取验证码")
    @GetMapping("/getCode")
    public AjaxResult getCode(@RequestParam String phone) {
        redisCache.setCacheObject(phone, "123456", 5, TimeUnit.MINUTES);
        return AjaxResult.success();
    }
 
    /**
     * 获取用户信息
     *
     * @return 用户信息
     */
    @GetMapping("getInfo")
    public AjaxResult getInfo() {
        SysUser user = SecurityUtils.getLoginUser().getUser();
        // 角色集合
        Set<String> roles = permissionService.getRolePermission(user);
        // 权限集合
        Set<String> permissions = permissionService.getMenuPermission(user);
        AjaxResult ajax = AjaxResult.success();
        ajax.put("user", user);
        ajax.put("roles", roles);
        ajax.put("permissions", permissions);
        return ajax;
    }
 
    /**
     * 获取路由信息
     *
     * @return 路由信息
     */
    @GetMapping("getRouters")
    public AjaxResult getRouters() {
        Long userId = SecurityUtils.getUserId();
        List<SysMenu> menus = menuService.selectMenuTreeByUserId(userId);
        return AjaxResult.success(menuService.buildMenus(menus));
    }
}