Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

If you're using Postgres then using the ltree module is great for permission systems. Available in RDS too


Agreed, specifically for the file structure use-case, we were able to solve this with ltree.


About to embark on a similar project. Would love to hear any insights you can share!


Sorry for the delay! It's fairly simple.

1. You have a column on your objects you want secured as an LTREE[] 2. You add a GIST index on that column

The values should be the different hierarchy paths to access the object starting with a "type" e.g departments.root.deptA

When you run a query, depending on how you want to access you use a <@ query. E.g. I'm a user with root access to all depts "col <@ 'departments.root'::ltree" or I'm a user in dept A "col <@ 'departments.root.deptA'::ltree" etc


Could you explain why this is great over alternatives?


Do you have an article about that?


Sorry for the delay! It's fairly simple. 1. You have a column on your objects you want secured as an LTREE[] 2. You add a GIST index on that column

The values should be the different hierarchy paths to access the object starting with a "type" e.g departments.root.deptA

When you run a query, depending on how you want to access you use a <@ query. E.g. I'm a user with root access to all depts "col <@ 'departments.root'::ltree" or I'm a user in dept A "col <@ 'departments.root.deptA'::ltree" etc




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: