|
@@ -18,267 +18,15 @@ 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, Pageable pageable) throws Exception {
|
|
|
|
|
|
- if (Objects.isNull(event) || !StringUtils.hasText(event.toString())) {
|
|
|
- throw new RuntimeException("执行编号不能为空");
|
|
|
- }
|
|
|
- event = event.toString();
|
|
|
- expression = expression.replaceAll("\\s*(\\r)?\\n\\s*", " ").trim();
|
|
|
- boolean isTableName = !expression.contains(" ");
|
|
|
-
|
|
|
- if (Objects.isNull(filterColumns)) filterColumns = new ArrayList<>();
|
|
|
+ public static String getFilterLinesWhereSql(List<Map<String, Object>> filterLines) {
|
|
|
if (Objects.isNull(filterLines)) filterLines = new ArrayList<>();
|
|
|
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", ""));
|
|
|
}
|
|
|
-
|
|
|
-// 只有表名
|
|
|
- if (isTableName) {
|
|
|
- List<String> valueNames = null;
|
|
|
- List<String> filterNames = null;
|
|
|
-
|
|
|
- List<String> allColumns = DataBase.getColumnsByTableName(connectionStr, expression);
|
|
|
-
|
|
|
-// 查询
|
|
|
- if (Objects.equals("0", event)) {
|
|
|
- Map<String, Object> argMap = Objects.isNull(args) || args.isEmpty() ? new HashMap<>() : args.get(0);
|
|
|
-
|
|
|
- Object filter = argMap.getOrDefault("filter", argMap);
|
|
|
- Map map = new HashMap<>();
|
|
|
- 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<>();
|
|
|
- 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 %s from %s where %s and %s".formatted(String.join(",", allColumns), 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 %s from %s where %s %s".formatted(String.join(",", allColumns), expression, Objects.isNull(filterLineWhereStr) ? " 1=1 " : filterLineWhereStr,
|
|
|
- filterNames.isEmpty() ?
|
|
|
- "" : (" and " +
|
|
|
- filterNames.stream().map("%s = ?"::formatted).collect(Collectors.joining(" and "))));
|
|
|
-
|
|
|
- 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);
|
|
|
- }
|
|
|
- if (pageable != null) {
|
|
|
- expression = "%s 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);
|
|
|
-// 更新或新增
|
|
|
- } else if (Objects.equals("6", event)) {
|
|
|
- Map<String, Object> map = args.get(0);
|
|
|
- Map<String, Object> filter = ((Map<String, Object>) map.get("filter"));
|
|
|
- filterNames = filter.keySet().stream().toList();
|
|
|
-
|
|
|
- List<Map<String, Object>> insertValues = new ArrayList<>();
|
|
|
- List<Map<String, Object>> updateValues = new ArrayList<>();
|
|
|
-
|
|
|
- String sql = "select count(1) as existscount from %s where %s".formatted(expression, filterNames.stream().map("%s = ?"::formatted).collect(Collectors.joining(" and ")));
|
|
|
- for (Map<String, Object> arg : args) {
|
|
|
-
|
|
|
- Map<String, Object> where = ((Map<String, Object>) arg.get("filter"));
|
|
|
- Object[] objects = filterNames.stream().map(where::get).toArray();
|
|
|
- if (exists(connectionStr, sql, objects)) {
|
|
|
- updateValues.add(arg);
|
|
|
- } else {
|
|
|
- insertValues.add(arg);
|
|
|
- }
|
|
|
- }
|
|
|
- Map<String, Object> insertResult = null;
|
|
|
- if (!insertValues.isEmpty())
|
|
|
- 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, null);
|
|
|
-
|
|
|
- Map<String, Object> finalInsertResult = insertResult;
|
|
|
- Map<String, Object> finalUpdateResult = updateResult;
|
|
|
- HashMap<Object, Object> data = new HashMap<>();
|
|
|
- data.put("insert", finalInsertResult);
|
|
|
- data.put("update", finalUpdateResult);
|
|
|
-
|
|
|
- return UniReturnUtil.success(data);
|
|
|
- } else {
|
|
|
-// 新增
|
|
|
- if (Objects.equals("1", event)) {
|
|
|
- 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)) {
|
|
|
- Map<String, Object> map = args.get(0);
|
|
|
- Map<String, Object> value = ((Map<String, Object>) map.get("value"));
|
|
|
- valueNames = value.keySet().stream().toList();
|
|
|
- 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);
|
|
|
-// 删除
|
|
|
- } else if (Objects.equals("3", event)) {
|
|
|
-
|
|
|
-
|
|
|
- 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);
|
|
|
- } else if (Objects.equals("7", event)) {
|
|
|
-// 先删除
|
|
|
- exec(connectionStr, expression, args, "3", filterColumns, filterLines, pageable);
|
|
|
-// 再新增
|
|
|
- return exec(connectionStr, expression, args, "1", filterColumns, filterLines, pageable);
|
|
|
-
|
|
|
- }
|
|
|
- List<Object[]> values = new ArrayList<>();
|
|
|
-// 按照名称 和过滤条件取值
|
|
|
- final List<String> finalFilterColumns = filterColumns;
|
|
|
- for (Map<String, Object> arg : args) {
|
|
|
- List<Object> objects = new ArrayList<>();
|
|
|
- if (Objects.nonNull(valueNames)) {
|
|
|
- Map<String, Object> o1 = ((Map<String, Object>) arg.getOrDefault("value", arg));
|
|
|
- objects.addAll(valueNames.stream().map(it -> {
|
|
|
-
|
|
|
-// 新增 更新 对列过滤
|
|
|
- if (finalFilterColumns.contains(it) || finalFilterColumns.isEmpty()) {
|
|
|
- return o1.get(it);
|
|
|
- } else {
|
|
|
- return null;
|
|
|
- }
|
|
|
- }).toList());
|
|
|
- }
|
|
|
- if (Objects.nonNull(filterNames)) {
|
|
|
- Map<String, Object> o1 = ((Map<String, Object>) arg.getOrDefault("filter", arg));
|
|
|
- objects.addAll(filterNames.stream().map(o1::get).toList());
|
|
|
- }
|
|
|
- values.add(objects.toArray());
|
|
|
- }
|
|
|
- int[] ints = DataBase.updateBatch(connectionStr, expression, values);
|
|
|
- return UniReturnUtil.success(ints);
|
|
|
- }
|
|
|
-
|
|
|
-// 目前只支持查询
|
|
|
- } else if (expression.contains("《whereStr》")) {
|
|
|
-
|
|
|
- String whereStr = " ";//初始化条件字符串
|
|
|
- List<Object> dbFilter = new ArrayList<>();//初始化条件执行参数
|
|
|
- Map<String, Object> map = args.get(0);
|
|
|
- Object filter = map.get("filter");
|
|
|
- if (filter instanceof List filterList && !filterList.isEmpty()) {//如果存在上传的条件参数或者存在行权限
|
|
|
- Map<String, Object> filterMap = (Map<String, Object>) filterList.get(0);
|
|
|
- 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", ""));
|
|
|
- if (!Objects.equals(it.get("comparator"), " is null ")) {
|
|
|
- dbFilter.add(it.get("value"));
|
|
|
- }
|
|
|
- }
|
|
|
- } else {
|
|
|
- List<Map.Entry<String, Object>> list = filterMap.entrySet().stream().toList();
|
|
|
- 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()) {
|
|
|
- List<? extends Map.Entry<?, ?>> list = filterMap.entrySet().stream().toList();
|
|
|
- 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);
|
|
|
- String sql = expression.replaceAll("《whereStr》", " " + whereStr);
|
|
|
-
|
|
|
- if (!filterColumns.isEmpty()) {
|
|
|
- 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);
|
|
|
- }
|
|
|
- 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, pageable);
|
|
|
- return UniReturnUtil.success(queryResult);
|
|
|
- } else if (Objects.equals(event, "1")) {
|
|
|
- if (sqlStrVarList.containsKey(expression)) {
|
|
|
- getSQLVarList(expression);
|
|
|
- }
|
|
|
- List<String> names = sqlStrVarList.get(expression);
|
|
|
- String sql = sqlStrNewSQL.get(expression);
|
|
|
- int[] updateResult = DataBase.updateBatch(connectionStr, sql, args.stream().map(it -> names.stream().map(it::get).toArray()).toList());
|
|
|
- return UniReturnUtil.success(updateResult);
|
|
|
- } else {
|
|
|
- if (sqlStrVarList.containsKey(expression)) {
|
|
|
- getSQLVarList(expression);
|
|
|
- }
|
|
|
- List<String> names = sqlStrVarList.get(expression);
|
|
|
- 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);
|
|
|
- }
|
|
|
- }
|
|
|
+ return filterLineWhereStr;
|
|
|
}
|
|
|
|
|
|
public static List<String> getSQLVarList(String sqlStr) {
|
|
@@ -369,11 +117,84 @@ public class DatabaseScriptUtil {
|
|
|
if (Objects.nonNull(filterLinesTemp))
|
|
|
filterLines = DataFormatUtil.toList(filterLinesTemp).stream().map(it -> ((Map<String, Object>) it)).toList();
|
|
|
Object event = args.get("event");
|
|
|
- Pageable pageable = null;
|
|
|
- if ("0".equals(event)) {
|
|
|
- pageable = pageable(args);
|
|
|
+ Pageable pageable = pageable(args);
|
|
|
+
|
|
|
+
|
|
|
+ if (Objects.isNull(event) || !StringUtils.hasText(event.toString())) {
|
|
|
+ throw new RuntimeException("执行编号不能为空");
|
|
|
+ }
|
|
|
+ event = event.toString();
|
|
|
+
|
|
|
+ if (Objects.isNull(filterColumns)) filterColumns = new ArrayList<>();
|
|
|
+
|
|
|
+ String filterLineWhereStr = getFilterLinesWhereSql(filterLines);
|
|
|
+
|
|
|
+ String connectionStr = datasourceId;
|
|
|
+ if (Pattern.compile("^\\d+$").matcher(connectionStr.trim()).matches()) {
|
|
|
+ connectionStr = queryConnectionStr(connectionStr.trim());
|
|
|
+ }
|
|
|
+
|
|
|
+ if (expression.contains("《whereStr》")) {
|
|
|
+
|
|
|
+ String whereStr = " ";//初始化条件字符串
|
|
|
+ List<Object> dbFilter = new ArrayList<>();//初始化条件执行参数
|
|
|
+ Map<String, Object> map = dataContent.get(0);
|
|
|
+ Object filter = map.get("filter");
|
|
|
+ if (filter instanceof List filterList && !filterList.isEmpty()) {//如果存在上传的条件参数或者存在行权限
|
|
|
+ Map<String, Object> filterMap = (Map<String, Object>) filterList.get(0);
|
|
|
+ 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", ""));
|
|
|
+ if (!Objects.equals(it.get("comparator"), " is null ")) {
|
|
|
+ dbFilter.add(it.get("value"));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ List<Map.Entry<String, Object>> list = filterMap.entrySet().stream().toList();
|
|
|
+ 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()) {
|
|
|
+ List<? extends Map.Entry<?, ?>> list = filterMap.entrySet().stream().toList();
|
|
|
+ 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);
|
|
|
+ String sql = expression.replaceAll("《whereStr》", " " + whereStr);
|
|
|
+
|
|
|
+ if (!filterColumns.isEmpty()) {
|
|
|
+ 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);
|
|
|
+ }
|
|
|
+ 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, dataContent, filterColumns, filterLines, pageable);
|
|
|
+ return UniReturnUtil.success(queryResult);
|
|
|
+ } else if (Objects.equals(event, "1")) {
|
|
|
+ if (sqlStrVarList.containsKey(expression)) {
|
|
|
+ getSQLVarList(expression);
|
|
|
+ }
|
|
|
+ List<String> names = sqlStrVarList.get(expression);
|
|
|
+ String sql = sqlStrNewSQL.get(expression);
|
|
|
+ int[] updateResult = DataBase.updateBatch(connectionStr, sql, dataContent.stream().map(it -> names.stream().map(it::get).toArray()).toList());
|
|
|
+ return UniReturnUtil.success(updateResult);
|
|
|
+ } else {
|
|
|
+ if (sqlStrVarList.containsKey(expression)) {
|
|
|
+ getSQLVarList(expression);
|
|
|
+ }
|
|
|
+ List<String> names = sqlStrVarList.get(expression);
|
|
|
+ String sql = " %s and %s".formatted(sqlStrNewSQL.get(expression), Objects.isNull(filterLineWhereStr) ? " 1=1 " : filterLineWhereStr);
|
|
|
+ int[] updateResult = DataBase.updateBatch(connectionStr, sql, dataContent.stream().map(it -> names.stream().map(it::get).toArray()).toList());
|
|
|
+ return UniReturnUtil.success(updateResult);
|
|
|
+ }
|
|
|
}
|
|
|
- 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 {
|
|
@@ -387,47 +208,221 @@ public class DatabaseScriptUtil {
|
|
|
if (Objects.nonNull(filterLinesTemp))
|
|
|
filterLines = DataFormatUtil.toList(filterLinesTemp).stream().map(it -> ((Map<String, Object>) it)).toList();
|
|
|
Object event = args.get("event");
|
|
|
- Pageable pageable = null;
|
|
|
- if ("0".equals(event)) {
|
|
|
- pageable = pageable(args);
|
|
|
+ Pageable pageable = pageable(args);
|
|
|
+
|
|
|
+
|
|
|
+ if (Objects.isNull(event) || !StringUtils.hasText(event.toString())) {
|
|
|
+ throw new RuntimeException("执行编号不能为空");
|
|
|
+ }
|
|
|
+ event = event.toString();
|
|
|
+ String expression = table;
|
|
|
+
|
|
|
+ if (Objects.isNull(filterColumns)) filterColumns = new ArrayList<>();
|
|
|
+
|
|
|
+ String filterLineWhereStr = getFilterLinesWhereSql(filterLines);
|
|
|
+
|
|
|
+ String connectionStr = datasourceId;
|
|
|
+ if (Pattern.compile("^\\d+$").matcher(connectionStr.trim()).matches()) {
|
|
|
+ connectionStr = queryConnectionStr(connectionStr.trim());
|
|
|
+ }
|
|
|
+ List<String> valueNames = null;
|
|
|
+ List<String> filterNames = null;
|
|
|
+
|
|
|
+ List<String> allColumns = DataBase.getColumnsByTableName(connectionStr, expression);
|
|
|
+
|
|
|
+// 查询
|
|
|
+ if (Objects.equals("0", event)) {
|
|
|
+ Map<String, Object> argMap = Objects.isNull(args) || args.isEmpty() ? new HashMap<>() : dataContent.get(0);
|
|
|
+
|
|
|
+ Object filter = argMap.getOrDefault("filter", argMap);
|
|
|
+ Map map = new HashMap<>();
|
|
|
+ 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<>();
|
|
|
+ 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);
|
|
|
+ if (whereStr.trim().isEmpty()) {
|
|
|
+ values.add(new Object[]{1});
|
|
|
+ } else {
|
|
|
+ values.add(objects.toArray());
|
|
|
+ }
|
|
|
+ } 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,
|
|
|
+ filterNames.isEmpty() ?
|
|
|
+ "" : (" and " +
|
|
|
+ filterNames.stream().map("%s = ?"::formatted).collect(Collectors.joining(" and "))));
|
|
|
+
|
|
|
+ for (Map<String, Object> arg : dataContent) {
|
|
|
+ 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);
|
|
|
+ }
|
|
|
+ if (pageable != null) {
|
|
|
+ expression = "%s 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);
|
|
|
+// 更新或新增
|
|
|
+ } else if (Objects.equals("6", event)) {
|
|
|
+ Map<String, Object> map = dataContent.get(0);
|
|
|
+ Map<String, Object> filter = ((Map<String, Object>) map.get("filter"));
|
|
|
+ filterNames = filter.keySet().stream().toList();
|
|
|
+
|
|
|
+ List<Map<String, Object>> insertValues = new ArrayList<>();
|
|
|
+ List<Map<String, Object>> updateValues = new ArrayList<>();
|
|
|
+
|
|
|
+ String sql = "select count(1) as existscount from %s where %s".formatted(expression, filterNames.stream().map("%s = ?"::formatted).collect(Collectors.joining(" and ")));
|
|
|
+ for (Map<String, Object> arg : dataContent) {
|
|
|
+
|
|
|
+ Map<String, Object> where = ((Map<String, Object>) arg.get("filter"));
|
|
|
+ Object[] objects = filterNames.stream().map(where::get).toArray();
|
|
|
+ if (exists(connectionStr, sql, objects)) {
|
|
|
+ updateValues.add(arg);
|
|
|
+ } else {
|
|
|
+ insertValues.add(arg);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ Map<String, Object> insertResult = null;
|
|
|
+
|
|
|
+ if (!insertValues.isEmpty()) {
|
|
|
+ HashMap<String, Object> insertArgs = new HashMap<>(args);
|
|
|
+ insertArgs.put("event", "1");
|
|
|
+ insertArgs.put("datacontent", insertValues);
|
|
|
+ insertResult = execByTableName(connectionStr, expression, insertArgs);
|
|
|
+ }
|
|
|
+ Map<String, Object> updateResult = null;
|
|
|
+ if (!updateValues.isEmpty()) {
|
|
|
+
|
|
|
+ HashMap<String, Object> updateArgs = new HashMap<>(args);
|
|
|
+ updateArgs.put("event", "1");
|
|
|
+ updateArgs.put("datacontent", updateValues);
|
|
|
+ updateResult = execByTableName(connectionStr, expression, updateArgs);
|
|
|
+ }
|
|
|
+
|
|
|
+ Map<String, Object> finalInsertResult = insertResult;
|
|
|
+ Map<String, Object> finalUpdateResult = updateResult;
|
|
|
+ HashMap<Object, Object> data = new HashMap<>();
|
|
|
+ data.put("insert", finalInsertResult);
|
|
|
+ data.put("update", finalUpdateResult);
|
|
|
+
|
|
|
+ return UniReturnUtil.success(data);
|
|
|
+ } else {
|
|
|
+// 新增
|
|
|
+ if (Objects.equals("1", event)) {
|
|
|
+ Map<String, Object> value = dataContent.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)) {
|
|
|
+ Map<String, Object> map = dataContent.get(0);
|
|
|
+ Map<String, Object> value = ((Map<String, Object>) map.get("value"));
|
|
|
+ valueNames = value.keySet().stream().toList();
|
|
|
+ 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);
|
|
|
+// 删除
|
|
|
+ } else if (Objects.equals("3", event)) {
|
|
|
+
|
|
|
+
|
|
|
+ Map<String, Object> argMap = dataContent.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);
|
|
|
+ } else if (Objects.equals("7", event)) {
|
|
|
+// 先删除
|
|
|
+ args.put("event", "3");
|
|
|
+ execByTableName(datasourceId, table, args);
|
|
|
+// 再新增
|
|
|
+ args.put("event", "1");
|
|
|
+ return execByTableName(datasourceId, table, args);
|
|
|
+ }
|
|
|
+ List<Object[]> values = new ArrayList<>();
|
|
|
+// 按照名称 和过滤条件取值
|
|
|
+ final List<String> finalFilterColumns = filterColumns;
|
|
|
+ for (Map<String, Object> arg : dataContent) {
|
|
|
+ List<Object> objects = new ArrayList<>();
|
|
|
+ if (Objects.nonNull(valueNames)) {
|
|
|
+ Map<String, Object> o1 = ((Map<String, Object>) arg.getOrDefault("value", arg));
|
|
|
+ objects.addAll(valueNames.stream().map(it -> {
|
|
|
+
|
|
|
+// 新增 更新 对列过滤
|
|
|
+ if (finalFilterColumns.contains(it) || finalFilterColumns.isEmpty()) {
|
|
|
+ return o1.get(it);
|
|
|
+ } else {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+ }).toList());
|
|
|
+ }
|
|
|
+ if (Objects.nonNull(filterNames)) {
|
|
|
+ Map<String, Object> o1 = ((Map<String, Object>) arg.getOrDefault("filter", arg));
|
|
|
+ objects.addAll(filterNames.stream().map(o1::get).toList());
|
|
|
+ }
|
|
|
+ values.add(objects.toArray());
|
|
|
+ }
|
|
|
+ int[] ints = DataBase.updateBatch(connectionStr, expression, values);
|
|
|
+ return UniReturnUtil.success(ints);
|
|
|
}
|
|
|
- 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 {
|
|
|
- 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");
|
|
|
- Pageable pageable = null;
|
|
|
- if ("0".equals(event)) {
|
|
|
- pageable = pageable(args);
|
|
|
- }
|
|
|
- return exec(queryConnectionStr(datasourceId), expression, dataContent, event, filterColumns, filterLines, pageable);
|
|
|
+ return execBySql(datasourceId, expression, args);
|
|
|
}
|
|
|
|
|
|
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");
|
|
|
- Pageable pageable = null;
|
|
|
- if ("0".equals(event)) {
|
|
|
- pageable = pageable(args);
|
|
|
- }
|
|
|
- return exec(queryConnectionStr(datasourceId), table, dataContent, event, filterColumns, filterLines, pageable);
|
|
|
+ return execByTableName(datasourceId, table, args);
|
|
|
}
|
|
|
|
|
|
public static String queryConnectionStr(String datasourceId) throws Exception {
|
|
@@ -457,6 +452,10 @@ public class DatabaseScriptUtil {
|
|
|
Object size = args.get("size");
|
|
|
Long pageNumber = 0L;
|
|
|
Long pageSizeNumber = 0L;
|
|
|
+ Object event = args.get("event");
|
|
|
+ if (event == null || !event.toString().equals("0")) {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
|
|
|
if (Objects.nonNull(page)) {
|
|
|
pageNumber = Long.parseLong(page.toString()) - 1;
|