|
@@ -1,7 +1,10 @@
|
|
|
package com.scbfkj.uni.library.script;
|
|
|
|
|
|
+import com.fasterxml.jackson.databind.node.ArrayNode;
|
|
|
+import com.scbfkj.uni.library.DataFormatUtil;
|
|
|
import com.scbfkj.uni.library.UniReturnUtil;
|
|
|
import com.scbfkj.uni.process.DataBase;
|
|
|
+import com.scbfkj.uni.system.Config;
|
|
|
import org.springframework.util.StringUtils;
|
|
|
|
|
|
import java.util.*;
|
|
@@ -46,36 +49,73 @@ public class DatabaseScriptUtil {
|
|
|
List<String> filterNames = null;
|
|
|
// 查询
|
|
|
if (Objects.equals("0", event)) {
|
|
|
- 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;
|
|
|
- for (Object f : filterLines) {
|
|
|
- Map<String, Object> it = ((Map<String, Object>) f);
|
|
|
- whereStr = " %s %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 ") ? "" : "?",
|
|
|
- !Objects.equals(it.get("comparator"), " is null ") ? " " : it.get("value"),
|
|
|
- it.getOrDefault("right", ""),
|
|
|
- it.getOrDefault("connector", "")
|
|
|
- );
|
|
|
- }
|
|
|
- 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);
|
|
|
+ Map<String, Object> argMap = args.get(0);
|
|
|
|
|
|
- if (!filterColumns.isEmpty()) {
|
|
|
- expression = "select %s from (%s) as T".formatted(String.join(",", filterColumns), expression);
|
|
|
+ Object filter = argMap.getOrDefault("filter", argMap);
|
|
|
+ Map map = null;
|
|
|
+ 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;
|
|
|
}
|
|
|
|
|
|
+ String whereStr = "";
|
|
|
List<Object[]> values = new ArrayList<>();
|
|
|
- for (Map<String, Object> arg : args) {
|
|
|
- Map<String, Object> o1 = ((Map<String, Object>) arg.getOrDefault("filter", arg));
|
|
|
- values.add(filterNames.stream().map(o1::get).toArray());
|
|
|
+ if (map.containsKey("column") && map.containsKey("comparator")) {
|
|
|
+
|
|
|
+ ArrayList<Object> objects = new ArrayList<>();
|
|
|
+ for (Map<String, Object> it : args) {
|
|
|
+ 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 * 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 {
|
|
|
+ values.add(objects.toArray());
|
|
|
+ }
|
|
|
+ } 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);
|
|
|
+
|
|
|
+ for (Map<String, Object> arg : args) {
|
|
|
+ Map<String, Object> o1 = ((Map<String, Object>) arg.getOrDefault("filter", arg));
|
|
|
+ values.add(filterNames.stream().map(o1::get).toArray());
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!filterColumns.isEmpty()) {
|
|
|
+ expression = "select %s from (%s) as T".formatted(String.join(",", filterColumns), expression);
|
|
|
}
|
|
|
List<Map<String, Object>> result = DataBase.queryBatch(connectionStr, expression, values);
|
|
|
return UniReturnUtil.success(result);
|
|
@@ -116,9 +156,19 @@ public class DatabaseScriptUtil {
|
|
|
} else {
|
|
|
// 新增
|
|
|
if (Objects.equals("1", event)) {
|
|
|
- Map<String, Object> map = args.get(0);
|
|
|
- Map<String, Object> value = ((Map<String, Object>) map.getOrDefault("value", map));
|
|
|
- valueNames = value.keySet().stream().toList();
|
|
|
+ Map<String, Object> value = args.get(0);
|
|
|
+ Object valueObj = value.getOrDefault("value", value);
|
|
|
+ Map map = null;
|
|
|
+ if (valueObj instanceof ArrayNode v) {
|
|
|
+ map = ((Map<?, ?>) v.get(0));
|
|
|
+ } else if (valueObj instanceof List<?> v) {
|
|
|
+ map = ((Map<?, ?>) v.get(0));
|
|
|
+
|
|
|
+ } else if (valueObj instanceof Map<?, ?> v) {
|
|
|
+ map = v;
|
|
|
+ }
|
|
|
+// Map<String, Object> value = ((Map<String, Object>) map.getOrDefault("value", map));
|
|
|
+ valueNames = map.keySet().stream().toList();
|
|
|
expression = "insert into %s ( %s) values(%s)".formatted(expression, String.join(",", valueNames), valueNames.stream().map(it -> "?").collect(Collectors.joining(",")));
|
|
|
// 更新
|
|
|
} else if (Objects.equals("2", event)) {
|
|
@@ -133,9 +183,20 @@ public class DatabaseScriptUtil {
|
|
|
Objects.isNull(filterLineWhereStr) ? " 1=1 " : filterLineWhereStr);
|
|
|
// 删除
|
|
|
} else if (Objects.equals("3", event)) {
|
|
|
- Map<String, Object> map = args.get(0);
|
|
|
- Map<String, Object> filter = ((Map<String, Object>) map.getOrDefault("filter", map));
|
|
|
- filterNames = filter.keySet().stream().toList();
|
|
|
+
|
|
|
+
|
|
|
+ Map<String, Object> argMap = args.get(0);
|
|
|
+ Object filter = argMap.getOrDefault("filter", argMap);
|
|
|
+ Map map = null;
|
|
|
+ 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;
|
|
|
+ }
|
|
|
+ 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);
|
|
@@ -317,4 +378,82 @@ public class DatabaseScriptUtil {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ public static Map<String, Object> execBySql(String datasourceId, String expression, Map<String, Object> args) throws Exception {
|
|
|
+ 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;
|
|
|
+ if (Objects.nonNull(filterColumnsTemp))
|
|
|
+ filterColumns = DataFormatUtil.toList(filterColumnsTemp).stream().map(it -> it.toString()).toList();
|
|
|
+ Object filterLinesTemp = args.get("filterLines");
|
|
|
+ List<Map<String, Object>> filterLines = null;
|
|
|
+ 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);
|
|
|
+ }
|
|
|
+
|
|
|
+ public static Map<String, Object> execByTableName(String datasourceId, String table, Map<String, Object> args) throws Exception {
|
|
|
+ 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;
|
|
|
+ if (Objects.nonNull(filterColumnsTemp))
|
|
|
+ filterColumns = DataFormatUtil.toList(filterColumnsTemp).stream().map(it -> it.toString()).toList();
|
|
|
+ Object filterLinesTemp = args.get("filterLines");
|
|
|
+ List<Map<String, Object>> filterLines = null;
|
|
|
+ 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);
|
|
|
+ }
|
|
|
+
|
|
|
+ public static Map<String, Object> execByDynamicSql(String datasourceId, String expression, Map<String, Object> args) throws Exception {
|
|
|
+ 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;
|
|
|
+ if (Objects.nonNull(filterColumnsTemp))
|
|
|
+ filterColumns = DataFormatUtil.toList(filterColumnsTemp).stream().map(it -> it.toString()).toList();
|
|
|
+ Object filterLinesTemp = args.get("filterLines");
|
|
|
+ List<Map<String, Object>> filterLines = null;
|
|
|
+ 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);
|
|
|
+ }
|
|
|
+
|
|
|
+ public static Map<String, Object> execByDynamicTableName(String datasourceId, String table, Map<String, Object> args) throws Exception {
|
|
|
+ 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;
|
|
|
+ if (Objects.nonNull(filterColumnsTemp))
|
|
|
+ filterColumns = DataFormatUtil.toList(filterColumnsTemp).stream().map(it -> it.toString()).toList();
|
|
|
+ Object filterLinesTemp = args.get("filterLines");
|
|
|
+ List<Map<String, Object>> filterLines = null;
|
|
|
+ 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);
|
|
|
+ }
|
|
|
+
|
|
|
+ private static String queryConnectionStr(String datasourceId) throws Exception {
|
|
|
+ List<Map<String, Object>> result = DataBase.query(Config.getCenterConnectionStr(), """
|
|
|
+ select datasourceid,
|
|
|
+ host,
|
|
|
+ username,
|
|
|
+ password,
|
|
|
+ driverclassname
|
|
|
+ from datasource
|
|
|
+ where datasourceid = ?""", datasourceId);
|
|
|
+ if (result.isEmpty()) {
|
|
|
+ throw new RuntimeException("数据源错误:没有找到数据源");
|
|
|
+ }
|
|
|
+ return DataFormatUtil.toString(result.stream().findFirst().map(it -> {
|
|
|
+ it.put("jdbcUrl", it.get("host"));
|
|
|
+ it.put("driverClassName", it.get("driverclassname"));
|
|
|
+ return it;
|
|
|
+ }).get());
|
|
|
+ }
|
|
|
}
|