edu.internet2.middleware.grouper.grouperUi.beans.ui.ScriptTesterContainer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grouper-ui Show documentation
Show all versions of grouper-ui Show documentation
Internet2 Groups Management User Interface
The newest version!
package edu.internet2.middleware.grouper.grouperUi.beans.ui;
import java.util.ArrayList;
import java.util.List;
import edu.internet2.middleware.grouper.Group;
import edu.internet2.middleware.grouper.GroupFinder;
import edu.internet2.middleware.grouper.GrouperSession;
import edu.internet2.middleware.grouper.app.jexlTester.JexlScriptTesterResult;
import edu.internet2.middleware.grouper.app.jexlTester.ScriptExample;
import edu.internet2.middleware.grouper.app.jexlTester.ScriptType;
import edu.internet2.middleware.grouper.cfg.GrouperConfig;
import edu.internet2.middleware.grouper.cfg.text.GrouperTextContainer;
import edu.internet2.middleware.grouper.exception.GrouperSessionException;
import edu.internet2.middleware.grouper.misc.GrouperSessionHandler;
import edu.internet2.middleware.grouper.privs.PrivilegeHelper;
import edu.internet2.middleware.grouper.ui.GrouperUiFilter;
import org.apache.commons.lang3.StringUtils;
import edu.internet2.middleware.subject.Subject;
public class ScriptTesterContainer {
private String selectedScriptType;
private String selectedExample;
private String availableBeansGshScript;
private String nullCheckingJexlScript;
private String jexlScript;
private JexlScriptTesterResult jexlScriptTesterResult;
public JexlScriptTesterResult getJexlScriptTesterResult() {
return jexlScriptTesterResult;
}
public void setJexlScriptTesterResult(JexlScriptTesterResult jexlScriptTesterResult) {
this.jexlScriptTesterResult = jexlScriptTesterResult;
}
public void setAvailableBeansGshScript(String availableBeansGshScript) {
this.availableBeansGshScript = availableBeansGshScript;
}
public void setNullCheckingJexlScript(String nullCheckingJexlScript) {
this.nullCheckingJexlScript = nullCheckingJexlScript;
}
public void setJexlScript(String jexlScript) {
this.jexlScript = jexlScript;
}
public String getSelectedScriptType() {
return selectedScriptType;
}
public void setSelectedScriptType(String selectedScriptType) {
this.selectedScriptType = selectedScriptType;
}
public String getSelectedExample() {
return selectedExample;
}
public void setSelectedExample(String selectedExample) {
this.selectedExample = selectedExample;
}
/**
* @return all examples available for the selected script type
*/
public List getExamplesAvailableForSelectedScriptType() {
List examples = new ArrayList<>();
ScriptType scriptType = ScriptType.valueOf(this.selectedScriptType);
List scriptExamplesForType = scriptType.retrieveScriptExamplesForType();
for (ScriptExample scriptExample: scriptExamplesForType) {
examples.add(scriptExample.name());
}
return examples;
}
public String getAvailableBeansForSelectedScriptType() {
if (StringUtils.isNotBlank(this.availableBeansGshScript)) {
return this.availableBeansGshScript;
}
ScriptType scriptType = ScriptType.valueOf(this.selectedScriptType);
ScriptExample scriptExample = ScriptExample.retrieveInstance(scriptType, selectedExample);
String availableBeansScript = scriptExample.retrieveAvailableBeansGshScript();
return availableBeansScript;
}
public String getNullCheckingJexlScript() {
if (StringUtils.isNotBlank(this.nullCheckingJexlScript)) {
return this.nullCheckingJexlScript;
}
ScriptType scriptType = ScriptType.valueOf(this.selectedScriptType);
ScriptExample scriptExample = ScriptExample.retrieveInstance(scriptType, selectedExample);
String nullCheckingJexlScript = scriptExample.retrieveNullCheckingJexlScript();
return nullCheckingJexlScript;
}
public boolean isShowNullCheckingJexlScript() {
ScriptType scriptType = ScriptType.valueOf(this.selectedScriptType);
return scriptType.hasNullCheckingOption();
}
public String getJexlScript() {
if (StringUtils.isNotBlank(this.jexlScript)) {
return this.jexlScript;
}
ScriptType scriptType = ScriptType.valueOf(this.selectedScriptType);
ScriptExample scriptExample = ScriptExample.retrieveInstance(scriptType, selectedExample);
String exampleJexlScript = scriptExample.retrieveExampleJexlScript();
return exampleJexlScript;
}
public String getScriptDescription() {
//jexlScriptType_PROVISIONING_GROUP_TRANSLATION_description
return GrouperTextContainer.textOrNull("jexlScriptType_"+this.selectedScriptType+"_description");
}
public String getExampleDescription() {
// jexlScriptExample_PROVISIONING_GROUP_TRANSLATION__GENERIC_description
return GrouperTextContainer.textOrNull("jexlScriptExample_"+this.selectedScriptType+"__"+this.selectedExample+"_description");
}
public boolean isCanScriptTester() {
String groupName = GrouperConfig.retrieveConfig().propertyValueString("jexlScriptTestingGroup");
if (StringUtils.isBlank(groupName)) {
return false;
}
return (boolean) GrouperSession.internal_callbackRootGrouperSession(new GrouperSessionHandler() {
@Override
public Object callback(GrouperSession grouperSession) throws GrouperSessionException {
Group group = GroupFinder.findByName(grouperSession, groupName, false);
if (group == null) {
return false;
}
Subject loggedInSubject = GrouperUiFilter.retrieveSubjectLoggedIn();
return group.hasMember(loggedInSubject);
}
});
}
public boolean isCanScriptTesterLink() {
Subject loggedInSubject = GrouperUiFilter.retrieveSubjectLoggedIn();
if (PrivilegeHelper.isWheelOrRoot(loggedInSubject)) {
return true;
}
return false;
}
/**
* @return all the script types available
*/
public List getAllScriptTypes() {
List scriptTypes = new ArrayList<>();
for (ScriptType scriptType: ScriptType.values()) {
scriptTypes.add(scriptType.name());
}
return scriptTypes;
}
}