|
@@ -17,7 +17,6 @@ public class DatabaseScriptUtil {
|
|
|
private static final List<String> events = new ArrayList<>();
|
|
|
private static final Pattern regExpression = Pattern.compile("(?<=《)([^》]+)?(?=》)");//提取书名号变量的正则表达式
|
|
|
private static final Map<String, List<String>> sqlStrVarList = new HashMap<>();//SQL语句的书名号变量列表
|
|
|
- private static final DataBase DATABASE = new DataBase();
|
|
|
public static Map<String, String> sqlStrNewSQL = new HashMap<>();//SQL语句更换书名号变量后的可执行SQL
|
|
|
|
|
|
static {
|
|
@@ -29,6 +28,8 @@ public class DatabaseScriptUtil {
|
|
|
events.add("7");
|
|
|
}
|
|
|
|
|
|
+ private final DataBase DATABASE = new DataBase();
|
|
|
+
|
|
|
public static Pageable pageable(Map<String, Object> args) {
|
|
|
Object page = args.get("page");
|
|
|
Object size = args.get("size");
|
|
@@ -90,10 +91,12 @@ public class DatabaseScriptUtil {
|
|
|
|
|
|
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", ""));
|
|
|
+ if (Objects.nonNull(filterLines)) {
|
|
|
+ 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", ""));
|
|
|
+ }
|
|
|
}
|
|
|
if (Objects.nonNull(filterLineWhereStr)) {
|
|
|
sql = " %s %s and %s ".formatted(sql, sql.contains(" where ") ? " 1 = 1" : " where ", filterLineWhereStr);
|
|
@@ -134,7 +137,7 @@ public class DatabaseScriptUtil {
|
|
|
}
|
|
|
|
|
|
if (pageable != null) {
|
|
|
- newSql = "%s limit %d,%d ".formatted(newSql, pageable.page * pageable.pageSize, pageable.pageSize);
|
|
|
+ newSql = "%s limit %d offset %d ".formatted(newSql, pageable.pageSize, pageable.page * pageable.pageSize);
|
|
|
}
|
|
|
return DATABASE.queryBatch(connectionStr, newSql, result.stream().map(List::toArray).toList());
|
|
|
}
|
|
@@ -211,7 +214,7 @@ public class DatabaseScriptUtil {
|
|
|
sql = "select %s from (%s) as T".formatted(String.join(",", filterColumns), sql);
|
|
|
|
|
|
if (pageable != null && !sql.contains(" limit ")) {
|
|
|
- sql = "%s limit %d,%d ".formatted(sql, pageable.page * pageable.pageSize, pageable.pageSize);
|
|
|
+ sql = "%s limit %d offset %d ".formatted(sql, pageable.pageSize, pageable.page * pageable.pageSize);
|
|
|
}
|
|
|
List<Map<String, Object>> queryResult = DATABASE.queryBatch(connectionStr, sql, Collections.singletonList(dbFilter.toArray()));
|
|
|
return UniReturnUtil.success(queryResult);
|
|
@@ -284,10 +287,10 @@ public class DatabaseScriptUtil {
|
|
|
List<String> valueNames = null;
|
|
|
List<String> filterNames = null;
|
|
|
|
|
|
- List<String> allColumns = DATABASE.getColumnsByTableName(connectionStr, expression);
|
|
|
|
|
|
// 查询
|
|
|
if (Objects.equals("0", event)) {
|
|
|
+ List<String> allColumns = DATABASE.getColumnsByTableName(connectionStr, expression);
|
|
|
|
|
|
if (filterColumns.isEmpty()) {
|
|
|
// 列权限为空直接返回空数据
|
|
@@ -346,11 +349,9 @@ 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,%d ".formatted(expression, pageable.page * pageable.pageSize, pageable.pageSize);
|
|
|
+ expression = "%s limit %d offset %d ".formatted(expression, pageable.pageSize, pageable.page * pageable.pageSize);
|
|
|
}
|
|
|
List<Map<String, Object>> result = DATABASE.queryBatch(connectionStr, expression, values);
|
|
|
|
|
@@ -456,7 +457,6 @@ public class DatabaseScriptUtil {
|
|
|
map = ((Map<?, ?>) v.get(0));
|
|
|
} else if (valueObj instanceof List<?> v) {
|
|
|
map = ((Map<?, ?>) v.get(0));
|
|
|
-
|
|
|
} else if (valueObj instanceof Map<?, ?> v) {
|
|
|
map = v;
|
|
|
}
|