]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/ProcessThread.java
reintroduce Spring Security Authenticaiton in SLC
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / main / java / org / argeo / slc / core / execution / ProcessThread.java
index b116696f16ee15a2227db219f7e7ca54622a265e..428cfd178330ed6eff39bea78e6859ddf5682306 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>
+ * Copyright (C) 2007-2012 Mathieu Baudier
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -13,7 +13,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
 package org.argeo.slc.core.execution;
 
 import java.util.ArrayList;
@@ -30,6 +29,8 @@ import org.argeo.slc.execution.ExecutionProcess;
 import org.argeo.slc.execution.ExecutionStep;
 import org.argeo.slc.process.RealizedFlow;
 import org.argeo.slc.process.SlcExecution;
+import org.springframework.security.Authentication;
+import org.springframework.security.context.SecurityContextHolder;
 
 /** Thread of the SLC Process, starting the sub executions. */
 @SuppressWarnings("deprecation")
@@ -57,6 +58,16 @@ public class ProcessThread extends Thread {
        }
 
        public final void run() {
+               // authenticate thread
+                Authentication authentication = getProcessThreadGroup()
+                .getAuthentication();
+                if (authentication == null)
+                throw new SlcException("Can only execute authenticated threads");
+                SecurityContextHolder.getContext().setAuthentication(authentication);
+
+               // log.info("\n##\n## SLC Process #" + process.getUuid() +
+               // " STARTED by "
+               // + authentication.getName() + "\n##\n");
                log.info("\n##\n## SLC Process #" + process.getUuid()
                                + " STARTED\n##\n");