spring-security-messaging uses PathMatcher in two places:
- [ ]
SimpDestinationMessageMatchershould be deprecated and replaced - [ ]
MessageMatcherDelegatingAuthorizationManagershould deprecate and replace its use ofPathMatcher - [ ]
MessageMatcherAuthorizationManagerConfigurationshould not retrieve and configuration aPathMatcher
To construct a PathPattern from a given pattern do:
PathPatternParser parser = PathPatternParser.defaultInstance;
PathPattern pathPattern = parser.parse(pattern);
To compare a PathPattern to a message destination, do:
String destination = SimpMessageHeaderAccessor.getDestination(message.getHeaders());
PathContainer pathContainer = PathContainer.parsePath(destination);
PathMatchInfo match = pathPattern.matchAndExtract(pathContainer);
Please take a look at PathPatternRequestMatcher for implementation guidance.
Comment From: pat-mccusker
Hi @jzheaux, is this still up for grabs/not accounted for in the other mentioned issues? I'd like to work on it.
Comment From: jzheaux
Hi, @pat-mccusker, yes, thanks for volunteering!