|
|
|
@ -6,9 +6,13 @@ import com.fr.design.dialog.FineJOptionPane;
|
|
|
|
|
import com.fr.design.i18n.Toolkit; |
|
|
|
|
import com.fr.design.mainframe.DesignerContext; |
|
|
|
|
import com.fr.design.mainframe.JTemplate; |
|
|
|
|
import com.fr.design.mod.ModClassFilter; |
|
|
|
|
import com.fr.invoke.ClassHelper; |
|
|
|
|
|
|
|
|
|
import com.fr.log.FineLoggerFactory; |
|
|
|
|
import com.fr.rpc.ExceptionHandler; |
|
|
|
|
import com.fr.rpc.RPCInvokerExceptionInfo; |
|
|
|
|
import com.fr.stable.Filter; |
|
|
|
|
import com.fr.workspace.WorkContext; |
|
|
|
|
import com.fr.workspace.server.authority.user.UserAuthority; |
|
|
|
|
|
|
|
|
@ -42,15 +46,17 @@ public class JTemplateAuthorityChecker {
|
|
|
|
|
|
|
|
|
|
private void initAuthNames() { |
|
|
|
|
UserAuthority templateAuthority = WorkContext.getCurrent().get(UserAuthority.class); |
|
|
|
|
Map<String, Set<String>> allAuthNames = templateAuthority.getAuthServerDataSetAndConnectionNames(); |
|
|
|
|
//有权限的数据连接名称
|
|
|
|
|
authConnectionNames = allAuthNames.get(UserAuthority.AUTH_CONNECTION_NAMES); |
|
|
|
|
//有权限的数据集名称(模板数据集和服务器数据集)
|
|
|
|
|
authDatasetNames = allAuthNames.get(UserAuthority.AUTH_SERVER_DATASET_NAMES); |
|
|
|
|
Iterator<String> iterator = jTemplate.getTarget().getTableDataNameIterator(); |
|
|
|
|
while (iterator.hasNext()) { |
|
|
|
|
String datasetName = iterator.next(); |
|
|
|
|
authDatasetNames.add(datasetName); |
|
|
|
|
Map<String, Set<String>> authNamesMap = templateAuthority.getAuthServerDataSetAndConnectionNames(); |
|
|
|
|
if (authNamesMap != null) { |
|
|
|
|
//有权限的数据连接名称
|
|
|
|
|
authConnectionNames = authNamesMap.get(UserAuthority.AUTH_CONNECTION_NAMES); |
|
|
|
|
//有权限的数据集名称(模板数据集和服务器数据集)
|
|
|
|
|
authDatasetNames = authNamesMap.get(UserAuthority.AUTH_SERVER_DATASET_NAMES); |
|
|
|
|
Iterator<String> iterator = jTemplate.getTarget().getTableDataNameIterator(); |
|
|
|
|
while (iterator.hasNext()) { |
|
|
|
|
String datasetName = iterator.next(); |
|
|
|
|
authDatasetNames.add(datasetName); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -69,55 +75,39 @@ public class JTemplateAuthorityChecker {
|
|
|
|
|
public boolean isAuthority() { |
|
|
|
|
long s = System.currentTimeMillis(); |
|
|
|
|
//遍历模板对象,根据checkerMap.keySet()把感兴趣的对象找出来
|
|
|
|
|
Map<String, Collection<Object>> targetObjects = ClassHelper.searchObject(jTemplate.getTarget(), checkerMap.keySet()); |
|
|
|
|
Map<String, Collection<Object>> targetObjects = ClassHelper.searchObject(jTemplate.getTarget(), checkerMap.keySet(), ClassFilter.getInstance()); |
|
|
|
|
|
|
|
|
|
//找到对应的checker,对对象进行检查
|
|
|
|
|
for (String name : targetObjects.keySet()) { |
|
|
|
|
ElementAuthorityChecker checker = checkerMap.get(name); |
|
|
|
|
for (Object object : targetObjects.get(name)) { |
|
|
|
|
String authFailName = checker.checkConnectionName(object, authConnectionNames); |
|
|
|
|
if (authFailName != null) { |
|
|
|
|
authFailConnectionNames.add(authFailName); |
|
|
|
|
if (authConnectionNames != null) { |
|
|
|
|
Set<String> noAuthName = checker.getNoAuthConnectionNames(object, authConnectionNames); |
|
|
|
|
if (noAuthName != null) { |
|
|
|
|
authFailConnectionNames.addAll(noAuthName); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
authFailName = checker.checkDatasetName(object, authDatasetNames); |
|
|
|
|
if (authFailName != null) { |
|
|
|
|
authFailDatasetNames.add(authFailName); |
|
|
|
|
if (authDatasetNames != null) { |
|
|
|
|
Set<String> noAuthName = checker.getNoAuthDatasetNames(object, authDatasetNames); |
|
|
|
|
if (noAuthName != null) { |
|
|
|
|
authFailDatasetNames.addAll(noAuthName); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
FineLoggerFactory.getLogger().info("JTemplateAuthorityChecker check time consume:" + (System.currentTimeMillis() - s)); |
|
|
|
|
if (authFailConnectionNames.size() == 0 && authFailDatasetNames.size() == 0) { |
|
|
|
|
return true; |
|
|
|
|
} else { |
|
|
|
|
//如果存在越权的,弹出弹框,并返回false
|
|
|
|
|
authorityFailPrompt(); |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
return authFailConnectionNames.size() == 0 && authFailDatasetNames.size() == 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void authorityFailPrompt() { |
|
|
|
|
public void showAuthorityFailPromptDialog() { |
|
|
|
|
StringBuffer stringBuffer = new StringBuffer(); |
|
|
|
|
stringBuffer.append(Toolkit.i18nText("Fine-Design-Basic_Save_Failure")); |
|
|
|
|
stringBuffer.append("\n"); |
|
|
|
|
if (authFailDatasetNames.size() > 0) { |
|
|
|
|
stringBuffer.append(Toolkit.i18nText("Fine-Design_Template_Authority_Check_Current_Operator_Miss")); |
|
|
|
|
stringBuffer.append(authFailDatasetNames.size()); |
|
|
|
|
stringBuffer.append(Toolkit.i18nText("Fine-Design_Report_Ge")); |
|
|
|
|
stringBuffer.append(Toolkit.i18nText("Fine-Design_Template_Authority_Check_Server_Dataset_Authority")); |
|
|
|
|
stringBuffer.append("\n"); |
|
|
|
|
stringBuffer.append(getNoAuthNameSequence(authFailDatasetNames)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (authFailConnectionNames.size() > 0) { |
|
|
|
|
stringBuffer.append(Toolkit.i18nText("Fine-Design_Template_Authority_Check_Current_Operator_Miss")); |
|
|
|
|
stringBuffer.append(authFailConnectionNames.size()); |
|
|
|
|
stringBuffer.append(Toolkit.i18nText("Fine-Design_Report_Ge")); |
|
|
|
|
stringBuffer.append(Toolkit.i18nText("Fine-Design_Template_Authority_Check_Data_Connection_Authority")); |
|
|
|
|
stringBuffer.append("\n"); |
|
|
|
|
stringBuffer.append(getNoAuthNameSequence(authFailConnectionNames)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
stringBuffer.append(getPromptInfo(authFailDatasetNames, |
|
|
|
|
Toolkit.i18nText("Fine-Design_Template_Authority_Check_Server_Dataset_Authority"))); |
|
|
|
|
stringBuffer.append(getPromptInfo(authFailConnectionNames, |
|
|
|
|
Toolkit.i18nText("Fine-Design_Template_Authority_Check_Data_Connection_Authority"))); |
|
|
|
|
FineJOptionPane.showMessageDialog( |
|
|
|
|
DesignerContext.getDesignerFrame(), |
|
|
|
|
stringBuffer.toString(), |
|
|
|
@ -125,6 +115,19 @@ public class JTemplateAuthorityChecker {
|
|
|
|
|
WARNING_MESSAGE); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private String getPromptInfo(Set<String> authFailNames, String message) { |
|
|
|
|
StringBuffer stringBuffer = new StringBuffer(); |
|
|
|
|
if (authFailNames.size() > 0) { |
|
|
|
|
stringBuffer.append(Toolkit.i18nText("Fine-Design_Template_Authority_Check_Current_Operator_Miss")); |
|
|
|
|
stringBuffer.append(authFailNames.size()); |
|
|
|
|
stringBuffer.append(Toolkit.i18nText("Fine-Design_Report_Ge")); |
|
|
|
|
stringBuffer.append(message); |
|
|
|
|
stringBuffer.append("\n"); |
|
|
|
|
stringBuffer.append(getNoAuthNameSequence(authFailNames)); |
|
|
|
|
} |
|
|
|
|
return stringBuffer.toString(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private String getNoAuthNameSequence(Set<String> names) { |
|
|
|
|
StringBuffer stringBuffer = new StringBuffer(); |
|
|
|
|
int showMaxCount = 3; |
|
|
|
@ -143,5 +146,39 @@ public class JTemplateAuthorityChecker {
|
|
|
|
|
stringBuffer.append("\n"); |
|
|
|
|
return stringBuffer.toString(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static class ClassFilter implements Filter<String> { |
|
|
|
|
|
|
|
|
|
private static final Set<String> FILTER_SET = new HashSet<>(); |
|
|
|
|
private static final Set<String> START_WITH_SET = new HashSet<>(); |
|
|
|
|
private static final Filter<String> INSTANCE = new ModClassFilter(); |
|
|
|
|
|
|
|
|
|
public static Filter<String> getInstance() { |
|
|
|
|
return INSTANCE; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static { |
|
|
|
|
FILTER_SET.add("java.awt.image.BufferedImage"); |
|
|
|
|
FILTER_SET.add("sun.awt.AppContext"); |
|
|
|
|
FILTER_SET.add("com.fr.poly.creator.ECBlockCreator"); |
|
|
|
|
FILTER_SET.add("io.netty.channel.nio.SelectedSelectionKeySet"); |
|
|
|
|
FILTER_SET.add("com.fr.form.ui.ElementCaseImage"); |
|
|
|
|
FILTER_SET.add("this$0"); |
|
|
|
|
START_WITH_SET.add("com.fr.design"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public boolean accept(String s) { |
|
|
|
|
if (FILTER_SET.contains(s)) { |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
for (String start : START_WITH_SET) { |
|
|
|
|
if (s.startsWith(start)) { |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|