Move security model to CMS
[lgpl/argeo-commons.git] / org.argeo.security.core / src / org / argeo / security / core / AbstractSystemExecution.java
index 0d075c3a60b5b0039a17fb95de648b12d2dbe952..bdd110da97ac2b44a6f8570cf61de9f5af601b44 100644 (file)
  */
 package org.argeo.security.core;
 
-import javax.security.auth.login.LoginContext;
-import javax.security.auth.login.LoginException;
-
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 import org.argeo.ArgeoException;
 import org.argeo.security.SystemAuthentication;
-import org.argeo.security.login.BundleContextCallbackHandler;
-import org.osgi.framework.BundleContext;
 import org.springframework.security.authentication.AuthenticationManager;
-import org.springframework.security.authentication.BadCredentialsException;
 import org.springframework.security.core.Authentication;
 import org.springframework.security.core.context.SecurityContext;
 import org.springframework.security.core.context.SecurityContextHolder;
@@ -45,9 +39,7 @@ public abstract class AbstractSystemExecution {
        private final static Log log = LogFactory
                        .getLog(AbstractSystemExecution.class);
        private AuthenticationManager authenticationManager;
-       private BundleContext bundleContext;
        private String systemAuthenticationKey;
-       private String loginContextName = "SYSTEM";
 
        /** Whether the current thread was authenticated by this component. */
        private ThreadLocal<Boolean> authenticatedBySelf = new ThreadLocal<Boolean>() {
@@ -85,24 +77,12 @@ public abstract class AbstractSystemExecution {
                                                InternalAuthentication.SYSTEM_KEY_DEFAULT);
                if (key == null)
                        throw new ArgeoException("No system key defined");
-               if (authenticationManager != null) {
-                       Authentication auth = authenticationManager
-                                       .authenticate(new InternalAuthentication(key));
-                       securityContext.setAuthentication(auth);
-               } else {
-                       try {
-                               // TODO test this
-                               if (bundleContext == null)
-                                       throw new ArgeoException("bundleContext must be set");
-                               BundleContextCallbackHandler callbackHandler = new BundleContextCallbackHandler(
-                                               bundleContext);
-                               LoginContext loginContext = new LoginContext(loginContextName,
-                                               callbackHandler);
-                               loginContext.login();
-                       } catch (LoginException e) {
-                               throw new BadCredentialsException("Cannot authenticate");
-                       }
-               }
+               if (authenticationManager == null)
+                       throw new ArgeoException("Authentication manager cannot be null.");
+               Authentication auth = authenticationManager
+                               .authenticate(new InternalAuthentication(key));
+               securityContext.setAuthentication(auth);
+
                authenticatedBySelf.set(true);
                if (log.isTraceEnabled())
                        log.trace("System authenticated");
@@ -128,20 +108,12 @@ public abstract class AbstractSystemExecution {
                return authenticatedBySelf.get();
        }
 
-       @Deprecated
        public void setAuthenticationManager(
                        AuthenticationManager authenticationManager) {
-               // log.warn("This approach is deprecated, inject bundleContext instead");
                this.authenticationManager = authenticationManager;
        }
 
-       @Deprecated
        public void setSystemAuthenticationKey(String systemAuthenticationKey) {
                this.systemAuthenticationKey = systemAuthenticationKey;
        }
-
-       public void setBundleContext(BundleContext bundleContext) {
-               this.bundleContext = bundleContext;
-       }
-
 }