| | |
| | | package com.ruoyi.system.controller;
|
| | |
|
| | | import java.io.IOException;
|
| | | import java.util.List;
|
| | | import javax.servlet.http.HttpServletResponse;
|
| | | import org.springframework.beans.factory.annotation.Autowired;
|
| | |
| | | import org.springframework.web.bind.annotation.GetMapping;
|
| | | import org.springframework.web.bind.annotation.PathVariable;
|
| | | import org.springframework.web.bind.annotation.PostMapping;
|
| | | import org.springframework.web.bind.annotation.RequestBody;
|
| | | import org.springframework.web.bind.annotation.RequestMapping;
|
| | | import org.springframework.web.bind.annotation.RequestParam;
|
| | | import org.springframework.web.bind.annotation.RestController;
|
| | | import com.ruoyi.common.core.constant.Constants;
|
| | | import com.ruoyi.common.core.utils.ServletUtils;
|
| | | import com.ruoyi.common.core.utils.ip.IpUtils;
|
| | | import com.ruoyi.common.core.constant.CacheConstants;
|
| | | import com.ruoyi.common.core.utils.poi.ExcelUtil;
|
| | | import com.ruoyi.common.core.web.controller.BaseController;
|
| | | import com.ruoyi.common.core.web.domain.AjaxResult;
|
| | | import com.ruoyi.common.core.web.page.TableDataInfo;
|
| | | import com.ruoyi.common.log.annotation.Log;
|
| | | import com.ruoyi.common.log.enums.BusinessType;
|
| | | import com.ruoyi.common.security.annotation.PreAuthorize;
|
| | | import com.ruoyi.system.domain.SysLogininfor;
|
| | | import com.ruoyi.common.redis.service.RedisService;
|
| | | import com.ruoyi.common.security.annotation.InnerAuth;
|
| | | import com.ruoyi.common.security.annotation.RequiresPermissions;
|
| | | import com.ruoyi.system.api.domain.SysLogininfor;
|
| | | import com.ruoyi.system.service.ISysLogininforService;
|
| | |
|
| | | /**
|
| | |
| | | @Autowired
|
| | | private ISysLogininforService logininforService;
|
| | |
|
| | | @PreAuthorize(hasPermi = "system:logininfor:list")
|
| | | @Autowired
|
| | | private RedisService redisService;
|
| | |
|
| | | @RequiresPermissions("system:logininfor:list")
|
| | | @GetMapping("/list")
|
| | | public TableDataInfo list(SysLogininfor logininfor)
|
| | | {
|
| | |
| | | }
|
| | |
|
| | | @Log(title = "登录日志", businessType = BusinessType.EXPORT)
|
| | | @PreAuthorize(hasPermi = "system:logininfor:export")
|
| | | @RequiresPermissions("system:logininfor:export")
|
| | | @PostMapping("/export")
|
| | | public void export(HttpServletResponse response, SysLogininfor logininfor) throws IOException
|
| | | public void export(HttpServletResponse response, SysLogininfor logininfor)
|
| | | {
|
| | | List<SysLogininfor> list = logininforService.selectLogininforList(logininfor);
|
| | | ExcelUtil<SysLogininfor> util = new ExcelUtil<SysLogininfor>(SysLogininfor.class);
|
| | | util.exportExcel(response, list, "登录日志");
|
| | | }
|
| | |
|
| | | @PreAuthorize(hasPermi = "system:logininfor:remove")
|
| | | @RequiresPermissions("system:logininfor:remove")
|
| | | @Log(title = "登录日志", businessType = BusinessType.DELETE)
|
| | | @DeleteMapping("/{infoIds}")
|
| | | public AjaxResult remove(@PathVariable Long[] infoIds)
|
| | |
| | | return toAjax(logininforService.deleteLogininforByIds(infoIds));
|
| | | }
|
| | |
|
| | | @PreAuthorize(hasPermi = "system:logininfor:remove")
|
| | | @RequiresPermissions("system:logininfor:remove")
|
| | | @Log(title = "登录日志", businessType = BusinessType.DELETE)
|
| | | @DeleteMapping("/clean")
|
| | | public AjaxResult clean()
|
| | |
| | | return AjaxResult.success();
|
| | | }
|
| | |
|
| | | @PostMapping
|
| | | public AjaxResult add(@RequestParam("username") String username, @RequestParam("status") String status,
|
| | | @RequestParam("message") String message)
|
| | | @RequiresPermissions("system:logininfor:unlock")
|
| | | @Log(title = "账户解锁", businessType = BusinessType.OTHER)
|
| | | @GetMapping("/unlock/{userName}")
|
| | | public AjaxResult unlock(@PathVariable("userName") String userName)
|
| | | {
|
| | | String ip = IpUtils.getIpAddr(ServletUtils.getRequest());
|
| | | redisService.deleteObject(CacheConstants.PWD_ERR_CNT_KEY + userName);
|
| | | return success();
|
| | | }
|
| | |
|
| | | // 封装对象
|
| | | SysLogininfor logininfor = new SysLogininfor();
|
| | | logininfor.setUserName(username);
|
| | | logininfor.setIpaddr(ip);
|
| | | logininfor.setMsg(message);
|
| | | // 日志状态
|
| | | if (Constants.LOGIN_SUCCESS.equals(status) || Constants.LOGOUT.equals(status))
|
| | | {
|
| | | logininfor.setStatus("0");
|
| | | }
|
| | | else if (Constants.LOGIN_FAIL.equals(status))
|
| | | {
|
| | | logininfor.setStatus("1");
|
| | | }
|
| | | @InnerAuth
|
| | | @PostMapping
|
| | | public AjaxResult add(@RequestBody SysLogininfor logininfor)
|
| | | {
|
| | | return toAjax(logininforService.insertLogininfor(logininfor));
|
| | | }
|
| | | }
|