-
-
Notifications
You must be signed in to change notification settings - Fork 204
Permissions: Dynamic Rules #511
Comments
I just had a thought. If Read/Update/Delete are all controlled by filters (eg: a WHERE clause) then that also allows for the current
Example of filter array
We would need a few variables, but these would be really useful to have in normal filters as well. Examples include:
|
This might be already answered, but just to be clear: this filter will be added/forced by directus api itself right? My main concern is just the public-facing api endpoints, in which someone can forge/modify the request to remove the filter. |
Correct. This will be the Core ACL for the API (and therefore also used by App). The only way to bypass this would be if you're connecting directly to the database (obviously). |
Awesome! |
@wellingguzman — could I get your thoughts on this one? |
This filtered Dynamic Permissions would be a great help also for our use case, because we could make composition of permissions for our collections by user. |
To achieve better clarity/visibility, we are now tracking feature requests within the Feature Request project board. This issue being closed does not mean it's not being considered. |
This looks a bit like https://github.com/UnlyEd/conditions-matcher we built. It's simpler though. Exemples: https://github.com/UnlyEd/conditions-matcher/blob/master/examples/medium-match/index.js What's the status on this? Any ETA? I could also use it to more finely control permissions of my customer's users (being a SaaS B2B business managing big accounts with multiple people with different sets of permissions) |
The status is "in work". We're discussing how best to implement this, and when. While we'd like to include it in v10 (the API refactor in Laravel), we're also trying to strictly adhere to our feature freeze so that we focus on stability and timeliness first. |
Okay, I've seen many questions related to this on Slack this past week. |
SchemaDirectus Permissions
Directus Roles
Permissions Example JSON
|
My 2 cents:
I'd also split the permission JSON and operations into another table and have a FK point to that, should be easier to perform operations over the table to fetch specific contents like checking for (posts, title). Also, About |
Thanks @WoLfulus! Some thoughts below... although I'm sure @rijkvanzanten will weigh in too. Collection FKsMy main concern with using abstracted FKs in the system collections is that we strive to be a "database admin tool", but this really obfuscates the data. Looking at I know the main reason to use FKs is to make schema updates easier, but if we have a short list of places/columns that need to be updated, I don't think this should be that big of an issue. The same applies to column FKs vs Names. Permissions CollectionsI don't really understand the reasoning behind splitting permissions into two tables, perhaps you explain the benefits of this a bit more? What I've proposed is basically 5 columns (ignoring a few new ones like Are you saying you want to use columns instead of the JSON? That seems like a huge change, since these permissions could be significantly nested/complex. JSON can certainly handle that, but I imagine splitting all that into individual records would be far more complex. Enlighten me. Dynamic vs Static ValuesI agree that typing is an issue here, but it seems that we could simply come up with a format for reserved variables to solve this instead of introducing typing into the permissions. If ALL dynamic variables start with App AccessThis flag would not matter for the API. If a user tries to log in to the App, and they don't have |
Weighing my two cents in here, I am wondering if it is sufficient for most use cases to introduce User groups instead of too granular permissions? I remember we once went that road with a ModX, a cms, and there it became so bad that some installations had such mixed up dynamic permissions that we completely lost track at times... The principle is easy, the maintenance over time not. With user groups a user group owner can invite users in a group and in that group give them a role (owner, editor,..). Then, each item should have a |
Thanks @tvld — we actually had that (or at least the architecture for it) back in v7. Roles were a M2M with Users. While that remains an option in the future, we're first focusing on roles themselves having more control (creating conditions, rather than simply configuring a status filter). This doesn't limit us from having multiple roles per user int he future... just makes Roles themselves more powerful. |
@benhaynes Point taken... and I can see your reasoning... I suppose this discussion is very related to what we discuss here? Or was I hijacking by accident? >> directus/directus#2687 |
Yeah, very similar... basically our goal is to improve the fundamental flexibility and power of Directus, while leaving as many doors open as possible for enhancements in the future that we don't have time to coordinate now. |
While
full
,role
,user
,mine
, andnone
will satisfy most use-cases, I've spoken with many people who could use a more dynamic option. I imagine using a set of filters like we do indirectus_collection_presets.filters
... so there would be an option for a CRUDE permission to be set to:This is how filters are saved in
directus_collection_presets
:Originally I was thinking that we could save the permissions as
filter:[...]
(where the array matches above), but I wonder if there's a cleaner way to handle this.The text was updated successfully, but these errors were encountered: