screen-api/pom.xml
@@ -11,6 +11,12 @@ <artifactId>screen-api</artifactId> <dependencies> <!-- http请求工具包依赖 --> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5.2</version> </dependency> <dependency> <groupId>org.moral</groupId> <artifactId>screen-common</artifactId> screen-api/src/main/java/com/moral/api/controller/AllocationController.java
@@ -12,6 +12,7 @@ import com.moral.api.pojo.ext.allocation.AllocationPageExt; import com.moral.api.pojo.query.allocation.*; import com.moral.api.pojo.query.allocationextension.AllocationExtensionAddCond; import com.moral.api.pojo.vo.allocation.AllocationFindVo; import com.moral.api.pojo.vo.allocation.AllocationPageVo; import com.moral.api.pojo.vo.allocation.AllocationVo; import com.moral.api.utils.BeanConverts; @@ -197,4 +198,6 @@ } } } screen-api/src/main/java/com/moral/api/controller/AppAllocationController.java
New file @@ -0,0 +1,63 @@ package com.moral.api.controller; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiParam; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.util.ObjectUtils; 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.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import java.util.List; import javax.validation.Valid; import com.moral.api.pojo.query.allocation.AllocationChangeCond; import com.moral.api.pojo.query.allocation.AllocationCheckCond; import com.moral.api.pojo.vo.allocation.AllocationFindVo; import com.moral.api.service.AllocationService; import com.moral.constant.ResultMessage; @Api(tags = {"小程序立行立改"}) @RestController @RequestMapping("allocationApp") public class AppAllocationController { @Autowired private AllocationService allocationService; @GetMapping("select") @ApiOperation("小程序查询") public ResultMessage selectSmallRoutine(@RequestParam @ApiParam(value = "state",name = "状态") Integer state, @RequestParam @ApiParam(value = "startTime",name = "开始时间") String startTime, @RequestParam @ApiParam(value = "endTime",name = "结束时间") String endTime){ List<AllocationFindVo> allocationFindVos = allocationService.selectSmallRoutine(state,startTime,endTime); return ResultMessage.ok(ObjectUtils.isEmpty(allocationFindVos)? "0":allocationFindVos); } @PostMapping("changeRoutine") @ApiOperation("小程序整改") public ResultMessage changeSmallRoutine(@Valid @RequestBody AllocationChangeCond changeCond){ allocationService.changeSmallRoutine(changeCond); return ResultMessage.ok(); } @PostMapping("checkRoutine") @ApiOperation("小程序审批") public ResultMessage checkSmallRoutine(@Valid @RequestBody AllocationCheckCond checkCond){ allocationService.checkSmallRoutine(checkCond); return ResultMessage.ok(); } } screen-api/src/main/java/com/moral/api/controller/AppUserController.java
New file @@ -0,0 +1,64 @@ package com.moral.api.controller; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiParam; import lombok.extern.slf4j.Slf4j; import org.apache.commons.codec.digest.DigestUtils; import org.springframework.beans.factory.annotation.Autowired; 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.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import java.util.Map; import com.moral.api.service.UserService; import com.moral.constant.ResponseCodeEnum; import com.moral.constant.ResultMessage; @Slf4j @Api(tags = {"小程序用户管理"}) @RestController @RequestMapping("/AppUser") public class AppUserController { @Autowired private UserService userService; @ApiOperation(value = "登陆信息") @PostMapping("logins") public ResultMessage login(@RequestBody Map<String, Object> parameters) { if (!(parameters.containsKey("account") && parameters.containsKey("password"))) { return ResultMessage.fail(ResponseCodeEnum.PARAMETERS_IS_MISSING.getCode(), ResponseCodeEnum.PARAMETERS_IS_MISSING.getMsg()); } Map<String, Object> result = userService.loginSmallRoutine(parameters); if (!result.containsKey("token")) { return ResultMessage.fail((int) result.get("code"), (String) result.get("msg")); } return ResultMessage.ok(result); } @GetMapping("/wx/login") @ApiOperation(value = "小程序登陆") public ResultMessage userLogin(@RequestParam(value = "code") String code ) { Map<String, Object> result = userService.wxLogin(code); return ResultMessage.ok(result); } @GetMapping("/wx/exit") @ApiOperation(value = "小程序登陆") public ResultMessage updateUserId(@RequestParam @ApiParam(value = "userId",name = "用户主键") Integer userId) { userService.updateUserId(userId); return ResultMessage.ok(); } } screen-api/src/main/java/com/moral/api/entity/AppUser.java
New file @@ -0,0 +1,18 @@ package com.moral.api.entity; import lombok.Data; import com.baomidou.mybatisplus.extension.activerecord.Model; @Data public class AppUser extends Model<AppUser> { private Integer openId; private String account; private String nickName; private String avatarUrl; } screen-api/src/main/java/com/moral/api/entity/User.java
@@ -104,6 +104,9 @@ */ private String isDelete; private String openId; @TableField(exist = false) private Integer unitCode; screen-api/src/main/java/com/moral/api/exception/consumer/SecondDataConsumer.java
@@ -37,6 +37,7 @@ /*@Component*/ /*@Component*/ @Slf4j screen-api/src/main/java/com/moral/api/mapper/AllocationMapper.java
@@ -8,6 +8,8 @@ import com.moral.api.pojo.ext.allocation.AllocationPageExt; import com.moral.api.pojo.query.allocation.AllocationListCond; import com.moral.api.pojo.query.allocation.AllocationPageCond; import com.moral.api.pojo.vo.allocation.AllocationFindVo; import org.apache.ibatis.annotations.Param; import java.util.List; @@ -30,4 +32,7 @@ */ List<AllocationListExt> extList(@Param("allocation") AllocationListCond allocationListCond); } screen-api/src/main/java/com/moral/api/mapper/AppUserMapper.java
New file @@ -0,0 +1,8 @@ package com.moral.api.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.moral.api.entity.AppUser; public interface AppUserMapper extends BaseMapper<AppUser> { } screen-api/src/main/java/com/moral/api/pojo/enums/AppAllocationStateEnum.java
New file @@ -0,0 +1,59 @@ package com.moral.api.pojo.enums; import lombok.Getter; import java.util.HashMap; import java.util.Map; import com.baomidou.mybatisplus.annotation.EnumValue; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonFormat; import com.moral.api.exception.BusinessException; @Getter @JsonFormat(shape = JsonFormat.Shape.OBJECT) public enum AppAllocationStateEnum implements IntegerValueEnum { /** *待处理 */ TO_BE_PROCESSED(20, "待处理"), /** *待完成 */ TO_BE_COMPLETED(30, "待完成"), /** * 40或50 都是已完成 */ COMPLETED(40, "已完成"), ; @EnumValue public final Integer value; public final String name; AppAllocationStateEnum(Integer value, String name) { this.value = value; this.name = name; } private static Map<Integer, AllocationExtensionApproveEnum> valueMap = new HashMap<>(); static { for (AllocationExtensionApproveEnum v : AllocationExtensionApproveEnum.values()) { valueMap.put(v.value, v); } } @JsonCreator public static AllocationExtensionApproveEnum getByValue(Integer value) { if (value == null) { return null; } AllocationExtensionApproveEnum result = valueMap.get(value); if (result == null) { throw new BusinessException("枚举转换异常" + value); } return result; } } screen-api/src/main/java/com/moral/api/pojo/query/AppUserCond.java
New file @@ -0,0 +1,31 @@ package com.moral.api.pojo.query; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.experimental.Accessors; import java.io.Serializable; import javax.validation.constraints.NotNull; @Data @EqualsAndHashCode(callSuper = false) @Accessors(chain = true) @ApiModel(value="AppUserCond - 小程序登陆对象", description="AppUserCond - 小程序登陆对象") public class AppUserCond implements Serializable { @ApiModelProperty(value = "登陆时需要的code") @NotNull(message = "code不能为空!") private Integer code; @ApiModelProperty(value = "用户名") private String account; @ApiModelProperty(value = "密码") private String password; } screen-api/src/main/java/com/moral/api/pojo/vo/allocation/AllocationFindVo.java
New file @@ -0,0 +1,79 @@ package com.moral.api.pojo.vo.allocation; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.experimental.Accessors; import java.io.Serializable; import java.util.Date; import com.fasterxml.jackson.annotation.JsonFormat; import com.moral.api.pojo.enums.AllocationApproveEnum; import com.moral.util.DateUtils; @Data @EqualsAndHashCode(callSuper = false) @Accessors(chain = true) @ApiModel(value="Allocation - 查询VO对象", description="Allocation - 查询VO对象") public class AllocationFindVo implements Serializable { @ApiModelProperty(value = "主键id") private Integer allocationId; @ApiModelProperty(value = "交办单号") private String allocationNum; @ApiModelProperty(value = "上报时间") @JsonFormat(pattern="yyyy-MM-dd") private Date escalationTime; @ApiModelProperty(value = "责任单位id") private Integer unitId; @ApiModelProperty(value = "污染分类id") private Integer polluteType; @ApiModelProperty(value = "整改类型id") private Integer changeType; @ApiModelProperty(value = "期限天数") private Integer changeDay; @ApiModelProperty(value = "剩余天数") private Integer residueDay; @ApiModelProperty(value = "上报单位id") private Integer escalationUnitId; @ApiModelProperty(value = "上报人") private String escalationName; @ApiModelProperty(value = "排查方式id") private Integer investigationType; @ApiModelProperty(value = "状态") private Integer state; @ApiModelProperty(value = "是否作废") private Integer isInvalid; @ApiModelProperty(value = "能否审批") private Integer isApprove; @ApiModelProperty(value = "状态名字") private String stateName; public Integer getResidueDay() { int day = this.changeDay; if(AllocationApproveEnum.UNDER_RECTIFICATION.value.equals(state)){ Date date = new Date(); int days = DateUtils.getDays(escalationTime, date); return day-days; } return day; } } screen-api/src/main/java/com/moral/api/service/AllocationService.java
@@ -14,6 +14,8 @@ import com.moral.api.pojo.query.allocation.*; import com.moral.api.pojo.dto.allocation.AllocationUnitDto; import com.moral.api.pojo.query.allocationextension.AllocationExtensionAddCond; import com.moral.api.pojo.vo.allocation.AllocationFindVo; import com.moral.api.pojo.vo.allocation.AllocationPageVo; public interface AllocationService extends IService<Allocation> { @@ -97,4 +99,28 @@ * @return */ boolean applyFor (AllocationExtensionAddCond allocationExtensionAddCond); /** * 小程序查询 * @param state * @return */ List<AllocationFindVo> selectSmallRoutine(Integer state,String startTime,String endTime); /** * 小程序整改 * @param changeCond */ void changeSmallRoutine(AllocationChangeCond changeCond); /** * 小程序审批 * @param checkCond */ void checkSmallRoutine(AllocationCheckCond checkCond); } screen-api/src/main/java/com/moral/api/service/UserService.java
@@ -9,6 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService; import com.moral.api.pojo.bo.UserBO; import com.moral.api.pojo.query.AppUserCond; /** * <p> @@ -44,4 +45,12 @@ //根据所传条件获取用户信息 UserBO selectUserInfo(Map<String, Object> parameters); //小程序用户密码登陆 Map<String, Object> loginSmallRoutine(Map<String, Object> parameters); //小程序直接登陆 Map<String, Object> wxLogin(String code); boolean updateUserId(Integer userId); } screen-api/src/main/java/com/moral/api/service/impl/AllocationServiceImpl.java
@@ -1,5 +1,6 @@ package com.moral.api.service.impl; import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import com.baomidou.mybatisplus.extension.conditions.update.LambdaUpdateChainWrapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.moral.api.config.Interceptor.UserHelper; @@ -10,10 +11,9 @@ import com.moral.api.pojo.ext.allocation.AllocationExt; import com.moral.api.pojo.ext.allocation.AllocationListExt; import com.moral.api.pojo.ext.allocation.AllocationPageExt; import com.moral.api.pojo.query.PageCond; import com.moral.api.pojo.query.allocation.*; import com.moral.api.pojo.query.allocationextension.AllocationExtensionAddCond; import com.moral.api.pojo.vo.approvetable.ApproveTableListVo; import com.moral.api.pojo.vo.allocation.AllocationFindVo; import com.moral.api.pojo.vo.user.QxUser; import com.moral.api.service.AllocationExtensionService; import com.moral.api.service.ApproveTableService; @@ -62,6 +62,7 @@ import com.moral.constant.RedisConstants; import com.moral.util.DateUtils; import com.moral.util.TokenUtils; import com.sun.javafx.scene.control.skin.VirtualFlow; @Service @@ -636,6 +637,146 @@ } @Override public List<AllocationFindVo> selectSmallRoutine(Integer state,String startTime,String endTime) { ArrayList<AllocationFindVo> allocationFindVos = new ArrayList<>(); LambdaQueryWrapper<Allocation> wrapper = new LambdaQueryWrapper<>(); //获取用户信息 List<Integer> list = unitResult(); if (!ObjectUtils.isEmpty(list)){ Integer integer = list.get(0); if (integer==0){ return null; }else { wrapper.in(Allocation::getUnitId,list); } } Integer integer = unitAreaCode(); //普通权限或 管理员 if (integer==0 || integer==1){ if (state==3){ wrapper.in(Allocation::getState,40,50); }else if (state==2){ wrapper.eq(Allocation::getState,30); }else if (state==1){ wrapper.eq(Allocation::getState,20); } //区域权限 }else if (integer==2){ if (state==3){ wrapper.in(Allocation::getState,40,50); }else if (state==2){ wrapper.eq(Allocation::getState,20); }else if (state==1){ wrapper.eq(Allocation::getState,30); } } if (!ObjectUtils.isEmpty(startTime) && !ObjectUtils.isEmpty(endTime)){ wrapper.between(Allocation::getEscalationTime,startTime,endTime); } wrapper.eq(Allocation::getIsDel,0).eq(Allocation::getIsInvalid,0); wrapper.orderByDesc(Allocation::getEscalationTime); List<Allocation> allocations = allocationMapper.selectList(wrapper); for (Allocation allocation : allocations) { AllocationFindVo allocationFindVo = new AllocationFindVo(); BeanUtils.copyProperties(allocation,allocationFindVo); Integer state1 = allocationFindVo.getState(); if (integer==0 || integer==1){ if (state1==20){ allocationFindVo.setStateName(AppAllocationStateEnum.TO_BE_PROCESSED.name); }else if (state1==30){ allocationFindVo.setStateName(AppAllocationStateEnum.TO_BE_PROCESSED.name); }else if (state1==40 ||state1==50){ allocationFindVo.setStateName(AppAllocationStateEnum.COMPLETED.name); } }else { if (state1==20){ allocationFindVo.setStateName(AppAllocationStateEnum.TO_BE_PROCESSED.name); }else if (state1==30){ allocationFindVo.setStateName(AppAllocationStateEnum.TO_BE_PROCESSED.name); }else if (state1==40||state1==50){ allocationFindVo.setStateName(AppAllocationStateEnum.COMPLETED.name); } } allocationFindVos.add(allocationFindVo); } return allocationFindVos; } /** * 小程序整改 * * @param changeCond */ @Override @Transactional public void changeSmallRoutine(AllocationChangeCond changeCond) { Integer integer = unitAreaCode(); if (integer==2){ throw new BusinessException("此账户只能审核,不能整改!"); } AllocationExt allocationExt = oneAllocation(changeCond.getAllocationId()); if(!AllocationApproveEnum.UNDER_RECTIFICATION.value.equals(allocationExt.getState())) { throw new BusinessException("整改状态,才能提交审批!"); } Allocation allocation = new Allocation(); allocation.setAllocationId(changeCond.getAllocationId()); allocation.setIsChange(changeCond.getIsChange()); allocation.setChangeName(changeCond.getChangeName()); allocation.setChangeDescribe(changeCond.getChangeDescribe()); allocation.setState(changeCond.getState()); allocation.setChangeTime(new Date()); this.updateById(allocation); //添加流程数据 ApproveTable approveTable = new ApproveTable(); approveTable.setRelationId(allocation.getAllocationId()); approveTable.setState(AllocationApproveEnum.UNDER_RECTIFICATION.value); approveTable.setStateName(AllocationApproveEnum.UNDER_RECTIFICATION.name); approveTable.setApproveModule(FileTableEnum.ALLOCATION_FOUNDATION.value); approveTableService.saveResult(approveTable); fileTableService.upDateResult(changeCond.getFileChangeList(),allocation.getAllocationId(), FileTableEnum.ALLOCATION_RECTIFICATION.value); } /** * 小程序审批 * * @param checkCond */ @Override @Transactional public void checkSmallRoutine(AllocationCheckCond checkCond) { Integer integer = unitAreaCode(); if (integer==0){ throw new BusinessException("此账户只能整改,不能审批!"); } AllocationExt allocationExt = oneAllocation(checkCond.getAllocationId()); if(!AllocationApproveEnum.IN_APPROVAL.value.equals(allocationExt.getState())) { throw new BusinessException("审批状态,才能进行审批操作!"); } QxUser qxUser = UserHelper.getCurrentUser(); Allocation allocation = new Allocation(); allocation.setCheckScore(checkCond.getCheckScore()); allocation.setAllocationId(checkCond.getAllocationId()); allocation.setCheckDescribe(checkCond.getCheckDescribe()); allocation.setCheckName(qxUser.getUserName()); allocation.setCheckTime(new Date()); allocation.setState(checkCond.getState()); this.updateById(allocation); //添加流程数据 ApproveTable approveTable = new ApproveTable(); approveTable.setRelationId(allocation.getAllocationId()); if(AllocationApproveEnum.PASS.value.equals(checkCond.getState())){ approveTable.setState(AllocationApproveEnum.PASS.value); approveTable.setStateName(AllocationApproveEnum.PASS.name); }else { approveTable.setState(AllocationApproveEnum.REFUSE.value); approveTable.setStateName(AllocationApproveEnum.REFUSE.name); } approveTable.setApproveModule(FileTableEnum.ALLOCATION_FOUNDATION.value); approveTableService.saveResult(approveTable); fileTableService.upDateResult(checkCond.getFileApproveList(),checkCond.getAllocationId(), FileTableEnum.ALLOCATION_APPROVE.value); } @Override public List<Integer> unitResult() { QxUser user = UserHelper.getCurrentUser(); Integer unitId = Objects.nonNull(user.getUnitId())?user.getUnitId():0; screen-api/src/main/java/com/moral/api/service/impl/FileTableServiceImpl.java
@@ -21,6 +21,7 @@ import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import org.springframework.util.ObjectUtils; import org.springframework.web.multipart.MultipartFile; import javax.servlet.http.HttpServletRequest; screen-api/src/main/java/com/moral/api/service/impl/UserServiceImpl.java
@@ -1,11 +1,14 @@ package com.moral.api.service.impl; import com.moral.api.utils.StringUtils; import lombok.extern.slf4j.Slf4j; import org.apache.commons.codec.digest.DigestUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import org.springframework.util.ObjectUtils; import org.springframework.web.client.RestTemplate; import org.springframework.web.context.request.RequestContextHolder; import org.springframework.web.context.request.ServletRequestAttributes; @@ -23,8 +26,10 @@ import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper; import com.baomidou.mybatisplus.core.toolkit.Wrappers; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.moral.api.entity.Group; @@ -34,6 +39,7 @@ import com.moral.api.entity.User; import com.moral.api.entity.UserGroup; import com.moral.api.entity.UserLog; import com.moral.api.exception.BusinessException; import com.moral.api.mapper.MenuMapper; import com.moral.api.mapper.ResponsibilityUnitMapper; import com.moral.api.mapper.UserGroupMapper; @@ -42,9 +48,12 @@ import com.moral.api.pojo.bo.UserBO; import com.moral.api.service.ResponsibilityUnitService; import com.moral.api.service.UserService; import com.moral.api.utils.HttpClientUtil; import com.moral.api.utils.OperationLogUtils; import com.moral.api.utils.WechatUtils; import com.moral.constant.Constants; import com.moral.constant.ResponseCodeEnum; import com.moral.constant.ResultMessage; import com.moral.util.AESUtils; import com.moral.util.ConvertUtils; import com.moral.util.DateUtils; @@ -52,6 +61,7 @@ import com.moral.util.RegexUtils; import com.moral.util.TokenUtils; import com.moral.util.WebUtils; import com.sun.org.apache.regexp.internal.RE; /** * <p> @@ -80,6 +90,9 @@ @Autowired private OperationLogUtils operationLogUtils; @Autowired private ResponsibilityUnitMapper responsibilityUnitMapper; @Value("${AES.KEY}") private String AESKey; @@ -87,6 +100,156 @@ @Override public UserBO selectUserInfo(Map<String, Object> parameters) { return userMapper.selectUserInfo(parameters); } /** * 小程序登陆 * @param parameters * @return */ @Override @Transactional public Map<String, Object> loginSmallRoutine(Map<String, Object> parameters) { UserBO userBo = selectUserInfo(parameters); String openId = parameters.get("openId").toString(); Map<String, Object> result = new HashMap<>(); //校验账户 if (userBo == null) { result.put("code", ResponseCodeEnum.ACCOUNT_NOT_EXIST.getCode()); result.put("msg", ResponseCodeEnum.ACCOUNT_NOT_EXIST.getMsg()); return result; } //校验是否删除 if (Constants.DELETE.equals(userBo.getIsDelete())) { result.put("code", ResponseCodeEnum.ACCOUNT_IS_DELETE.getCode()); result.put("msg", ResponseCodeEnum.ACCOUNT_IS_DELETE.getMsg()); return result; } ResponsibilityUnit responsibilityUnit = responsibilityUnitMapper.selectById(userBo.getUnitId()); //封装用户信息 Map<String, Object> userInfo = new LinkedHashMap<>(); userInfo.put("userId", userBo.getId()); userInfo.put("account", userBo.getAccount()); userInfo.put("userName", userBo.getUserName()); userInfo.put("email", userBo.getEmail()); userInfo.put("mobile", userBo.getMobile()); userInfo.put("unitId",userBo.getUnitId()); userInfo.put("unName",responsibilityUnit.getAreaName()); userInfo.put("wechat", userBo.getWechat()); userInfo.put("expireTime", DateUtils.dateToDateString(userBo.getExpireTime())); userInfo.put("isAdmin", userBo.getIsAdmin()); userInfo.put("openid", openId); try { //生成token,并存入redis String token = TokenUtils.getTokenApp(new StringBuffer("00").append(userBo.getId().toString()).toString(),userInfo); result.put("token", token); result.put("userName", userBo.getUserName()); result.put("unitId",userBo.getUnitId()); result.put("userId", userBo.getId()); result.put("account", userBo.getAccount()); result.put("unName",Objects.nonNull(responsibilityUnit.getAreaName())?responsibilityUnit.getAreaName():"未选择责任单位"); } catch (Exception e) { log.error("token生成异常:" + e.getMessage()); result.put("code", ResponseCodeEnum.TOKEN_CREATE_ERROR.getCode()); result.put("msg", ResponseCodeEnum.TOKEN_CREATE_ERROR.getMsg()); return result; } sysLog("登陆了用户:" + userBo.getAccount()+";openId:"+openId,userBo); //添加openId到user表中 User user = userMapper.selectById(userBo.getId()); user.setOpenId(openId); userMapper.updateById(user); return result; } @Override public Map<String, Object> wxLogin(String code) { Map<String, Object> result = new HashMap<>(); // 用户非敏感信息:rawData // 签名:signature // JSONObject rawDataJson = JSON.parseObject(rawData); // 1.接收小程序发送的code // 2.开发者服务器 登录凭证校验接口 appi + appsecret + code JSONObject SessionKeyOpenId = WechatUtils.getSessionKeyOrOpenId(code); // 3.接收微信接口服务 获取返回的参数 String openid = SessionKeyOpenId.getString("openid"); String sessionKey = SessionKeyOpenId.getString("session_key"); // 4.校验签名 小程序发送的签名signature与服务器端生成的签名signature2 = sha1(rawData + sessionKey) // String signature2 = DigestUtils.sha1Hex(rawData + sessionKey); // if (!signature.equals(signature2)) { // return ResultMessage.ok().message("签名校验失败"); // return ResultMessage.ok("签名校验失败"); // throw new BusinessException("签名校验失败"); // } // 5.根据返回的User实体类,判断用户是否是新用户,是的话,将用户信息存到数据库; LambdaQueryWrapper<User> lqw = Wrappers.lambdaQuery(); lqw.eq(User::getOpenId, openid); User user = userMapper.selectOne(lqw); if (user == null) { result.put("code", ResponseCodeEnum.USER_NOT_EXIST.getCode()); result.put("msg", ResponseCodeEnum.USER_NOT_EXIST.getMsg()); result.put("openId",openid); return result; // 用户信息入库 // String nickName = rawDataJson.getString("nickName"); // String avatarUrl = rawDataJson.getString("avatarUrl"); } Map<String, Object> userInfo = new LinkedHashMap<>(); userInfo.put("userId", user.getId()); userInfo.put("account", user.getAccount()); userInfo.put("userName", user.getUserName()); userInfo.put("email", user.getEmail()); userInfo.put("mobile", user.getMobile()); userInfo.put("unitId",user.getUnitId()); // userInfo.put("unName",user.getAreaName()); userInfo.put("wechat", user.getWechat()); userInfo.put("expireTime", DateUtils.dateToDateString(user.getExpireTime())); userInfo.put("isAdmin", user.getIsAdmin()); ResponsibilityUnit responsibilityUnit = responsibilityUnitMapper.selectById(user.getUnitId()); try { //生成token,并存入redis String token = TokenUtils.getTokenApp(new StringBuffer("00").append(user.getId().toString()).toString(),userInfo); result.put("token", token); result.put("token", token); result.put("userName", user.getUserName()); result.put("unitId",user.getUnitId()); result.put("userId", user.getId()); result.put("account", user.getAccount()); result.put("unName",Objects.nonNull(responsibilityUnit.getAreaName())?responsibilityUnit.getAreaName():"未选择责任单位"); } catch (Exception e) { log.error("token生成异常:" + e.getMessage()); result.put("code", ResponseCodeEnum.TOKEN_CREATE_ERROR.getCode()); result.put("msg", ResponseCodeEnum.TOKEN_CREATE_ERROR.getMsg()); return result; } result.put("code", ResponseCodeEnum.SUCCESS.getCode()); result.put("msg", ResponseCodeEnum.SUCCESS.getMsg()); sysLog("登陆了用户:" + user.getAccount()+" ;openId:"+openid,user); return result; } @Override public boolean updateUserId(Integer userId) { User user = userMapper.selectById(userId); user.setOpenId("0"); userMapper.updateById(user); sysLog(userId+"退出了小程序",user); return true; } private void sysLog(String cont,User user){ //日志 HttpServletRequest request = ((ServletRequestAttributes) Objects.requireNonNull(RequestContextHolder.getRequestAttributes())).getRequest(); UserLog userLog = new UserLog(); userLog.setType(Constants.LOGIN_OPERTATE_APP); userLog.setIp(WebUtils.getIpAddr(request)); userLog.setOperateId(user.getId()); userLog.setOrganizationId(user.getOrganizationId()); userLog.setContent(cont); userLogMapper.insert(userLog); } @Override @@ -120,9 +283,10 @@ result.put("msg", ResponseCodeEnum.ACCOUNT_IS_EXPIRE.getMsg()); return result; } //封装用户信息 Map<String, Object> userInfo = new LinkedHashMap<>(); ResponsibilityUnit responsibilityUnit = responsibilityUnitMapper.selectById(userBo.getUnitId()); //用户信息 userInfo.put("userId", userBo.getId()); userInfo.put("account", userBo.getAccount()); @@ -130,6 +294,7 @@ userInfo.put("email", userBo.getEmail()); userInfo.put("mobile", userBo.getMobile()); userInfo.put("unitId",userBo.getUnitId()); userInfo.put("unName",responsibilityUnit.getAreaName()); userInfo.put("wechat", userBo.getWechat()); userInfo.put("expireTime", DateUtils.dateToDateString(userBo.getExpireTime())); userInfo.put("isAdmin", userBo.getIsAdmin()); screen-api/src/main/java/com/moral/api/utils/HttpClientUtil.java
New file @@ -0,0 +1,136 @@ package com.moral.api.utils; import org.apache.http.NameValuePair; import org.apache.http.client.entity.UrlEncodedFormEntity; import org.apache.http.client.methods.CloseableHttpResponse; import org.apache.http.client.methods.HttpGet; import org.apache.http.client.methods.HttpPost; import org.apache.http.client.utils.URIBuilder; import org.apache.http.entity.ContentType; import org.apache.http.entity.StringEntity; import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.impl.client.HttpClients; import org.apache.http.message.BasicNameValuePair; import org.apache.http.util.EntityUtils; import java.io.IOException; import java.net.URI; import java.util.ArrayList; import java.util.List; import java.util.Map; public class HttpClientUtil { public static String doGet(String url, Map<String, String> param) { // 创建Httpclient对象 CloseableHttpClient httpclient = HttpClients.createDefault(); String resultString = ""; CloseableHttpResponse response = null; try { // 创建uri URIBuilder builder = new URIBuilder(url); if (param != null) { for (String key : param.keySet()) { builder.addParameter(key, param.get(key)); } } URI uri = builder.build(); // 创建http GET请求 HttpGet httpGet = new HttpGet(uri); // 执行请求 response = httpclient.execute(httpGet); // 判断返回状态是否为200 if (response.getStatusLine().getStatusCode() == 200) { resultString = EntityUtils.toString(response.getEntity(), "UTF-8"); } } catch (Exception e) { e.printStackTrace(); } finally { try { if (response != null) { response.close(); } httpclient.close(); } catch (IOException e) { e.printStackTrace(); } } return resultString; } public static String doGet(String url) { return doGet(url, null); } public static String doPost(String url, Map<String, String> param) { // 创建Httpclient对象 CloseableHttpClient httpClient = HttpClients.createDefault(); CloseableHttpResponse response = null; String resultString = ""; try { // 创建Http Post请求 HttpPost httpPost = new HttpPost(url); // 创建参数列表 if (param != null) { List<NameValuePair> paramList = new ArrayList<>(); for (String key : param.keySet()) { paramList.add(new BasicNameValuePair(key, param.get(key))); } // 模拟表单 UrlEncodedFormEntity entity = new UrlEncodedFormEntity(paramList); httpPost.setEntity(entity); } // 执行http请求 response = httpClient.execute(httpPost); resultString = EntityUtils.toString(response.getEntity(), "utf-8"); } catch (Exception e) { e.printStackTrace(); } finally { try { response.close(); } catch (IOException e) { e.printStackTrace(); } } return resultString; } public static String doPost(String url) { return doPost(url, null); } public static String doPostJson(String url, String json) { // 创建Httpclient对象 CloseableHttpClient httpClient = HttpClients.createDefault(); CloseableHttpResponse response = null; String resultString = ""; try { // 创建Http Post请求 HttpPost httpPost = new HttpPost(url); // 创建请求内容 StringEntity entity = new StringEntity(json, ContentType.APPLICATION_JSON); httpPost.setEntity(entity); // 执行http请求 response = httpClient.execute(httpPost); resultString = EntityUtils.toString(response.getEntity(), "utf-8"); } catch (Exception e) { e.printStackTrace(); } finally { try { response.close(); } catch (IOException e) { e.printStackTrace(); } } return resultString; } } screen-api/src/main/java/com/moral/api/utils/WechatUtils.java
New file @@ -0,0 +1,49 @@ package com.moral.api.utils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Configuration; import org.springframework.data.redis.core.RedisTemplate; import org.springframework.http.HttpEntity; import org.springframework.http.HttpHeaders; import org.springframework.http.HttpMethod; import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Component; import org.springframework.stereotype.Service; import org.springframework.web.client.RestClientException; import org.springframework.web.client.RestTemplate; import java.util.HashMap; import java.util.Map; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import com.moral.api.service.UserLogService; public class WechatUtils { public static final String APPID = "wx41f4c3c007545088"; public static final String SECRET = "9e1a328ad525dd169252a1cc5067a6f3"; public static JSONObject getSessionKeyOrOpenId(String code) { String requestUrl = "https://api.weixin.qq.com/sns/jscode2session"; Map<String, String> requestUrlParam = new HashMap<>(); // https://mp.weixin.qq.com/wxopen/devprofile?action=get_profile&token=164113089&lang=zh_CN //小程序appId requestUrlParam.put("appid", APPID); //小程序secret requestUrlParam.put("secret",SECRET); //小程序端返回的code requestUrlParam.put("js_code", code); //默认参数 requestUrlParam.put("grant_type", "authorization_code"); //发送post请求读取调用微信接口获取openid用户唯一标识 JSONObject jsonObject = JSON.parseObject(HttpClientUtil.doPost(requestUrl, requestUrlParam)); return jsonObject; } } screen-api/src/main/resources/application-cjl.yml
@@ -119,6 +119,7 @@ interceptor: exclude: - /login - /AppUser/** - /swagger-ui.html - /swagger-resources/** - /swagger-ui.html/** screen-api/src/main/resources/application-dev.yml
@@ -111,6 +111,7 @@ interceptor: exclude: - /login - /AppUser/** - /swagger-ui.html - /swagger-resources/** - /swagger-ui.html/** screen-api/src/main/resources/application-local.yml
@@ -118,6 +118,7 @@ interceptor: exclude: - /login - /AppUser/** - /swagger-ui.html - /swagger-resources/** - /swagger-ui.html/** screen-api/src/main/resources/application-qa.yml
@@ -122,6 +122,7 @@ interceptor: exclude: - /login - /AppUser/** - /swagger-ui.html - /swagger-resources/** - /swagger-ui.html/** screen-api/src/main/resources/mapper/AllocationMapper.xml
@@ -59,6 +59,7 @@ </where> </select> <select id="extPage" resultType="com.moral.api.pojo.ext.allocation.AllocationPageExt"> SELECT <include refid="Allocation_Column_List"/>,t1.id as applyState screen-common/src/main/java/com/moral/constant/Constants.java
@@ -65,11 +65,16 @@ public static final String WEB_CHANNEL = "0"; /* * 登陆操作类型 * 登陆操作类型 web * */ public static final String LOGIN_OPERTATE_TYPE = "0"; /* * 登陆操作类型 app * */ public static final String LOGIN_OPERTATE_APP = "1"; /* * 添加操作类型 * */ public static final String INSERT_OPERATE_TYPE = "1"; screen-common/src/main/java/com/moral/util/TokenUtils.java
@@ -76,6 +76,27 @@ ResponseCodeEnum.TOKEN_CREATE_ERROR.getMsg()); } } public static String getTokenApp(String uid, Object userInfo) { //生成加密token try { //生成token String token = TokenEncryptUtils.encoded(uid + "/" + System.currentTimeMillis() / 1000); //查询旧的token String oldToken = (String) redisTemplate.opsForHash().get("user_token", uid); if (oldToken != null) redisTemplate.delete(oldToken); //新token写入到value中 redisTemplate.opsForValue().set(token, userInfo); //redisTemplate.expire(token, validity_time, TimeUnit.SECONDS); //新token写入到Hash中 redisTemplate.opsForHash().put("user_token", uid, token); return token; } catch (Exception e) { log.error("token生成异常:" + e.getMessage()); throw new TokenException(ResponseCodeEnum.TOKEN_CREATE_ERROR.getCode(), ResponseCodeEnum.TOKEN_CREATE_ERROR.getMsg()); } } /**