|
@@ -21,7 +21,7 @@ public class DatabaseScriptUtil {
|
|
|
|
|
|
if (Objects.isNull(filterColumns)) filterColumns = new ArrayList<>();
|
|
|
if (Objects.isNull(filterLines)) filterLines = new ArrayList<>();
|
|
|
- String filterLineWhereStr =null;
|
|
|
+ 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(
|
|
@@ -30,7 +30,7 @@ public class DatabaseScriptUtil {
|
|
|
it.get("column"),
|
|
|
it.get("comparator"),
|
|
|
Objects.equals(it.get("comparator"), " is null ") ? "" : "?",
|
|
|
- !Objects.equals(it.get("comparator"), " is null ")?" ":it.get("value"),
|
|
|
+ !Objects.equals(it.get("comparator"), " is null ") ? " " : it.get("value"),
|
|
|
it.getOrDefault("right", ""),
|
|
|
it.getOrDefault("connector", "")
|
|
|
);
|
|
@@ -45,7 +45,7 @@ public class DatabaseScriptUtil {
|
|
|
Map<String, Object> map = args.get(0);
|
|
|
Map<String, Object> filter = ((Map<String, Object>) map.getOrDefault("filter", map));
|
|
|
filterNames = filter.keySet().stream().toList();
|
|
|
- String whereStr =null;
|
|
|
+ String whereStr = null;
|
|
|
for (Object f : filterLines) {
|
|
|
Map<String, Object> it = ((Map<String, Object>) f);
|
|
|
whereStr = " %s %s %s %s %s %s %s %s ".formatted(
|
|
@@ -54,7 +54,7 @@ public class DatabaseScriptUtil {
|
|
|
it.get("column"),
|
|
|
it.get("comparator"),
|
|
|
Objects.equals(it.get("comparator"), " is null ") ? "" : "?",
|
|
|
- !Objects.equals(it.get("comparator"), " is null ")?" ":it.get("value"),
|
|
|
+ !Objects.equals(it.get("comparator"), " is null ") ? " " : it.get("value"),
|
|
|
it.getOrDefault("right", ""),
|
|
|
it.getOrDefault("connector", "")
|
|
|
);
|
|
@@ -64,8 +64,8 @@ public class DatabaseScriptUtil {
|
|
|
filterNames.stream().map("%s = ?"::formatted).collect(Collectors.joining(" and ")),
|
|
|
Objects.isNull(filterLineWhereStr) ? " 1=1 " : filterLineWhereStr);
|
|
|
|
|
|
- if( !filterColumns.isEmpty()){
|
|
|
- expression= "select %s from (%s) as T".formatted(String.join(",", filterColumns),expression);
|
|
|
+ if (!filterColumns.isEmpty()) {
|
|
|
+ expression = "select %s from (%s) as T".formatted(String.join(",", filterColumns), expression);
|
|
|
}
|
|
|
|
|
|
List<Object[]> values = new ArrayList<>();
|
|
@@ -103,16 +103,20 @@ public class DatabaseScriptUtil {
|
|
|
insertValues.add(arg);
|
|
|
}
|
|
|
}
|
|
|
- Map<String, Object> insertResult = exec(connectionStr, expression, insertValues, "1", filterColumns, filterLines);
|
|
|
- Map<String, Object> updateResult = exec(connectionStr, expression, updateValues, "2", filterColumns, filterLines);
|
|
|
+ Map<String, Object> insertResult=null;
|
|
|
+ if (!insertValues.isEmpty())
|
|
|
+ insertResult = exec(connectionStr, expression, insertValues, "1", filterColumns, filterLines);
|
|
|
+ Map<String, Object> updateResult = null;
|
|
|
+ if (!updateValues.isEmpty())
|
|
|
+ updateResult = exec(connectionStr, expression, updateValues, "2", filterColumns, filterLines);
|
|
|
|
|
|
+ Map<String, Object> finalInsertResult = insertResult;
|
|
|
+ Map<String, Object> finalUpdateResult = updateResult;
|
|
|
return UniReturnUtil.success(new HashMap<>() {{
|
|
|
- put("insert", insertResult);
|
|
|
- put("update", updateResult);
|
|
|
+ put("insert", finalInsertResult);
|
|
|
+ put("update", finalUpdateResult);
|
|
|
}});
|
|
|
-
|
|
|
} else {
|
|
|
-
|
|
|
// 新增
|
|
|
if (Objects.equals("1", event)) {
|
|
|
Map<String, Object> map = args.get(0);
|
|
@@ -129,7 +133,7 @@ public class DatabaseScriptUtil {
|
|
|
|
|
|
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);
|
|
|
+ Objects.isNull(filterLineWhereStr) ? " 1=1 " : filterLineWhereStr);
|
|
|
// 删除
|
|
|
} else if (Objects.equals("3", event)) {
|
|
|
Map<String, Object> map = args.get(0);
|
|
@@ -137,7 +141,7 @@ public class DatabaseScriptUtil {
|
|
|
filterNames = filter.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);
|
|
|
+ Objects.isNull(filterLineWhereStr) ? " 1=1 " : filterLineWhereStr);
|
|
|
}
|
|
|
List<Object[]> values = new ArrayList<>();
|
|
|
// 按照名称 和过滤条件取值
|
|
@@ -162,7 +166,7 @@ public class DatabaseScriptUtil {
|
|
|
}
|
|
|
values.add(objects.toArray());
|
|
|
}
|
|
|
- int[] ints = DataBase.updateBatch(connectionStr, expression, values);
|
|
|
+ int[] ints = DataBase.updateBatch(connectionStr, expression, values);
|
|
|
return UniReturnUtil.success(ints);
|
|
|
}
|
|
|
|
|
@@ -196,16 +200,16 @@ public class DatabaseScriptUtil {
|
|
|
whereStr += list.stream().map("%s = ?"::formatted).collect(Collectors.joining(" and "));
|
|
|
dbFilter.addAll(list.stream().map(Map.Entry::getValue).toList());
|
|
|
}
|
|
|
- }else if(filter instanceof Map<?,?> filterMap && !filterMap.isEmpty()){
|
|
|
+ } else if (filter instanceof Map<?, ?> filterMap && !filterMap.isEmpty()) {
|
|
|
List<? extends Map.Entry<?, ?>> list = filterMap.entrySet().stream().toList();
|
|
|
- whereStr += list.stream().map(it->"%s = ?".formatted(it.getKey())).collect(Collectors.joining(" and "));
|
|
|
+ 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, Objects.isNull(filterLineWhereStr) ? " 1=1 " : filterLineWhereStr);
|
|
|
+ whereStr = " %s and %s".formatted(whereStr, Objects.isNull(filterLineWhereStr) ? " 1=1 " : filterLineWhereStr);
|
|
|
String sql = expression.replaceAll("《whereStr》", " " + whereStr);
|
|
|
|
|
|
- if( !filterColumns.isEmpty()){
|
|
|
- sql= "select %s from (%s) as T".formatted(String.join(",", filterColumns),sql);
|
|
|
+ if (!filterColumns.isEmpty()) {
|
|
|
+ sql = "select %s from (%s) as T".formatted(String.join(",", filterColumns), sql);
|
|
|
}
|
|
|
|
|
|
List<Map<String, Object>> queryResult = DataBase.query(connectionStr, sql, Collections.singletonList(dbFilter.toArray()));
|
|
@@ -213,7 +217,7 @@ public class DatabaseScriptUtil {
|
|
|
|
|
|
} else {
|
|
|
if (Objects.equals(event, "0")) {
|
|
|
- List<Map<String, Object>> queryResult = DataBase.query(connectionStr, expression, args, filterColumns, filterLines);
|
|
|
+ List<Map<String, Object>> queryResult = DataBase.query(connectionStr, expression, args, filterColumns, filterLines);
|
|
|
return UniReturnUtil.success(queryResult);
|
|
|
} else if (Objects.equals(event, "1")) {
|
|
|
if (sqlStrVarList.containsKey(expression)) {
|
|
@@ -228,7 +232,7 @@ public class DatabaseScriptUtil {
|
|
|
getSQLVarList(expression);
|
|
|
}
|
|
|
List<String> names = sqlStrVarList.get(expression);
|
|
|
- String sql = " %s and %s".formatted(sqlStrNewSQL.get(expression), Objects.isNull(filterLineWhereStr) ? " 1=1 " : filterLineWhereStr);
|
|
|
+ String sql = " %s and %s".formatted(sqlStrNewSQL.get(expression), Objects.isNull(filterLineWhereStr) ? " 1=1 " : filterLineWhereStr);
|
|
|
int[] updateResult = DataBase.updateBatch(connectionStr, sql, args.stream().map(it -> names.stream().map(it::get).toArray()).toList());
|
|
|
return UniReturnUtil.success(updateResult);
|
|
|
}
|
|
@@ -255,6 +259,7 @@ public class DatabaseScriptUtil {
|
|
|
}
|
|
|
return sqlvarList;
|
|
|
}
|
|
|
+
|
|
|
private static boolean exists(String connectionStr, String sql, Object[] args) throws Exception {
|
|
|
List<Map<String, Object>> mapList = DataBase.query(connectionStr, sql, Collections.singletonList(args));
|
|
|
if (mapList.isEmpty()) return false;
|