DutyLoginLogController.java 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. package cn.com.taiji.duty.controller;
  2. import cn.com.taiji.duty.model.*;
  3. import cn.com.taiji.duty.service.IDutyAccountService;
  4. import cn.com.taiji.duty.service.IDutyLoginLogService;
  5. import cn.com.taiji.duty.service.IDutyOperLogService;
  6. import cn.com.taiji.duty.utils.*;
  7. import com.alibaba.excel.EasyExcel;
  8. import com.alibaba.fastjson.JSON;
  9. import com.github.pagehelper.PageHelper;
  10. import com.github.pagehelper.PageInfo;
  11. import io.swagger.annotations.Api;
  12. import io.swagger.annotations.ApiOperation;
  13. import lombok.extern.slf4j.Slf4j;
  14. import org.springframework.beans.factory.annotation.Autowired;
  15. import org.springframework.data.redis.core.StringRedisTemplate;
  16. import org.springframework.web.bind.annotation.*;
  17. import javax.servlet.http.HttpServletRequest;
  18. import javax.servlet.http.HttpServletResponse;
  19. import java.io.IOException;
  20. import java.net.URLEncoder;
  21. import java.util.HashMap;
  22. import java.util.List;
  23. import java.util.Objects;
  24. import java.util.concurrent.TimeUnit;
  25. import java.util.stream.Collectors;
  26. /**
  27. * <p>
  28. * 席位管理-登录日志 前端控制器
  29. * </p>
  30. *
  31. * @author yangyue
  32. * @since 2023-11-08
  33. */
  34. @Api(tags = "登录日志")
  35. @Slf4j
  36. @RestController
  37. @RequestMapping("/login/log")
  38. public class DutyLoginLogController {
  39. @Autowired
  40. private IDutyLoginLogService loginLogService;
  41. @Autowired
  42. private IDutyOperLogService operLogService;
  43. @Autowired
  44. protected StringRedisTemplate redisTemplate;
  45. @Autowired
  46. private IDutyAccountService accountService;
  47. @ApiOperation("登录日志查询")
  48. @GetMapping("search")
  49. public AjaxResult search(Long id) {
  50. DutyLoginLog one = loginLogService.getById(id);
  51. AjaxResult ajaxResult = new AjaxResult(200, "请求成功!");
  52. ajaxResult.put("data", one);
  53. return ajaxResult;
  54. }
  55. @ApiOperation("登录日志列表")
  56. @PostMapping("list")
  57. public TableDataInfo list(HttpServletRequest request, @RequestBody DutyLoginLogVo vo) {
  58. String token = JwtUtils.getToken(request);
  59. String username = redisTemplate.opsForValue().get(token);
  60. DutyAccount account = accountService.findByUsername(username);
  61. if (account != null) {
  62. List<DutyRole> roles = account.getRoles();
  63. List<String> stringList = roles.parallelStream().map(DutyRole::getPermissionValue).filter(Objects::nonNull).distinct().collect(Collectors.toList());
  64. String join = StringUtils.join(stringList, ",");
  65. if (join.contains("ZBY")) {
  66. vo.setDeptId(account.getDept().getId());
  67. }
  68. }
  69. PageHelper.startPage(vo.getPageNum(), vo.getPageSize());
  70. List<DutyLoginLog> list = loginLogService.queryList(vo);
  71. TableDataInfo rspData = new TableDataInfo();
  72. rspData.setCode(HttpStatus.SUCCESS);
  73. rspData.setMsg("查询成功");
  74. rspData.setRows(list);
  75. rspData.setTotal(new PageInfo(list).getTotal());
  76. return rspData;
  77. }
  78. @ApiOperation("导出登录日志列表")
  79. @PostMapping("export")
  80. public void export(HttpServletRequest request, HttpServletResponse response, @RequestBody(required = false) DutyLoginLogVo vo) {
  81. String token = JwtUtils.getToken(request);
  82. String username = redisTemplate.opsForValue().get(token);
  83. DutyAccount account = accountService.findByUsername(username);
  84. if (account != null) {
  85. List<DutyRole> roles = account.getRoles();
  86. List<String> stringList = roles.parallelStream().map(DutyRole::getPermissionValue).filter(Objects::nonNull).distinct().collect(Collectors.toList());
  87. String join = StringUtils.join(stringList, ",");
  88. if (join.contains("ZBY")) {
  89. vo.setDeptId(account.getDept().getId());
  90. }
  91. }
  92. List<DutyLoginLog> list = loginLogService.queryList(vo);
  93. list.forEach(loginLog -> {
  94. if (loginLog.getDuration() != null) {
  95. String result="";
  96. long hours = TimeUnit.SECONDS.toHours(loginLog.getDuration());
  97. long minutes = TimeUnit.SECONDS.toMinutes(loginLog.getDuration()) % 60;
  98. long seconds = loginLog.getDuration() % 60;
  99. if(hours!=0){
  100. result+=hours+"时";
  101. }
  102. if(minutes!=0){
  103. result+=minutes+"分";
  104. }
  105. if(seconds!=0){
  106. result+=seconds+"秒";
  107. }
  108. loginLog.setDurationValue(result);
  109. }
  110. });
  111. DutyOperLog operLog = new DutyOperLog();
  112. operLog.setOperModule("8");
  113. operLog.setOperType("3");
  114. operLogService.saveOperLog(operLog);
  115. exportExcel(response,DutyLoginLog.class,list,"登录日志列表");
  116. }
  117. // @ApiOperation("登录日志新增")
  118. @PostMapping("save")
  119. public AjaxResult save(@RequestBody DutyLoginLog loginLog) {
  120. boolean save = loginLogService.save(loginLog);
  121. AjaxResult ajaxResult = null;
  122. if (!save) {
  123. ajaxResult = new AjaxResult(500, "请求失败!");
  124. return ajaxResult;
  125. }
  126. ajaxResult = new AjaxResult(200, "请求成功!");
  127. ajaxResult.put("data", loginLog.getId());
  128. return ajaxResult;
  129. }
  130. // @ApiOperation("登录日志编辑")
  131. @PutMapping("edit")
  132. public AjaxResult update(@RequestBody DutyLoginLog loginLog) {
  133. boolean update = loginLogService.updateById(loginLog);
  134. AjaxResult ajaxResult = null;
  135. if (!update) {
  136. ajaxResult = new AjaxResult(500, "请求失败!");
  137. return ajaxResult;
  138. }
  139. ajaxResult = new AjaxResult(200, "请求成功!");
  140. return ajaxResult;
  141. }
  142. // @ApiOperation("登录日志删除")
  143. @DeleteMapping("delete")
  144. public AjaxResult delete(Long id) {
  145. boolean remove = loginLogService.removeById(id);
  146. AjaxResult ajaxResult = null;
  147. if (!remove) {
  148. ajaxResult = new AjaxResult(500, "请求失败!");
  149. return ajaxResult;
  150. }
  151. ajaxResult = new AjaxResult(200, "请求成功!");
  152. return ajaxResult;
  153. }
  154. /**
  155. * 导出表格数据
  156. * @param cl 表格字段实体类
  157. * @param data 查询数据
  158. * @param sheetName 表格名称
  159. */
  160. public void exportExcel(HttpServletResponse response, Class cl, List data, String sheetName){
  161. HashMap<String, String> map = new HashMap<>();
  162. try {
  163. response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
  164. response.setCharacterEncoding("utf-8");
  165. String fileName = URLEncoder.encode(sheetName, "UTF-8").replaceAll("\\+", "%20");
  166. response.setHeader("Content-disposition", "attachment;filename*=utf-8''" + fileName + ".xlsx");
  167. EasyExcel.write(response.getOutputStream(), cl).autoCloseStream(Boolean.FALSE).sheet(sheetName).doWrite(data);
  168. } catch (IOException e) {
  169. response.reset();
  170. response.setContentType("application/json");
  171. response.setCharacterEncoding("utf-8");
  172. map.put("status", "failure");
  173. map.put("message", "下载文件失败" + e.getMessage());
  174. try {
  175. response.getWriter().println(JSON.toJSONString(map));
  176. } catch (IOException ex) {
  177. ex.printStackTrace();
  178. }
  179. }
  180. }
  181. }