feat(shared-kernel): add application-level authorization hook#340
Open
florishafkenscheid wants to merge 15 commits into
Open
feat(shared-kernel): add application-level authorization hook#340florishafkenscheid wants to merge 15 commits into
florishafkenscheid wants to merge 15 commits into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description of change
Added a shared-kernel authorization hook around application command and query execution.
This introduces neutral authorization primitives (
Actor,AuthorizationRequest,AuthorizationOperation, andAuthorizationChecker) plus a default allow-all checker for existing open-source behavior.ServiceHandlecan now dispatch commands and queries with optional actor context, andApplicationServiceauthorizes each command/query before calling the bounded context.The goal is to make authorization enforceable below inbound adapters such as HTTP, GraphQL, gRPC, or queues, rather than tying access checks to a specific API transport.
Links to any relevant issues
N/A
How the change has been tested
Verified locally with:
cargo fmt --check cargo test -p shared-kernel cargo clippy -p shared-kernel -- -D warnings cargo check --workspace git diff --checkThe shared-kernel tests cover default allow-all behavior, actor context propagation, authorization request construction, denied command/query execution, error mapping, dropped reply channels, and service shutdown.
Definition of Done checklist