How can I authenticate a system user for scheduled processes in Spring?

10,051

I'm not sure yet about the RunAsUserToken. I think it is intended to be used when someone is already authenticated, but the application what to execute something as another user.

I found an example of using it here.

But, maybe you don't really need that. If it is the case, you could just do :

Authentication auth = new UsernamePasswordAuthenticationToken(admin.getUsername(), admin.getPassword(), admin.getAuthorities());
SecurityContextHolder.getContext().setAuthentication(auth);

And then admin will be authenticated. Also, you don't need to use admin.getPassword() since it won't be checked anyway.

Note that you don't have to create the security context : it already exists. I think it is ThreadLocal by default.

Share:
10,051
xenoterracide
Author by

xenoterracide

Former Linux System Administrator, now full time Java Software Engineer.

Updated on June 25, 2022

Comments

  • xenoterracide
    xenoterracide almost 2 years

    we have a Quartz/Spring Batch job, that for audit logging purposes we'd like to have it "authenticated" as a system user. Some of our methods rely on fetching the SecurityContext to do this. The ways of running this job are trusted (or authenticated). We don't want to actually use a password or other token (since the process is basically always spawned by quartz).

    I tried this

    private void authenticate() {
        UserDetails admin = userDetailsService.loadUserByUsername( "admin" );
    
        RunAsUserToken token = new RunAsUserToken(
                UUID.randomUUID().toString(), admin, admin.getAuthorities(), null , null );
    
        Authentication user = authenticationManager.authenticate( token );
    
        if ( user.isAuthenticated() ) {
            SecurityContext sc = new SecurityContextImpl();
            sc.setAuthentication( user );
            SecurityContextHolder.setContext( sc );
        }
    }
    

    but it resulted in

    org.springframework.security.authentication.ProviderNotFoundException: No AuthenticationProvider found for org.springframework.security.access.intercept.RunAsUserToken
    

    and I'm not sure what some of RunAsUserToken parameters do (e.g. key) or what I should be giving it in regards to Credentials.

    How can I authenticate or otherwise set the security context as if it was authenticated as this user?

  • xenoterracide
    xenoterracide about 9 years
    it appears that the UsernamePasswordAuthenticationToken (which you mispelled?) should be populated with the first parameter being the principal (we seem to use userd UserDetails ) for that.
  • baraber
    baraber about 9 years
    @xenoterracide : Sorry for the mispell, I corrected it. You are right for the principal : if the rest of your application rely on a UserDetails as the principal, than you'd prefer the pass the admin variable directly.