|
|
|
@ -51,17 +51,11 @@ public class AuthorizeAspect {
|
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
String clientType = request.getHeader("CLIENT_TYPE");
|
|
|
|
|
if (clientType == null || clientType.equals("locWeb")) {
|
|
|
|
|
//系统用户登录权限验证
|
|
|
|
|
String id = request.getHeader("ADMIN_ID");
|
|
|
|
|
String query = request.getQueryString();
|
|
|
|
|
Long adminId = null;
|
|
|
|
|
try {
|
|
|
|
@ -69,7 +63,6 @@ public class AuthorizeAspect {
|
|
|
|
|
} 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);
|
|
|
|
@ -84,17 +77,33 @@ public class AuthorizeAspect {
|
|
|
|
|
if (adminId.compareTo(jwtAdminId) != 0) {
|
|
|
|
|
throw new JsonException(ResultEnum.LOGIN_VERIFY_FALL);
|
|
|
|
|
}
|
|
|
|
|
} else if (clientType.equals("third")) {
|
|
|
|
|
//其他第三方接口权限验证
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
} else if (clientType.equals("pcClient")) {
|
|
|
|
|
//客户端权限验证 todo
|
|
|
|
|
//
|
|
|
|
|
// MethodSignature signature = (MethodSignature) joinPoint.getSignature();
|
|
|
|
|
// Method method = signature.getMethod();
|
|
|
|
|
// AuthRuleAnnotation action = method.getAnnotation(AuthRuleAnnotation.class);
|
|
|
|
|
// comnpanyRuleVerify(action.value(), adminId);
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
throw new JsonException(ResultEnum.UN_SOURCE_CLIENT);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 判断是否进行权限验证
|
|
|
|
|
MethodSignature signature = (MethodSignature) joinPoint.getSignature();
|
|
|
|
|
//从切面中获取当前方法
|
|
|
|
|
Method method = signature.getMethod();
|
|
|
|
|
//得到了方,提取出他的注解
|
|
|
|
|
AuthRuleAnnotation action = method.getAnnotation(AuthRuleAnnotation.class);
|
|
|
|
|
// 进行权限验证
|
|
|
|
|
// authRuleVerify(action.value(), adminId);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 企业接口授权验证
|
|
|
|
|
public void comnpanyRuleVerify(String valuem, Long companyId) {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|