Skip to content
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

feat(interceptor): allow wildcard securedRoutes #2080

Conversation

skatterwe
Copy link

enables wildcards for secureRoute configuration.

Fixes #2079

@skatterwe
Copy link
Author

Docs are still missing. Will have a look at that later. And maybe you have a better idea regex wise so that we can combine startWith into the regex. But I wasn't able to find one yet that matched all test cases

@skatterwe
Copy link
Author

@FabianGosebrink added the documentation. Can you please check if you think this is sufficient. Also I'm interested on your thoughts about the regex check. Do you have an idea if there is a nice regex that would fit both cases, so we don't need the startWith comparison? I'm not a huge regex expert and didn't manage to find anything suitable yet.

@FabianGosebrink
Copy link
Collaborator

Hey thanks for your PR. Docs are fine.

Also not a Regex Expert, but would something like this work?

function matchesRoute(pattern: string, route: string): boolean {
    const regexPattern = pattern.replace(/[.+?^${}()|[\]\\]/g, '\\$&') 
                                .replace(/\*/g, '.*');

    const regex = new RegExp(`^${regexPattern}$`);
    return regex.test(route);
}

@FabianGosebrink
Copy link
Collaborator

I refactored a bit and tried to improve the regex. Can you have a look, give me your "OK" and then we can emrgen :-)

@FabianGosebrink
Copy link
Collaborator

@damienbod : Waiting for @skatterwe :-)

@skatterwe
Copy link
Author

@FabianGosebrink sorry was away for a while. looks fine to me

@FabianGosebrink
Copy link
Collaborator

FabianGosebrink commented Apr 1, 2025

No worries. Can you resolve the conflicts? Should only be ESLint stuff.

# Conflicts:
#	projects/angular-auth-oidc-client/src/lib/interceptor/closest-matching-route.service.spec.ts
@skatterwe
Copy link
Author

@FabianGosebrink done

@FabianGosebrink
Copy link
Collaborator

Awesome, thanks!

@FabianGosebrink FabianGosebrink merged commit c5437b3 into damienbod:main Apr 1, 2025
9 checks passed
@damienbod
Copy link
Owner

I'll make a minor release for this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Question]: Is it possible to have wildcards in secureRoutes setup
3 participants