Skip to content
Snippets Groups Projects
Commit 76dc024d authored by Michael Simon's avatar Michael Simon
Browse files

NO_STORY add scripting env to checkAccess to test oidc access via script

parent 922081ed
No related branches found
No related tags found
No related merge requests found
......@@ -60,6 +60,7 @@ import edu.kit.scc.webreg.event.ServiceRegisterEvent;
import edu.kit.scc.webreg.event.exc.EventSubmitException;
import edu.kit.scc.webreg.exc.MisconfiguredApplicationException;
import edu.kit.scc.webreg.exc.MisconfiguredServiceException;
import edu.kit.scc.webreg.script.ScriptingEnv;
import jakarta.enterprise.context.ApplicationScoped;
import jakarta.inject.Inject;
import jakarta.inject.Named;
......@@ -86,6 +87,9 @@ public class KnowledgeSessionSingleton {
@Inject
private EventSubmitter eventSubmitter;
@Inject
private ScriptingEnv scriptingEnv;
@Inject
private ApplicationConfig appConfig;
......@@ -202,7 +206,7 @@ public class KnowledgeSessionSingleton {
Invocable invocable = (Invocable) engine;
invocable.invokeFunction("checkAccess", identity, unauthorizedList, logger);
invocable.invokeFunction("checkAccess", identity, unauthorizedList, logger, scriptingEnv);
} catch (ScriptException e) {
logger.warn("Script execution failed.", e);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment