|
@@ -196,22 +196,27 @@ public class LogAop {
|
|
|
throw e;
|
|
|
}
|
|
|
}
|
|
|
+ } else {
|
|
|
+ body.put("filterLines", new ArrayList<>());
|
|
|
}
|
|
|
}
|
|
|
+ List<String> columns = DATA_BASE.query(Config.getSecurityConnectionStr(), "select pagecode from pageconfiguration where pagetype='column' and pageconfiguration.pageconfigurationid in (select userpermissions.pageconfigurationid from userpermissions where serviceid = ? and userid =?)", serviceid.get(), RequestUtil.getUserId()).stream().map(it -> it.get("pagecode").toString()).toList();
|
|
|
+ if (!columns.isEmpty()) {
|
|
|
+ body.put("filterColumns", columns);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- if (Config.isSecurityEnable()) {
|
|
|
// 不需要登录也没有设置权限的默认添加一个所有列权限
|
|
|
|
|
|
- if (body != null && !body.containsKey("filterColumns")) {
|
|
|
- body.put("filterColumns", Collections.singletonList("*"));
|
|
|
- }
|
|
|
+ if (!Config.isSecurityEnable() && body != null && !body.containsKey("filterColumns")) {
|
|
|
+ body.put("filterColumns", Collections.singletonList("*"));
|
|
|
}
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- private void checkToken( String uri) throws Exception {
|
|
|
+ private void checkToken(String uri) throws Exception {
|
|
|
if (Config.isSecurityEnable()) {
|
|
|
List<Map<String, Object>> apiInfos = DATA_BASE.query(Config.getSecurityConnectionStr(), "select * from apiinfo");
|
|
|
|