Search in sources :

Example 1 with InvalidSessionFactory

use of org.openntf.domino.xsp.session.InvalidSessionFactory in project org.openntf.domino by OpenNTF.

the class XotsDominoExecutor method initModule.

/**
 * Helper for WrappedCallable/WrappedRunnable
 *
 * @param ctx
 * @param mcl
 * @param wrapper
 * @throws ServletException
 */
static void initModule(final NotesContext ctx, final ClassLoader mcl, final Object wrappedObject) throws ServletException {
    if (mcl instanceof ModuleClassLoader) {
        URLClassLoader dcl = (URLClassLoader) ((ModuleClassLoader) mcl).getDynamicClassLoader();
        String className = wrappedObject.getClass().getName();
        String str = className.replace('.', '/') + ".class";
        URL url = dcl.findResource(str);
        if (url != null && url.getProtocol().startsWith("xspnsf")) {
            // Set up the "TopLevelXPageSigner == Signer of the runnable
            // As soon as we are in a xspnsf, we do not have a SessionFactory!
            ctx.setSignerSessionRights("WEB-INF/classes/" + str);
            // RPr: There is a bug: you can decide if you want to use "sessionAsSigner" or "sessionAsSignerFullAccess"
            // But you cannot use both simultaneously!
            Session signerSession = ctx.getSessionAsSigner(true);
            if (signerSession != null) {
                Factory.setSessionFactory(new XPageSignerSessionFactory(false), SessionType.SIGNER);
                Factory.setSessionFactory(new XPageSignerSessionFactory(true), SessionType.SIGNER_FULL_ACCESS);
            } else {
                // do not setup signer sessions if it is not properly signed!
                Factory.setSessionFactory(new InvalidSessionFactory(), SessionType.SIGNER);
                Factory.setSessionFactory(new InvalidSessionFactory(), SessionType.SIGNER_FULL_ACCESS);
            }
        } else {
            // The code is not part from an NSF, so it resides on the server
            Factory.setSessionFactory(new XPageNamedSessionFactory(Factory.getLocalServerName(), false), SessionType.SIGNER);
            Factory.setSessionFactory(new XPageNamedSessionFactory(Factory.getLocalServerName(), true), SessionType.SIGNER_FULL_ACCESS);
        }
    }
    Factory.setClassLoader(mcl);
}
Also used : InvalidSessionFactory(org.openntf.domino.xsp.session.InvalidSessionFactory) XPageNamedSessionFactory(org.openntf.domino.xsp.session.XPageNamedSessionFactory) ModuleClassLoader(com.ibm.domino.xsp.module.nsf.ModuleClassLoader) URLClassLoader(java.net.URLClassLoader) XPageSignerSessionFactory(org.openntf.domino.xsp.session.XPageSignerSessionFactory) URL(java.net.URL) Session(lotus.domino.Session)

Aggregations

ModuleClassLoader (com.ibm.domino.xsp.module.nsf.ModuleClassLoader)1 URL (java.net.URL)1 URLClassLoader (java.net.URLClassLoader)1 Session (lotus.domino.Session)1 InvalidSessionFactory (org.openntf.domino.xsp.session.InvalidSessionFactory)1 XPageNamedSessionFactory (org.openntf.domino.xsp.session.XPageNamedSessionFactory)1 XPageSignerSessionFactory (org.openntf.domino.xsp.session.XPageSignerSessionFactory)1