|
@@ -18,7 +18,7 @@ public class DatabaseScriptUtil {
|
|
|
private static final Map<String, List<String>> sqlStrVarList = new HashMap<>();//SQL语句的书名号变量列表
|
|
|
public static Map<String, String> sqlStrNewSQL = new HashMap<>();//SQL语句更换书名号变量后的可执行SQL
|
|
|
|
|
|
- public static Map<String, Object> exec(String connectionStr, String expression, List<Map<String, Object>> args, Object event, List<String> filterColumns, List<Map<String, Object>> filterLines) throws Exception {
|
|
|
+ public static Map<String, Object> exec(String connectionStr, String expression, List<Map<String, Object>> args, Object event, List<String> filterColumns, List<Map<String, Object>> filterLines, Pageable pageable) throws Exception {
|
|
|
|
|
|
if (Objects.isNull(event) || !StringUtils.hasText(event.toString())) {
|
|
|
throw new RuntimeException("执行编号不能为空");
|
|
@@ -31,16 +31,7 @@ public class DatabaseScriptUtil {
|
|
|
String filterLineWhereStr = null;
|
|
|
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", "")
|
|
|
- );
|
|
|
+ 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", ""));
|
|
|
}
|
|
|
|
|
|
// 只有表名
|
|
@@ -78,23 +69,12 @@ public class DatabaseScriptUtil {
|
|
|
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", "")
|
|
|
- );
|
|
|
+ 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 * from %s where %s and %s".formatted(
|
|
|
- expression,
|
|
|
- Objects.isNull(filterLineWhereStr) ? " 1=1 " : filterLineWhereStr,
|
|
|
- whereStr.trim().isEmpty() ? " 1=? " : whereStr);
|
|
|
+ expression = "select * from %s where %s and %s".formatted(expression, Objects.isNull(filterLineWhereStr) ? " 1=1 " : filterLineWhereStr, whereStr.trim().isEmpty() ? " 1=? " : whereStr);
|
|
|
if (whereStr.trim().isEmpty()) {
|
|
|
values.add(new Object[]{1});
|
|
|
} else {
|
|
@@ -103,10 +83,7 @@ public class DatabaseScriptUtil {
|
|
|
} else {
|
|
|
filterNames = map.keySet().stream().toList();
|
|
|
|
|
|
- expression = "select * from %s where %s and %s".formatted(
|
|
|
- expression,
|
|
|
- filterNames.stream().map("%s = ?"::formatted).collect(Collectors.joining(" and ")),
|
|
|
- Objects.isNull(filterLineWhereStr) ? " 1=1 " : filterLineWhereStr);
|
|
|
+ expression = "select * from %s where %s and %s".formatted(expression, filterNames.stream().map("%s = ?"::formatted).collect(Collectors.joining(" and ")), Objects.isNull(filterLineWhereStr) ? " 1=1 " : filterLineWhereStr);
|
|
|
|
|
|
for (Map<String, Object> arg : args) {
|
|
|
Map<String, Object> o1 = ((Map<String, Object>) arg.getOrDefault("filter", arg));
|
|
@@ -117,6 +94,9 @@ public class DatabaseScriptUtil {
|
|
|
if (!filterColumns.isEmpty()) {
|
|
|
expression = "select %s from (%s) as T".formatted(String.join(",", filterColumns), expression);
|
|
|
}
|
|
|
+ if (pageable != null && !expression.contains(" limit ")) {
|
|
|
+ expression = "select * from (%s) TA limit %d,%d ".formatted(expression, pageable.page * pageable.pageSize, pageable.pageSize);
|
|
|
+ }
|
|
|
List<Map<String, Object>> result = DataBase.queryBatch(connectionStr, expression, values);
|
|
|
return UniReturnUtil.success(result);
|
|
|
// 更新或新增
|
|
@@ -141,10 +121,10 @@ public class DatabaseScriptUtil {
|
|
|
}
|
|
|
Map<String, Object> insertResult = null;
|
|
|
if (!insertValues.isEmpty())
|
|
|
- insertResult = exec(connectionStr, expression, insertValues, "1", filterColumns, filterLines);
|
|
|
+ insertResult = exec(connectionStr, expression, insertValues, "1", filterColumns, filterLines, null);
|
|
|
Map<String, Object> updateResult = null;
|
|
|
if (!updateValues.isEmpty())
|
|
|
- updateResult = exec(connectionStr, expression, updateValues, "2", filterColumns, filterLines);
|
|
|
+ updateResult = exec(connectionStr, expression, updateValues, "2", filterColumns, filterLines, null);
|
|
|
|
|
|
Map<String, Object> finalInsertResult = insertResult;
|
|
|
Map<String, Object> finalUpdateResult = updateResult;
|
|
@@ -178,9 +158,7 @@ public class DatabaseScriptUtil {
|
|
|
Map<String, Object> filter = ((Map<String, Object>) map.get("filter"));
|
|
|
filterNames = filter.keySet().stream().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 ")), Objects.isNull(filterLineWhereStr) ? " 1=1 " : filterLineWhereStr);
|
|
|
// 删除
|
|
|
} else if (Objects.equals("3", event)) {
|
|
|
|
|
@@ -197,9 +175,7 @@ public class DatabaseScriptUtil {
|
|
|
map = f;
|
|
|
}
|
|
|
filterNames = map.keySet().stream().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 ")), Objects.isNull(filterLineWhereStr) ? " 1=1 " : filterLineWhereStr);
|
|
|
}
|
|
|
List<Object[]> values = new ArrayList<>();
|
|
|
// 按照名称 和过滤条件取值
|
|
@@ -240,15 +216,7 @@ public class DatabaseScriptUtil {
|
|
|
if (filterMap.containsKey("column")) {
|
|
|
for (Object f : filterList) {
|
|
|
Map<String, Object> it = ((Map<String, Object>) f);
|
|
|
- whereStr = " %s %s %s %s %s %s %s".formatted(
|
|
|
- whereStr,
|
|
|
- it.getOrDefault("left", ""),
|
|
|
- it.get("column"),
|
|
|
- it.get("comparator"),
|
|
|
- Objects.equals(it.get("comparator"), " is null ") ? "" : "?",
|
|
|
- it.getOrDefault("right", ""),
|
|
|
- it.getOrDefault("connector", "")
|
|
|
- );
|
|
|
+ whereStr = " %s %s %s %s %s %s %s".formatted(whereStr, it.getOrDefault("left", ""), it.get("column"), it.get("comparator"), Objects.equals(it.get("comparator"), " is null ") ? "" : "?", it.getOrDefault("right", ""), it.getOrDefault("connector", ""));
|
|
|
if (!Objects.equals(it.get("comparator"), " is null ")) {
|
|
|
dbFilter.add(it.get("value"));
|
|
|
}
|
|
@@ -270,12 +238,15 @@ public class DatabaseScriptUtil {
|
|
|
sql = "select %s from (%s) as T".formatted(String.join(",", filterColumns), sql);
|
|
|
}
|
|
|
|
|
|
+ if (pageable != null && !sql.contains(" limit ")) {
|
|
|
+ sql = "select * from (%s) TA limit %d,%d ".formatted(sql, pageable.page * pageable.pageSize, pageable.pageSize);
|
|
|
+ }
|
|
|
List<Map<String, Object>> queryResult = DataBase.queryBatch(connectionStr, sql, Collections.singletonList(dbFilter.toArray()));
|
|
|
return UniReturnUtil.success(queryResult);
|
|
|
|
|
|
} else {
|
|
|
if (Objects.equals(event, "0")) {
|
|
|
- List<Map<String, Object>> queryResult = query(connectionStr, expression, args, filterColumns, filterLines);
|
|
|
+ List<Map<String, Object>> queryResult = query(connectionStr, expression, args, filterColumns, filterLines, pageable);
|
|
|
return UniReturnUtil.success(queryResult);
|
|
|
} else if (Objects.equals(event, "1")) {
|
|
|
if (sqlStrVarList.containsKey(expression)) {
|
|
@@ -319,23 +290,14 @@ public class DatabaseScriptUtil {
|
|
|
return !Objects.equals(mapList.get(0).get("existscount").toString(), "0");
|
|
|
}
|
|
|
|
|
|
- public static List<Map<String, Object>> query(String connectionStr, String sql, List<Map<String, Object>> argsList, List<String> filterColumns, List<Map<String, Object>> filterLines) throws Exception {
|
|
|
+ public static List<Map<String, Object>> query(String connectionStr, String sql, List<Map<String, Object>> argsList, List<String> filterColumns, List<Map<String, Object>> filterLines, Pageable pageable) throws Exception {
|
|
|
|
|
|
sql = sql.replaceAll("(\\r)?\\n", " ");
|
|
|
String filterLineWhereStr = null;
|
|
|
for (Object f : filterLines) {
|
|
|
Map<String, Object> it = ((Map<String, Object>) f);
|
|
|
Object comparator = it.get("comparator");
|
|
|
- filterLineWhereStr = " %s %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 null ") ? " " : it.get("value"),
|
|
|
- it.getOrDefault("right", ""),
|
|
|
- it.getOrDefault("connector", "")
|
|
|
- );
|
|
|
+ filterLineWhereStr = " %s %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 null ") ? " " : it.get("value"), it.getOrDefault("right", ""), it.getOrDefault("connector", ""));
|
|
|
}
|
|
|
if (Objects.nonNull(filterLineWhereStr)) {
|
|
|
sql = " %s %s and %s ".formatted(sql, sql.contains(" where ") ? " 1 = 1" : " where ", filterLineWhereStr);
|
|
@@ -374,6 +336,10 @@ public class DatabaseScriptUtil {
|
|
|
}
|
|
|
result.add(args);
|
|
|
}
|
|
|
+
|
|
|
+ if (pageable != null && !newSql.contains(" limit ")) {
|
|
|
+ newSql = "select * from (%s) TA limit %d,%d ".formatted(newSql, pageable.page * pageable.pageSize, pageable.pageSize);
|
|
|
+ }
|
|
|
return DataBase.queryBatch(connectionStr, newSql, result.stream().map(List::toArray).toList());
|
|
|
}
|
|
|
}
|
|
@@ -390,8 +356,11 @@ public class DatabaseScriptUtil {
|
|
|
if (Objects.nonNull(filterLinesTemp))
|
|
|
filterLines = DataFormatUtil.toList(filterLinesTemp).stream().map(it -> ((Map<String, Object>) it)).toList();
|
|
|
Object event = args.get("event");
|
|
|
-
|
|
|
- return exec(queryConnectionStr(datasourceId), expression, dataContent, event, filterColumns, filterLines);
|
|
|
+ Pageable pageable = null;
|
|
|
+ if ("0".equals(event)) {
|
|
|
+ pageable = pageable(args);
|
|
|
+ }
|
|
|
+ return exec(queryConnectionStr(datasourceId), expression, dataContent, event, filterColumns, filterLines, pageable);
|
|
|
}
|
|
|
|
|
|
public static Map<String, Object> execByTableName(String datasourceId, String table, Map<String, Object> args) throws Exception {
|
|
@@ -405,7 +374,11 @@ public class DatabaseScriptUtil {
|
|
|
if (Objects.nonNull(filterLinesTemp))
|
|
|
filterLines = DataFormatUtil.toList(filterLinesTemp).stream().map(it -> ((Map<String, Object>) it)).toList();
|
|
|
Object event = args.get("event");
|
|
|
- return exec(queryConnectionStr(datasourceId), table, dataContent, event, filterColumns, filterLines);
|
|
|
+ Pageable pageable = null;
|
|
|
+ if ("0".equals(event)) {
|
|
|
+ pageable = pageable(args);
|
|
|
+ }
|
|
|
+ return exec(queryConnectionStr(datasourceId), table, dataContent, event, filterColumns, filterLines, pageable);
|
|
|
}
|
|
|
|
|
|
public static Map<String, Object> execByDynamicSql(String datasourceId, String expression, Map<String, Object> args) throws Exception {
|
|
@@ -419,8 +392,11 @@ public class DatabaseScriptUtil {
|
|
|
if (Objects.nonNull(filterLinesTemp))
|
|
|
filterLines = DataFormatUtil.toList(filterLinesTemp).stream().map(it -> ((Map<String, Object>) it)).toList();
|
|
|
Object event = args.get("event");
|
|
|
-
|
|
|
- return exec(queryConnectionStr(datasourceId), expression, dataContent, event, filterColumns, filterLines);
|
|
|
+ Pageable pageable = null;
|
|
|
+ if ("0".equals(event)) {
|
|
|
+ pageable = pageable(args);
|
|
|
+ }
|
|
|
+ return exec(queryConnectionStr(datasourceId), expression, dataContent, event, filterColumns, filterLines, pageable);
|
|
|
}
|
|
|
|
|
|
public static Map<String, Object> execByDynamicTableName(String datasourceId, String table, Map<String, Object> args) throws Exception {
|
|
@@ -434,8 +410,11 @@ public class DatabaseScriptUtil {
|
|
|
if (Objects.nonNull(filterLinesTemp))
|
|
|
filterLines = DataFormatUtil.toList(filterLinesTemp).stream().map(it -> ((Map<String, Object>) it)).toList();
|
|
|
Object event = args.get("event");
|
|
|
-
|
|
|
- return exec(queryConnectionStr(datasourceId), table, dataContent, event, filterColumns, filterLines);
|
|
|
+ Pageable pageable = null;
|
|
|
+ if ("0".equals(event)) {
|
|
|
+ pageable = pageable(args);
|
|
|
+ }
|
|
|
+ return exec(queryConnectionStr(datasourceId), table, dataContent, event, filterColumns, filterLines, pageable);
|
|
|
}
|
|
|
|
|
|
public static String queryConnectionStr(String datasourceId) throws Exception {
|
|
@@ -459,4 +438,28 @@ public class DatabaseScriptUtil {
|
|
|
return hashMap;
|
|
|
}).get());
|
|
|
}
|
|
|
+
|
|
|
+ public static Pageable pageable(Map<String, Object> args) {
|
|
|
+ Object page = args.get("page");
|
|
|
+ Object size = args.get("size");
|
|
|
+ Long pageNumber = 0L;
|
|
|
+ Long pageSizeNumber = 0L;
|
|
|
+
|
|
|
+ if (Objects.nonNull(page)) {
|
|
|
+ pageNumber = Long.parseLong(page.toString()) - 1;
|
|
|
+ }
|
|
|
+ if (pageNumber < 0) {
|
|
|
+ pageNumber = 0L;
|
|
|
+ }
|
|
|
+ if (Objects.nonNull(size)) {
|
|
|
+ pageSizeNumber = Long.parseLong(size.toString());
|
|
|
+ }
|
|
|
+ if (pageSizeNumber <= 0) {
|
|
|
+ pageSizeNumber = 50L;
|
|
|
+ }
|
|
|
+ return new Pageable(pageNumber, pageSizeNumber);
|
|
|
+ }
|
|
|
+
|
|
|
+ public record Pageable(Long page, Long pageSize) {
|
|
|
+ }
|
|
|
}
|