Open
Description
Preflight checklist
- I could not find a solution in the existing issues, docs, nor discussions.
- I agree to follow this project's Code of Conduct.
- I have read and am following this repository's Contribution Guidelines.
- This issue affects my Ory Network project.
- I have joined the Ory Community Slack.
- I am signed up to the Ory Security Patch Newsletter.
Describe your problem
I'm using Keto to implement permission for my SaaS-like product. Users can interact with it through a cli program (using a personal access token) or directly from the website (with session cookies). PATs can be "admin" tokens or "view" tokens, only "admin" tokens can make changes to the account. I implemented the following partial OPL policy:
class AccessToken implements Namespace {
}
class Account implements Namespace {
related: {
token: AccessToken[]
admin_token: AccessToken[]
}
permits = {
edit: (ctx: Context): boolean =>
// this == ctx ||
this.related.admin_token.includes(ctx.subject),
view: (ctx: Context): boolean =>
this.permits.edit(ctx) ||
this.related.token.includes(ctx.subject),
}
}
What's missing is a way to add the tuple Account:alice#edit@Account:alice
.
Describe your ideal solution
My ideal solution is to add a permission check like this == ctx.subject
.
Workarounds or alternatives
Add a editor
relation from Account
to Account
and check that this.related.editor.includes(ctx.subject)
.
Version
v0.10.0-alpha.0
Additional Context
No response