parent
66ef77a16a
commit
d167d2fa25
@ -0,0 +1,17 @@
|
|||||||
|
package com.glxp.mipsdl.admin.annotation;
|
||||||
|
|
||||||
|
import java.lang.annotation.ElementType;
|
||||||
|
import java.lang.annotation.Retention;
|
||||||
|
import java.lang.annotation.RetentionPolicy;
|
||||||
|
import java.lang.annotation.Target;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 后台登录授权/权限验证的注解
|
||||||
|
*/
|
||||||
|
//此注解只能修饰方法
|
||||||
|
@Target(ElementType.METHOD)
|
||||||
|
//当前注解如何去保持
|
||||||
|
@Retention(RetentionPolicy.RUNTIME)
|
||||||
|
public @interface AuthRuleAnnotation {
|
||||||
|
String value();
|
||||||
|
}
|
@ -0,0 +1,126 @@
|
|||||||
|
package com.glxp.mipsdl.admin.aspect;
|
||||||
|
|
||||||
|
import cn.hutool.core.util.StrUtil;
|
||||||
|
import com.glxp.mipsdl.admin.annotation.AuthRuleAnnotation;
|
||||||
|
import com.glxp.mipsdl.admin.exception.JsonException;
|
||||||
|
import com.glxp.mipsdl.admin.util.JwtUtils;
|
||||||
|
import com.glxp.mipsdl.common.enums.ResultEnum;
|
||||||
|
import io.jsonwebtoken.Claims;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.aspectj.lang.JoinPoint;
|
||||||
|
import org.aspectj.lang.annotation.Aspect;
|
||||||
|
import org.aspectj.lang.annotation.Before;
|
||||||
|
import org.aspectj.lang.annotation.Pointcut;
|
||||||
|
import org.aspectj.lang.reflect.MethodSignature;
|
||||||
|
import org.springframework.stereotype.Component;
|
||||||
|
import org.springframework.web.context.request.RequestContextHolder;
|
||||||
|
import org.springframework.web.context.request.ServletRequestAttributes;
|
||||||
|
|
||||||
|
import javax.servlet.http.HttpServletRequest;
|
||||||
|
import java.lang.reflect.Method;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 登录验证 AOP
|
||||||
|
*/
|
||||||
|
@Aspect
|
||||||
|
@Component
|
||||||
|
@Slf4j
|
||||||
|
public class AuthorizeAspect {
|
||||||
|
|
||||||
|
/* @Resource
|
||||||
|
private AuthLoginService authLoginService;
|
||||||
|
@Resource
|
||||||
|
private AuthLicenseDao authLicenseDao;*/
|
||||||
|
|
||||||
|
@Pointcut("@annotation(com.glxp.mipsdl.admin.annotation.AuthRuleAnnotation)")
|
||||||
|
public void adminLoginVerify() {
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 登录验证
|
||||||
|
*
|
||||||
|
* @param joinPoint
|
||||||
|
*/
|
||||||
|
@Before("adminLoginVerify()")
|
||||||
|
public void doAdminAuthVerify(JoinPoint joinPoint) {
|
||||||
|
|
||||||
|
ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
|
||||||
|
if (attributes == null) {
|
||||||
|
throw new JsonException(ResultEnum.NOT_NETWORK);
|
||||||
|
}
|
||||||
|
HttpServletRequest request = attributes.getRequest();
|
||||||
|
|
||||||
|
String id = request.getHeader("ADMIN_ID");
|
||||||
|
if (StrUtil.isBlank(id)) {
|
||||||
|
String apiKey = request.getHeader("api_key");
|
||||||
|
String secretKey = request.getHeader("secret_key");
|
||||||
|
/* AuthLicense authLicense = authLicenseDao.get(apiKey);
|
||||||
|
if (authLicense != null && authLicense.getSecretKey().equals(secretKey)) {
|
||||||
|
|
||||||
|
} else {
|
||||||
|
throw new JsonException(ResultEnum.LOGIN_VERIFY_FALL);
|
||||||
|
}*/
|
||||||
|
|
||||||
|
if (StrUtil.isNotBlank(apiKey) && StrUtil.isNotBlank(secretKey) && "ewKD2Cyr".equals(apiKey) && "rO4nDvNWKJ1uNuQQBnECPjnpDv4w6nh8".equals(secretKey)) {
|
||||||
|
|
||||||
|
} else {
|
||||||
|
throw new JsonException(ResultEnum.AUTH_FAILED);
|
||||||
|
}
|
||||||
|
|
||||||
|
} else {
|
||||||
|
String query = request.getQueryString();
|
||||||
|
Long adminId = null;
|
||||||
|
try {
|
||||||
|
adminId = Long.valueOf(id);
|
||||||
|
} catch (Exception e) {
|
||||||
|
throw new JsonException(ResultEnum.LOGIN_VERIFY_FALL);
|
||||||
|
}
|
||||||
|
|
||||||
|
String token = request.getHeader("ADMIN_TOKEN");
|
||||||
|
if (token == null) {
|
||||||
|
throw new JsonException(ResultEnum.LOGIN_VERIFY_FALL);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 验证 token
|
||||||
|
Claims claims = JwtUtils.parse(token);
|
||||||
|
if (claims == null) {
|
||||||
|
throw new JsonException(ResultEnum.LOGIN_VERIFY_FALL);
|
||||||
|
}
|
||||||
|
Long jwtAdminId = Long.valueOf(claims.get("admin_id").toString());
|
||||||
|
if (adminId.compareTo(jwtAdminId) != 0) {
|
||||||
|
throw new JsonException(ResultEnum.LOGIN_VERIFY_FALL);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 判断是否进行权限验证
|
||||||
|
MethodSignature signature = (MethodSignature) joinPoint.getSignature();
|
||||||
|
//从切面中获取当前方法
|
||||||
|
Method method = signature.getMethod();
|
||||||
|
//得到了方,提取出他的注解
|
||||||
|
AuthRuleAnnotation action = method.getAnnotation(AuthRuleAnnotation.class);
|
||||||
|
// 进行权限验证
|
||||||
|
// authRuleVerify(action.value(), adminId);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 权限验证
|
||||||
|
*
|
||||||
|
* @param authRule
|
||||||
|
*/
|
||||||
|
private void authRuleVerify(String authRule, Long adminId) {
|
||||||
|
|
||||||
|
/* if (authRule != null && authRule.length() > 0) {
|
||||||
|
|
||||||
|
List<String> authRules = authLoginService.listRuleByAdminId(adminId);
|
||||||
|
// admin 为最高权限
|
||||||
|
for (String item : authRules) {
|
||||||
|
if (item.equals("admin") || item.equals(authRule)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
throw new JsonException(ResultEnum.AUTH_FAILED);
|
||||||
|
}*/
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
package com.glxp.mipsdl.admin.req;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class UdiwmsOrderDetail {
|
||||||
|
|
||||||
|
private String productId; //产品编码
|
||||||
|
private BigDecimal price; //单价
|
||||||
|
private String standard; //规格型号
|
||||||
|
private String productName; //产品名称
|
||||||
|
private String productDate; //生产日期
|
||||||
|
private Integer count; //数量
|
||||||
|
}
|
@ -1,19 +1,38 @@
|
|||||||
package com.glxp.mipsdl.admin.res.system;
|
package com.glxp.mipsdl.admin.res.system;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
public class UdiwmsInvProductResponse {
|
public class UdiwmsInvProductResponse {
|
||||||
|
|
||||||
|
@JsonIgnore
|
||||||
private String code;
|
private String code;
|
||||||
|
@JsonIgnore
|
||||||
private String name;
|
private String name;
|
||||||
|
@JsonIgnore
|
||||||
private String spec;
|
private String spec;
|
||||||
private String batchNo;
|
private String batchNo;//批次号
|
||||||
|
@JsonIgnore
|
||||||
private String manufacturingDate;
|
private String manufacturingDate;
|
||||||
|
@JsonIgnore
|
||||||
private String expirationDate;
|
private String expirationDate;
|
||||||
private String warehouseCode;
|
private String warehouseCode;//货位号
|
||||||
private String warehouseName;
|
private String warehouseName;//货位名称
|
||||||
|
@JsonIgnore
|
||||||
private String registerCertNo;
|
private String registerCertNo;
|
||||||
private Integer count;
|
private Integer count;//数量
|
||||||
|
private String inventoryCode;//仓库号
|
||||||
|
private String inventoryName;//仓库名称
|
||||||
|
private String productName;//产品名称
|
||||||
|
private String productDate;//生产日期
|
||||||
|
private String expireDate;//失效日期
|
||||||
|
private String productId;//产品ID
|
||||||
|
private String standard; //规格型号
|
||||||
|
private String registerNo; //注册证号
|
||||||
|
private String manufactory; //生产厂家
|
||||||
|
private String supId; //配送企业ID
|
||||||
|
private String supName; //配送企业名称
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue