|
@@ -0,0 +1,190 @@
|
|
|
+package com.yonge.cooleshow.admin.controller;
|
|
|
+
|
|
|
+import cn.hutool.core.collection.CollUtil;
|
|
|
+import com.ym.mec.auth.api.client.SysUserFeignService;
|
|
|
+import com.ym.mec.auth.api.entity.SysUser;
|
|
|
+import com.ym.mec.common.entity.HttpResponseResult;
|
|
|
+import com.yonge.cooleshow.admin.dto.UmsAdminLoginParam;
|
|
|
+import com.yonge.cooleshow.admin.service.UmsAdminService;
|
|
|
+import com.yonge.cooleshow.admin.service.UmsRoleService;
|
|
|
+import com.yonge.cooleshow.mall.common.api.CommonPage;
|
|
|
+import com.yonge.cooleshow.mall.common.api.CommonResult;
|
|
|
+import com.yonge.cooleshow.mall.common.api.ResultCode;
|
|
|
+import com.yonge.cooleshow.mbg.model.UmsAdmin;
|
|
|
+import com.yonge.cooleshow.mbg.model.UmsRole;
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.stereotype.Controller;
|
|
|
+import org.springframework.validation.annotation.Validated;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
+
|
|
|
+import javax.servlet.http.HttpServletRequest;
|
|
|
+import java.util.HashMap;
|
|
|
+import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
+import java.util.stream.Collectors;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 后台用户管理Controller
|
|
|
+ * Created by macro on 2018/4/26.
|
|
|
+ */
|
|
|
+@Controller
|
|
|
+@Api(tags = "UmsAdminController", description = "后台用户管理")
|
|
|
+@RequestMapping("/admin")
|
|
|
+public class UmsAdminController {
|
|
|
+ @Autowired
|
|
|
+ private UmsAdminService adminService;
|
|
|
+ @Autowired
|
|
|
+ private UmsRoleService roleService;
|
|
|
+ @Autowired
|
|
|
+ private SysUserFeignService sysUserFeignService;
|
|
|
+
|
|
|
+
|
|
|
+ @ApiOperation(value = "登录以后返回token")
|
|
|
+ @RequestMapping(value = "/login", method = RequestMethod.POST)
|
|
|
+ @ResponseBody
|
|
|
+ public CommonResult login(@Validated @RequestBody UmsAdminLoginParam umsAdminLoginParam) {
|
|
|
+
|
|
|
+ Map<String, String> tokenMap = new HashMap<>();
|
|
|
+ tokenMap.put("token", "token");
|
|
|
+ tokenMap.put("tokenHead", "tokenHead");
|
|
|
+ return CommonResult.success(tokenMap);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ @ApiOperation(value = "刷新token")
|
|
|
+ @RequestMapping(value = "/refreshToken", method = RequestMethod.GET)
|
|
|
+ @ResponseBody
|
|
|
+ public CommonResult refreshToken(String refreshToken, String clientId, String clientSecret) {
|
|
|
+
|
|
|
+ HttpResponseResult httpResponseResult = sysUserFeignService.refreshToken(refreshToken, clientId, clientSecret);
|
|
|
+ if (httpResponseResult.getStatus()) {
|
|
|
+ return CommonResult.success(httpResponseResult.getData());
|
|
|
+ } else {
|
|
|
+ return CommonResult.failed(httpResponseResult.getMsg());
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation(value = "获取当前登录用户信息")
|
|
|
+ @RequestMapping(value = "/info", method = RequestMethod.GET)
|
|
|
+ @ResponseBody
|
|
|
+ public CommonResult getAdminInfo() {
|
|
|
+
|
|
|
+ SysUser sysUser = sysUserFeignService.queryUserInfo();
|
|
|
+ if (sysUser == null || sysUser.getId() == null) {
|
|
|
+ return CommonResult.failed(ResultCode.FORBIDDEN, "请登录");
|
|
|
+ }
|
|
|
+
|
|
|
+ adminService.saveAdmin();
|
|
|
+
|
|
|
+ UmsAdmin umsAdmin = adminService.getAdminById(sysUser.getId().longValue());
|
|
|
+ if (umsAdmin == null) {
|
|
|
+ return CommonResult.failed("用户同步失败");
|
|
|
+ }
|
|
|
+
|
|
|
+ adminService.updateInfo(umsAdmin.getId(),sysUser);
|
|
|
+
|
|
|
+ if (umsAdmin.getStatus() == 0) {
|
|
|
+ return CommonResult.failed("用户被禁用");
|
|
|
+ }
|
|
|
+ Map<String, Object> data = new HashMap<>();
|
|
|
+ data.put("username", umsAdmin.getUsername());
|
|
|
+ data.put("menus", roleService.getMenuList(umsAdmin.getId()));
|
|
|
+ data.put("icon", umsAdmin.getIcon());
|
|
|
+ List<UmsRole> roleList = adminService.getRoleList(umsAdmin.getId());
|
|
|
+ if(CollUtil.isNotEmpty(roleList)){
|
|
|
+ List<String> roles = roleList.stream().map(UmsRole::getName).collect(Collectors.toList());
|
|
|
+ data.put("roles",roles);
|
|
|
+ }
|
|
|
+ return CommonResult.success(data);
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation(value = "登出功能")
|
|
|
+ @RequestMapping(value = "/logout", method = RequestMethod.POST)
|
|
|
+ @ResponseBody
|
|
|
+ public CommonResult logout(HttpServletRequest request) {
|
|
|
+ // HttpResponseResult<String> logout = sysUserFeignService.remoteExit();
|
|
|
+
|
|
|
+ HttpResponseResult<String> logout = sysUserFeignService.logout();
|
|
|
+ if (logout.getStatus()) {
|
|
|
+ return CommonResult.success(logout.getData());
|
|
|
+ } else {
|
|
|
+ return CommonResult.failed(logout.getMsg());
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation("根据用户名或姓名分页获取用户列表")
|
|
|
+ @RequestMapping(value = "/list", method = RequestMethod.GET)
|
|
|
+ @ResponseBody
|
|
|
+ public CommonResult<CommonPage<UmsAdmin>> list(@RequestParam(value = "keyword", required = false) String keyword,
|
|
|
+ @RequestParam(value = "pageSize", defaultValue = "5") Integer pageSize,
|
|
|
+ @RequestParam(value = "pageNum", defaultValue = "1") Integer pageNum) {
|
|
|
+ List<UmsAdmin> adminList = adminService.list(keyword, pageSize, pageNum);
|
|
|
+ return CommonResult.success(CommonPage.restPage(adminList));
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation("获取指定用户信息")
|
|
|
+ @RequestMapping(value = "/{id}", method = RequestMethod.GET)
|
|
|
+ @ResponseBody
|
|
|
+ public CommonResult<UmsAdmin> getItem(@PathVariable Long id) {
|
|
|
+ UmsAdmin admin = adminService.getItem(id);
|
|
|
+ return CommonResult.success(admin);
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation("修改指定用户信息")
|
|
|
+ @RequestMapping(value = "/update/{id}", method = RequestMethod.POST)
|
|
|
+ @ResponseBody
|
|
|
+ public CommonResult update(@PathVariable Long id, @RequestBody UmsAdmin admin) {
|
|
|
+ int count = adminService.update(id, admin);
|
|
|
+ if (count > 0) {
|
|
|
+ return CommonResult.success(count);
|
|
|
+ }
|
|
|
+ return CommonResult.failed();
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation("删除指定用户信息")
|
|
|
+ @RequestMapping(value = "/delete/{id}", method = RequestMethod.POST)
|
|
|
+ @ResponseBody
|
|
|
+ public CommonResult delete(@PathVariable Long id) {
|
|
|
+ int count = adminService.delete(id);
|
|
|
+ if (count > 0) {
|
|
|
+ return CommonResult.success(count);
|
|
|
+ }
|
|
|
+ return CommonResult.failed();
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation("修改帐号状态")
|
|
|
+ @RequestMapping(value = "/updateStatus/{id}", method = RequestMethod.POST)
|
|
|
+ @ResponseBody
|
|
|
+ public CommonResult updateStatus(@PathVariable Long id,@RequestParam(value = "status") Integer status) {
|
|
|
+ UmsAdmin umsAdmin = new UmsAdmin();
|
|
|
+ umsAdmin.setStatus(status);
|
|
|
+ int count = adminService.update(id,umsAdmin);
|
|
|
+ if (count > 0) {
|
|
|
+ return CommonResult.success(count);
|
|
|
+ }
|
|
|
+ return CommonResult.failed();
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation("给用户分配角色")
|
|
|
+ @RequestMapping(value = "/role/update", method = RequestMethod.POST)
|
|
|
+ @ResponseBody
|
|
|
+ public CommonResult updateRole(@RequestParam("adminId") Long adminId,
|
|
|
+ @RequestParam("roleIds") List<Long> roleIds) {
|
|
|
+ int count = adminService.updateRole(adminId, roleIds);
|
|
|
+ if (count >= 0) {
|
|
|
+ return CommonResult.success(count);
|
|
|
+ }
|
|
|
+ return CommonResult.failed();
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation("获取指定用户的角色")
|
|
|
+ @RequestMapping(value = "/role/{adminId}", method = RequestMethod.GET)
|
|
|
+ @ResponseBody
|
|
|
+ public CommonResult<List<UmsRole>> getRoleList(@PathVariable Long adminId) {
|
|
|
+ List<UmsRole> roleList = adminService.getRoleList(adminId);
|
|
|
+ return CommonResult.success(roleList);
|
|
|
+ }
|
|
|
+
|
|
|
+}
|