|
@@ -5,79 +5,112 @@ import com.scbfkj.uni.library.UniReturnUtil;
|
|
|
import com.scbfkj.uni.process.DataBase;
|
|
|
|
|
|
import java.util.*;
|
|
|
-import java.util.stream.Collectors;
|
|
|
|
|
|
public class AuthorizationScriptUtil {
|
|
|
|
|
|
|
|
|
public static Map<String, Object> authorization(String datasourceId, Map<String, Object> data) throws Exception {
|
|
|
|
|
|
- List<Map<String, Object>> dataContent = Optional.ofNullable(DataFormatUtil.toList(data.get("datacontent"))).map(it -> it.stream().map(d -> {
|
|
|
- Map<?, ?> map = DataFormatUtil.toMap(d);
|
|
|
- return (Map<String, Object>) map;
|
|
|
- }).toList()).orElse(new ArrayList<>());
|
|
|
+ List<Object> dataContent = Optional.ofNullable(DataFormatUtil.toList(data.get("datacontent"))).orElse(new ArrayList<>());
|
|
|
if (dataContent.isEmpty()) {
|
|
|
return UniReturnUtil.fail("datacontent 为空");
|
|
|
}
|
|
|
Object event = data.get("event").toString();
|
|
|
- /**
|
|
|
- * 继续对mapList做type分组
|
|
|
- */
|
|
|
- Map<Object, List<Map<String, Object>>> typeDatas = dataContent.stream().collect(Collectors.groupingBy(it -> it.get("type")));
|
|
|
-
|
|
|
- Map<String, List<Object[]>> args = new HashMap<>();
|
|
|
- typeDatas.entrySet().stream().forEach(it -> {
|
|
|
- List<Map<String, Object>> itValue = it.getValue();
|
|
|
- if (it.getKey().equals("1")) {
|
|
|
- List<Object[]> values = itValue.stream().map(value -> {
|
|
|
- ArrayList<Object> arrayList = new ArrayList<>();
|
|
|
- arrayList.add(value.get("id"));
|
|
|
- arrayList.add(value.get("pageconfigurationid"));
|
|
|
- return arrayList.toArray();
|
|
|
- }).toList();
|
|
|
-// 新增
|
|
|
- if ("1".equals(event)) {
|
|
|
-
|
|
|
- args.put("""
|
|
|
- insert into userpermissions (userid, pageconfigurationid)
|
|
|
- values (?, ?)""", values);
|
|
|
-
|
|
|
-// 删除
|
|
|
- } else if ("3".equals(event)) {
|
|
|
-
|
|
|
- args.put("""
|
|
|
- delete
|
|
|
- from userpermissions
|
|
|
- where userid=? and pageconfigurationid=?""", values);
|
|
|
+ String id = data.get("id").toString();
|
|
|
+ Object type = data.get("type").toString();
|
|
|
+ String sql = null;
|
|
|
+
|
|
|
+ if (type.equals("1")) {
|
|
|
+ if ("1".equals(event)) {
|
|
|
+ sql = """
|
|
|
+ insert into userpermissions (userid, pageconfigurationid)
|
|
|
+ values (%s, ?)""".formatted(id);
|
|
|
+ } else if ("3".equals(event)) {
|
|
|
+ sql = """
|
|
|
+ delete
|
|
|
+ from userpermissions
|
|
|
+ where userid=%s and pageconfigurationid=?""".formatted(id);
|
|
|
+ }
|
|
|
+ int[] result = DataBase.updateBatch(DatabaseScriptUtil.queryConnectionStr(datasourceId), sql, dataContent.stream().map(it -> new Object[]{it}).toList());
|
|
|
+ return UniReturnUtil.success(result);
|
|
|
+ } else if (type.equals("2")) {
|
|
|
+ Set<Object> childrenGroup = getChildrenGroup(datasourceId, id);
|
|
|
+ Map<String, List<Object[]>> children = new HashMap<>();
|
|
|
+ ArrayList<Object[]> lines = new ArrayList<>();
|
|
|
+ for (Object o : dataContent) {
|
|
|
+ lines.add(new Object[]{id, o});
|
|
|
+ }
|
|
|
+ for (Object id1 : childrenGroup) {
|
|
|
+ for (Object o : dataContent) {
|
|
|
+ lines.add(new Object[]{id1, o});
|
|
|
}
|
|
|
- } else if (it.getKey().equals("2")) {
|
|
|
- List<Object[]> values = itValue.stream().map(value -> {
|
|
|
- ArrayList<Object> arrayList = new ArrayList<>();
|
|
|
- arrayList.add(value.get("id"));
|
|
|
- arrayList.add(value.get("pageconfigurationid"));
|
|
|
- return arrayList.toArray();
|
|
|
- }).toList();
|
|
|
-
|
|
|
-// 新增
|
|
|
- if ("1".equals(event)) {
|
|
|
- args.put("""
|
|
|
- insert into usergrouppermissions (usergroupid, pageconfigurationid)
|
|
|
- values (?, ?)""", values);
|
|
|
-
|
|
|
-// 删除
|
|
|
- } else if ("3".equals(event)) {
|
|
|
-
|
|
|
- args.put("""
|
|
|
- delete
|
|
|
- from usergrouppermissions
|
|
|
- where usergroupid=? and pageconfigurationid=?""", values);
|
|
|
+ }
|
|
|
+
|
|
|
+ ArrayList<Object[]> userInfoValues = new ArrayList<>();
|
|
|
+ Set<Object> childrenUserInfo = getChildrenUserInfo(datasourceId, childrenGroup);
|
|
|
+ for (Object id1 : childrenUserInfo) {
|
|
|
+ for (Object o : dataContent) {
|
|
|
+ userInfoValues.add(new Object[]{id1, o});
|
|
|
}
|
|
|
}
|
|
|
- });
|
|
|
- DataBase.updateBatchExtend(DatabaseScriptUtil.queryConnectionStr(datasourceId), args);
|
|
|
- return UniReturnUtil.success(true);
|
|
|
+ if ("1".equals(event)) {
|
|
|
+
|
|
|
+ sql = """
|
|
|
+ insert into usergrouppermissions (usergroupid, pageconfigurationid)
|
|
|
+ values (?, ?)""";
|
|
|
+ children.put(sql, lines);
|
|
|
+
|
|
|
+ sql = """
|
|
|
+ insert into userpermissions (userid, pageconfigurationid)
|
|
|
+ values (?, ?)
|
|
|
+ """;
|
|
|
+ children.put(sql, userInfoValues);
|
|
|
+
|
|
|
+
|
|
|
+ } else if ("3".equals(event)) {
|
|
|
+ sql = """
|
|
|
+ delete
|
|
|
+ from usergrouppermissions
|
|
|
+ where usergroupid=? and pageconfigurationid=?""";
|
|
|
+
|
|
|
+ children.put(sql, lines);
|
|
|
+
|
|
|
+ sql = """
|
|
|
+ delete
|
|
|
+ from userpermissions
|
|
|
+ where userid=? and pageconfigurationid=?
|
|
|
+ """;
|
|
|
+ children.put(sql, userInfoValues);
|
|
|
+ }
|
|
|
+ DataBase.updateBatchExtend(DatabaseScriptUtil.queryConnectionStr(datasourceId), children);
|
|
|
+ return UniReturnUtil.success(true);
|
|
|
+ }
|
|
|
+ return UniReturnUtil.fail("类型错误");
|
|
|
+
|
|
|
+ }
|
|
|
|
|
|
+ public static Set<Object> getChildrenGroup(String datasourceId, String id) throws Exception {
|
|
|
+ Set<Object> children = new HashSet<>();
|
|
|
+ String sql = """
|
|
|
+ select usergroupid
|
|
|
+ from usergroup where superiorid=?""";
|
|
|
+ List<Map<String, Object>> result = DataBase.query(DatabaseScriptUtil.queryConnectionStr(datasourceId), sql, id);
|
|
|
+ for (Map<String, Object> it : result) {
|
|
|
+ children.addAll(getChildrenGroup(datasourceId, it.get("usergroupid").toString()));
|
|
|
+ }
|
|
|
+ return children;
|
|
|
+ }
|
|
|
|
|
|
+ public static Set<Object> getChildrenUserInfo(String datasourceId, Set<Object> groupIds) throws Exception {
|
|
|
+ Set<Object> children = new HashSet<>();
|
|
|
+ String sql = """
|
|
|
+ select userid
|
|
|
+ from userinfo where usergroupid=?""";
|
|
|
+ List<Map<String, Object>> result = DataBase.queryBatch(DatabaseScriptUtil.queryConnectionStr(datasourceId), sql, groupIds.stream().map(it -> new Object[]{it}).toList());
|
|
|
+ for (Map<String, Object> it : result) {
|
|
|
+ children.addAll(getChildrenGroup(datasourceId, it.get("userid").toString()));
|
|
|
+ }
|
|
|
+ return children;
|
|
|
}
|
|
|
|
|
|
public static Map<String, Object> getAuthorization(String datasourceId, Map<String, Object> data) throws Exception {
|
|
@@ -98,7 +131,6 @@ public class AuthorizationScriptUtil {
|
|
|
right join pageconfiguration on pageconfiguration.pageconfigurationid = usergrouppermissions.pageconfigurationid
|
|
|
where usergroupid = ?""", id);
|
|
|
} else {
|
|
|
-
|
|
|
results = DataBase.query(DatabaseScriptUtil.queryConnectionStr(datasourceId), """
|
|
|
select distinct pageconfiguration.*
|
|
|
from userpermissions
|