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

Conditions? #560

Open
konstantinblaesi opened this issue Mar 10, 2025 · 1 comment
Open

Conditions? #560

konstantinblaesi opened this issue Mar 10, 2025 · 1 comment

Comments

@konstantinblaesi
Copy link

How could conditions such as these in OpenFGA be modeled?

@ogazitt
Copy link
Contributor

ogazitt commented Mar 10, 2025

Topaz uses Open Policy Agent as the "outer" policy layer. Conditions can easily be modeled using Rego syntax, and the policy can then use the ds.check built-in (or other directory built-ins) inside the policy to combine ABAC-style and ReBAC-style conditions.

Also note that with OpenFGA, state needs to be passed in by the caller, whereas with Topaz, you have the option of storing objects and their properties in the state store. Which means you can write expressions like

allowed {
  order := ds.object({ "type": "order", "id": input.resource.object_id })
  order.value < input.user.properties.approval_limit
  ds.check({
    "subject_type": "user",
    "subject_id": input.user.id,
    "relation": "can_approve",
    "object_type": "order",
    "object_id": input.resource.object_id
  })
}

This essentially means "allow the operation if the user can approve the order, AND the order value is lower than the user's approval limit". As you can see, the approval limit can be stored as a property of the user, and the order value can be stored as a property of an order object.

This reduces the burden on the developer to go fetch all these things and pass them into the authorizer (and therefore reduces the possibility of authorization issues introduced by the application).

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

No branches or pull requests

2 participants