-
Notifications
You must be signed in to change notification settings - Fork 6k
Add support for authorization events in DelegatingAuthorizationManager #9527
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* | ||
* Copyright 2002-2021 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.springframework.security.authorization; | ||
|
||
/** | ||
* @author Parikshit Dutta | ||
* @since 5.5 | ||
*/ | ||
public interface AuthorizationEventPublisher { | ||
|
||
void publishAuthorizationSuccess(AuthorizationDecision authorizationDecision); | ||
|
||
void publishAuthorizationFailure(AuthorizationDecision authorizationDecision); | ||
|
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/* | ||
* Copyright 2002-2021 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.springframework.security.authorization; | ||
|
||
import org.springframework.context.ApplicationEventPublisher; | ||
import org.springframework.context.ApplicationEventPublisherAware; | ||
import org.springframework.security.authorization.event.AuthorizationFailureEvent; | ||
import org.springframework.security.authorization.event.AuthorizationSuccessEvent; | ||
|
||
/** | ||
* Default implementation of {@link AuthorizationEventPublisher} | ||
* | ||
* @author Parikshit Dutta | ||
* @since 5.5 | ||
*/ | ||
public class DefaultAuthorizationEventPublisher implements AuthorizationEventPublisher, ApplicationEventPublisherAware { | ||
|
||
private ApplicationEventPublisher applicationEventPublisher; | ||
|
||
public DefaultAuthorizationEventPublisher() { | ||
this(null); | ||
} | ||
|
||
public DefaultAuthorizationEventPublisher(ApplicationEventPublisher applicationEventPublisher) { | ||
this.applicationEventPublisher = applicationEventPublisher; | ||
} | ||
|
||
@Override | ||
public void setApplicationEventPublisher(ApplicationEventPublisher applicationEventPublisher) { | ||
this.applicationEventPublisher = applicationEventPublisher; | ||
} | ||
|
||
@Override | ||
public void publishAuthorizationSuccess(AuthorizationDecision authorizationDecision) { | ||
if (this.applicationEventPublisher != null) { | ||
this.applicationEventPublisher.publishEvent(new AuthorizationSuccessEvent(authorizationDecision)); | ||
} | ||
} | ||
|
||
@Override | ||
public void publishAuthorizationFailure(AuthorizationDecision authorizationDecision) { | ||
if (this.applicationEventPublisher != null) { | ||
this.applicationEventPublisher.publishEvent(new AuthorizationFailureEvent(authorizationDecision)); | ||
} | ||
} | ||
|
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* | ||
* Copyright 2002-2021 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.springframework.security.authorization.event; | ||
|
||
import org.springframework.context.ApplicationEvent; | ||
import org.springframework.security.authorization.AuthorizationDecision; | ||
|
||
/** | ||
* An {@link ApplicationEvent} which indicates failed authorization. | ||
* | ||
* @author Parikshit Dutta | ||
* @since 5.5 | ||
*/ | ||
public class AuthorizationFailureEvent extends ApplicationEvent { | ||
|
||
public AuthorizationFailureEvent(AuthorizationDecision authorizationDecision) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this should be generically typed like public class AuthorizationFailureEvent<T> extends ApplicationEvent {
// ...
public AuthorizationFailureEvent(Supplier<Authentication> authentication, T object, AuthorizationDecision decision)
// ...
} My motivation for the ordering is that it matches the ordering for |
||
super(authorizationDecision); | ||
} | ||
|
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* | ||
* Copyright 2002-2021 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.springframework.security.authorization.event; | ||
|
||
import org.springframework.context.ApplicationEvent; | ||
import org.springframework.security.authorization.AuthorizationDecision; | ||
|
||
/** | ||
* An {@link ApplicationEvent} which indicates successful authorization. | ||
* | ||
* @author Parikshit Dutta | ||
* @since 5.5 | ||
*/ | ||
public class AuthorizationSuccessEvent extends ApplicationEvent { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this should be generically typed like public class AuthorizationSuccessEvent<T> extends ApplicationEvent {
// ...
public AuthorizationSuccessEvent(Supplier<Authentication> authentication, T object, AuthorizationDecision decision)
// ...
} My motivation for the ordering is that it matches the ordering for |
||
|
||
public AuthorizationSuccessEvent(AuthorizationDecision authorizationDecision) { | ||
super(authorizationDecision); | ||
} | ||
|
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
/* | ||
* Copyright 2002-2021 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.springframework.security.authorization; | ||
|
||
import org.junit.Before; | ||
import org.junit.Test; | ||
|
||
import org.springframework.context.ApplicationEventPublisher; | ||
import org.springframework.security.authorization.event.AuthorizationFailureEvent; | ||
import org.springframework.security.authorization.event.AuthorizationSuccessEvent; | ||
|
||
import static org.mockito.ArgumentMatchers.any; | ||
import static org.mockito.ArgumentMatchers.isA; | ||
import static org.mockito.Mockito.mock; | ||
import static org.mockito.Mockito.never; | ||
import static org.mockito.Mockito.verify; | ||
|
||
/** | ||
* Tests for {@link DefaultAuthorizationEventPublisher} | ||
* | ||
* @author Parikshit Dutta | ||
*/ | ||
public class DefaultAuthorizationEventPublisherTests { | ||
|
||
ApplicationEventPublisher applicationEventPublisher; | ||
|
||
DefaultAuthorizationEventPublisher authorizationEventPublisher; | ||
|
||
@Before | ||
public void init() { | ||
this.applicationEventPublisher = mock(ApplicationEventPublisher.class); | ||
this.authorizationEventPublisher = new DefaultAuthorizationEventPublisher(); | ||
this.authorizationEventPublisher.setApplicationEventPublisher(this.applicationEventPublisher); | ||
} | ||
|
||
@Test | ||
public void testAuthenticationSuccessIsPublished() { | ||
this.authorizationEventPublisher.publishAuthorizationSuccess(mock(AuthorizationDecision.class)); | ||
verify(this.applicationEventPublisher).publishEvent(isA(AuthorizationSuccessEvent.class)); | ||
} | ||
|
||
@Test | ||
public void testAuthenticationFailureIsPublished() { | ||
this.authorizationEventPublisher.publishAuthorizationFailure(mock(AuthorizationDecision.class)); | ||
verify(this.applicationEventPublisher).publishEvent(isA(AuthorizationFailureEvent.class)); | ||
} | ||
|
||
@Test | ||
public void testNullPublisherNotInvoked() { | ||
this.authorizationEventPublisher.setApplicationEventPublisher(null); | ||
this.authorizationEventPublisher.publishAuthorizationSuccess(mock(AuthorizationDecision.class)); | ||
this.authorizationEventPublisher.publishAuthorizationFailure(mock(AuthorizationDecision.class)); | ||
verify(this.applicationEventPublisher, never()).publishEvent(any()); | ||
} | ||
|
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright 2002-2020 the original author or authors. | ||
* Copyright 2002-2021 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
|
@@ -27,6 +27,7 @@ | |
|
||
import org.springframework.core.log.LogMessage; | ||
import org.springframework.security.authorization.AuthorizationDecision; | ||
import org.springframework.security.authorization.AuthorizationEventPublisher; | ||
import org.springframework.security.authorization.AuthorizationManager; | ||
import org.springframework.security.core.Authentication; | ||
import org.springframework.security.web.util.matcher.RequestMatcher; | ||
|
@@ -38,6 +39,7 @@ | |
* {@link AuthorizationManager} based on a {@link RequestMatcher} evaluation. | ||
* | ||
* @author Evgeniy Cheban | ||
* @author Parikshit Dutta | ||
* @since 5.5 | ||
*/ | ||
public final class DelegatingAuthorizationManager implements AuthorizationManager<HttpServletRequest> { | ||
|
@@ -46,6 +48,8 @@ public final class DelegatingAuthorizationManager implements AuthorizationManage | |
|
||
private final Map<RequestMatcher, AuthorizationManager<RequestAuthorizationContext>> mappings; | ||
|
||
private AuthorizationEventPublisher authorizationEventPublisher; | ||
|
||
private DelegatingAuthorizationManager( | ||
Map<RequestMatcher, AuthorizationManager<RequestAuthorizationContext>> mappings) { | ||
Assert.notEmpty(mappings, "mappings cannot be empty"); | ||
|
@@ -76,14 +80,36 @@ public AuthorizationDecision check(Supplier<Authentication> authentication, Http | |
if (this.logger.isTraceEnabled()) { | ||
this.logger.trace(LogMessage.format("Checking authorization on %s using %s", request, manager)); | ||
} | ||
return manager.check(authentication, | ||
AuthorizationDecision authorizationDecision = manager.check(authentication, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since authorization managers can be reasonably composed, I think it would be better to publish the event in This way, if a custom authorization manager or a composite authorization manager is used, we don't risk multiple events or no events firing. |
||
new RequestAuthorizationContext(request, matchResult.getVariables())); | ||
publishAuthorizationEvent(authorizationDecision); | ||
return authorizationDecision; | ||
} | ||
} | ||
this.logger.trace("Abstaining since did not find matching RequestMatcher"); | ||
return null; | ||
} | ||
|
||
private void publishAuthorizationEvent(AuthorizationDecision authorizationDecision) { | ||
if (this.authorizationEventPublisher != null) { | ||
if (authorizationDecision.isGranted()) { | ||
this.authorizationEventPublisher.publishAuthorizationSuccess(authorizationDecision); | ||
} | ||
else { | ||
this.authorizationEventPublisher.publishAuthorizationFailure(authorizationDecision); | ||
} | ||
} | ||
} | ||
|
||
/** | ||
* Set implementation of an {@link AuthorizationEventPublisher} | ||
* @param authorizationEventPublisher | ||
*/ | ||
public void setAuthorizationEventPublisher(AuthorizationEventPublisher authorizationEventPublisher) { | ||
Assert.notNull(authorizationEventPublisher, "AuthorizationEventPublisher cannot be null"); | ||
this.authorizationEventPublisher = authorizationEventPublisher; | ||
} | ||
|
||
/** | ||
* Creates a builder for {@link DelegatingAuthorizationManager}. | ||
* @return the new {@link Builder} instance | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this interface should be left out for now. Instead, I think that classes can use
ApplicationEventPublisher
.