|
@@ -57,10 +57,17 @@ public class DatabaseScriptUtil {
|
|
|
|
|
|
public String getFilterLinesWhereSql(List<Map<String, Object>> filterLines) {
|
|
|
if (Objects.isNull(filterLines)) filterLines = new ArrayList<>();
|
|
|
- String filterLineWhereStr = null;
|
|
|
+ String filterLineWhereStr = "";
|
|
|
for (Object f : filterLines) {
|
|
|
Map<String, Object> it = ((Map<String, Object>) f);
|
|
|
- filterLineWhereStr = " %s %s %s %s %s %s %s %s ".formatted(filterLineWhereStr, it.getOrDefault("left", ""), it.get("column"), it.get("comparator"), Objects.equals(it.get("comparator"), " is null ") ? "" : "?", !Objects.equals(it.get("comparator"), " is null ") ? " " : it.get("value"), it.getOrDefault("right", ""), it.getOrDefault("connector", ""));
|
|
|
+ Object comparator = it.get("comparator").toString().toLowerCase();
|
|
|
+ filterLineWhereStr = " %s %s %s %s %s %s %s ".formatted(filterLineWhereStr,
|
|
|
+ it.getOrDefault("left", ""),
|
|
|
+ it.get("column"),
|
|
|
+ comparator,
|
|
|
+ Objects.equals(comparator, " is null ") || Objects.equals(comparator, " is not null ") ? "" :"'"+ it.get("value")+"'",
|
|
|
+ it.getOrDefault("right", ""),
|
|
|
+ it.getOrDefault("connector", ""));
|
|
|
}
|
|
|
return filterLineWhereStr;
|
|
|
}
|
|
@@ -208,7 +215,7 @@ public class DatabaseScriptUtil {
|
|
|
whereStr += list.stream().map(it -> "%s = ?".formatted(it.getKey())).collect(Collectors.joining(" and "));
|
|
|
dbFilter.addAll(list.stream().map(Map.Entry::getValue).toList());
|
|
|
}
|
|
|
- whereStr = " %s and %s".formatted(whereStr.trim().isEmpty() ? " 1=1 " : whereStr, Objects.isNull(filterLineWhereStr) ? " 1=1 " : filterLineWhereStr);
|
|
|
+ whereStr = " %s and %s".formatted(whereStr.trim().isEmpty() ? " 1=1 " : whereStr, filterLineWhereStr.trim().isEmpty() ? " 1=1 " : filterLineWhereStr);
|
|
|
String sql = expression.replaceAll("《whereStr》", " " + whereStr);
|
|
|
|
|
|
sql = "select %s from (%s) as T".formatted(String.join(",", filterColumns), sql);
|
|
@@ -264,9 +271,12 @@ public class DatabaseScriptUtil {
|
|
|
}
|
|
|
List<Map<String, Object>> dataContent = DataFormatUtil.toList(args.get("datacontent")).stream().map(it -> ((Map<String, Object>) it)).toList();
|
|
|
Object filterColumnsTemp = args.get("filterColumns");
|
|
|
- List<String> filterColumns = null;
|
|
|
+ List<String> filterColumns;
|
|
|
if (Objects.nonNull(filterColumnsTemp))
|
|
|
filterColumns = DataFormatUtil.toList(filterColumnsTemp).stream().map(it -> it.toString()).toList();
|
|
|
+ else {
|
|
|
+ filterColumns = new ArrayList<>();
|
|
|
+ }
|
|
|
Object filterLinesTemp = args.get("filterLines");
|
|
|
List<Map<String, Object>> filterLines = null;
|
|
|
if (Objects.nonNull(filterLinesTemp))
|
|
@@ -275,8 +285,6 @@ public class DatabaseScriptUtil {
|
|
|
|
|
|
String expression = table;
|
|
|
|
|
|
- if (Objects.isNull(filterColumns)) filterColumns = new ArrayList<>();
|
|
|
-
|
|
|
String filterLineWhereStr = getFilterLinesWhereSql(filterLines);
|
|
|
|
|
|
String connectionStr = datasourceId;
|
|
@@ -285,11 +293,21 @@ public class DatabaseScriptUtil {
|
|
|
}
|
|
|
List<String> valueNames = null;
|
|
|
List<String> filterNames = null;
|
|
|
+ List<String> allColumns = DATABASE.getColumnsByTableName(connectionStr, expression);
|
|
|
+ if(filterColumns.size()==1 && !"*".equals(filterColumns.get(0))) {
|
|
|
+ List<String> filterColumns2 = new ArrayList<>();
|
|
|
+ for (String allColumn : allColumns) {
|
|
|
+ if (filterColumns.contains(allColumn)) {
|
|
|
+ filterColumns2.add(allColumn);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ filterColumns = filterColumns2;
|
|
|
|
|
|
+ }
|
|
|
|
|
|
// 查询
|
|
|
if (Objects.equals("0", event)) {
|
|
|
- List<String> allColumns = DATABASE.getColumnsByTableName(connectionStr, expression);
|
|
|
+
|
|
|
|
|
|
if (filterColumns.isEmpty()) {
|
|
|
// 列权限为空直接返回空数据
|
|
@@ -313,23 +331,23 @@ public class DatabaseScriptUtil {
|
|
|
if (map.containsKey("column") && map.containsKey("comparator")) {
|
|
|
|
|
|
ArrayList<Object> objects = new ArrayList<>();
|
|
|
- for (Map<String, Object> it : dataContent) {
|
|
|
- filter = it.getOrDefault("filter", it);
|
|
|
- if (filter instanceof ArrayNode f) {
|
|
|
- map = ((Map<?, ?>) f.get(0));
|
|
|
- } else if (filter instanceof List<?> f) {
|
|
|
- map = ((Map<?, ?>) f.get(0));
|
|
|
-
|
|
|
- } else if (filter instanceof Map<?, ?> f) {
|
|
|
- map = f;
|
|
|
- }
|
|
|
- Object comparator = map.get("comparator");
|
|
|
- whereStr = " %s %s %s %s %s %s %s ".formatted(whereStr, map.getOrDefault("left", ""), map.get("column"), comparator, Objects.equals(comparator, " is null ") ? " " : "?", map.getOrDefault("right", ""), map.getOrDefault("connector", ""));
|
|
|
- if (!Objects.equals(comparator, " is null ")) {
|
|
|
- objects.add(map.get("value"));
|
|
|
- }
|
|
|
- }
|
|
|
- expression = "select %s from %s where %s and %s".formatted(String.join(",", allColumns), expression, Objects.isNull(filterLineWhereStr) ? " 1=1 " : filterLineWhereStr, whereStr.trim().isEmpty() ? " 1=? " : whereStr);
|
|
|
+// for (Object it : DataFormatUtil.toList(filter)) {
|
|
|
+//// filter = it.getOrDefault("filter", it);
|
|
|
+// if (it instanceof Map<?, ?> it) {
|
|
|
+// map = it;
|
|
|
+// }
|
|
|
+// Object comparator = map.get("comparator");
|
|
|
+// whereStr = " %s %s %s %s %s %s %s ".formatted(whereStr, map.getOrDefault("left", ""), map.get("column"), comparator, Objects.equals(comparator, " is null ") ? " " : "?", map.getOrDefault("right", ""), map.getOrDefault("connector", ""));
|
|
|
+// if (!Objects.equals(comparator, " is null ")) {
|
|
|
+// objects.add(map.get("value"));
|
|
|
+// }
|
|
|
+// }
|
|
|
+ whereStr = getFilterLinesWhereSql((List<Map<String, Object>>) filter);
|
|
|
+ expression = "select %s from %s where %s and %s".formatted(
|
|
|
+ String.join(",", allColumns),
|
|
|
+ expression,
|
|
|
+ Objects.isNull(filterLineWhereStr) || filterLineWhereStr.trim().isEmpty() ? " 1=1 " : filterLineWhereStr,
|
|
|
+ whereStr.trim().isEmpty() ? " 1=? " : whereStr);
|
|
|
if (whereStr.trim().isEmpty()) {
|
|
|
values.add(new Object[]{1});
|
|
|
} else {
|
|
@@ -338,7 +356,7 @@ public class DatabaseScriptUtil {
|
|
|
} else {
|
|
|
filterNames = map.keySet().stream().toList();
|
|
|
|
|
|
- expression = "select %s from %s where %s %s".formatted(String.join(",", allColumns), expression, Objects.isNull(filterLineWhereStr) ? " 1=1 " : filterLineWhereStr,
|
|
|
+ expression = "select %s from %s where %s %s".formatted(String.join(",", allColumns), expression, filterLineWhereStr.trim().isEmpty() ? " 1=1 " : filterLineWhereStr,
|
|
|
filterNames.isEmpty() ?
|
|
|
"" : (" and " +
|
|
|
filterNames.stream().map("%s = ?"::formatted).collect(Collectors.joining(" and "))));
|
|
@@ -348,10 +366,10 @@ public class DatabaseScriptUtil {
|
|
|
values.add(filterNames.stream().map(o1::get).toArray());
|
|
|
}
|
|
|
}
|
|
|
- expression = "select %s from (%s) as T".formatted(String.join(",", filterColumns), expression);
|
|
|
if (pageable != null) {
|
|
|
expression = "%s limit %d offset %d ".formatted(expression, pageable.pageSize, pageable.page * pageable.pageSize);
|
|
|
}
|
|
|
+ expression = "select %s from (%s) as T".formatted(String.join(",", filterColumns), expression);
|
|
|
List<Map<String, Object>> result = DATABASE.queryBatch(connectionStr, expression, values);
|
|
|
|
|
|
// 查询关联项
|
|
@@ -448,7 +466,13 @@ public class DatabaseScriptUtil {
|
|
|
return UniReturnUtil.success(data);
|
|
|
} else {
|
|
|
// 新增
|
|
|
- List<String> allColumns = DATABASE.getColumnsByTableName(connectionStr, expression);
|
|
|
+ if(filterColumns.size()==1 && !"*".equals(filterColumns.get(0))) {
|
|
|
+ for (String filterColumn : filterColumns) {
|
|
|
+ if (!allColumns.contains(filterColumn)) {
|
|
|
+ allColumns.remove(filterColumn);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
if (Objects.equals("1", event)) {
|
|
|
Map<String, Object> value = dataContent.get(0);
|
|
|
Object valueObj = value.getOrDefault("value", value);
|
|
@@ -471,7 +495,7 @@ public class DatabaseScriptUtil {
|
|
|
Map<String, Object> filter = ((Map<String, Object>) map.get("filter"));
|
|
|
filterNames = filter.keySet().stream().filter(allColumns::contains).toList();
|
|
|
|
|
|
- expression = "update %s set %s where %s and %s".formatted(expression, valueNames.stream().map("%s = ?"::formatted).collect(Collectors.joining(",")), filterNames.stream().map("%s = ?"::formatted).collect(Collectors.joining(" and ")), Objects.isNull(filterLineWhereStr) ? " 1=1 " : filterLineWhereStr);
|
|
|
+ expression = "update %s set %s where %s and %s".formatted(expression, valueNames.stream().map("%s = ?"::formatted).collect(Collectors.joining(",")), filterNames.stream().map("%s = ?"::formatted).collect(Collectors.joining(" and ")), filterLineWhereStr.trim().isEmpty() ? " 1=1 " : filterLineWhereStr);
|
|
|
// 删除
|
|
|
} else if (Objects.equals("3", event)) {
|
|
|
|
|
@@ -488,7 +512,7 @@ public class DatabaseScriptUtil {
|
|
|
map = f;
|
|
|
}
|
|
|
filterNames = map.keySet().stream().filter(allColumns::contains).toList();
|
|
|
- expression = "delete from %s where %s and %s".formatted(expression, filterNames.stream().map("%s = ?"::formatted).collect(Collectors.joining(" and ")), Objects.isNull(filterLineWhereStr) ? " 1=1 " : filterLineWhereStr);
|
|
|
+ expression = "delete from %s where %s and %s".formatted(expression, filterNames.stream().map("%s = ?"::formatted).collect(Collectors.joining(" and ")), filterLineWhereStr.trim().isEmpty() ? " 1=1 " : filterLineWhereStr);
|
|
|
} else if (Objects.equals("7", event)) {
|
|
|
// 先删除
|
|
|
args.put("event", "3");
|