Sharing 1.5 - Single Whitelist Persistence #351
Unanswered
jbee
asked this question in
Specs & RFCs
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Motivation
The current sharing system is multi-dimensional making it unnecessary hard to understand and work with.
This impacts both complexity and performance.
However, for practical reasons it is hard to switch to a fundamentally different system.
Ideally the user experience and interaction with sharing should not change to avoid consts of transitioning.
Practical Example
With the current
Sharing
model there are multiple fields to check.Two are maps of UID => access pattern.
A SQL to evaluate this has multiple parts because there are multiple fields to check.
For the maps with each group a user is a member of the query gets another expression making the SQL long, complex and thus it is fair to assume costly in terms of performance.
A filter looks something like this
Proposal
This proposal is a solution that only changes how the sharing information is stored and processed but it should be possible to reconstruct the current API layout from the structure.
The sharing is a whitelist of UIDs and special tokens for read and write.
Empty sets are omitted.
In Java
The proposal is also to drop the data vs metadata distinction and to always imply both.
If this should be maintained more sets could be used or UIDs can be extended with a prefix character (see tokens).
Lookup
For a lookup it is always known upfront which of the 2/4 lists to check.
So the check itself is always a check for set intersection.
The users set of associated UIDs and tokens is checked against the whitelist of sharing.
If there is at least 1 contained in both access is allowed.
This way the SQL needed to perform sharing checks is a single X in Y where X and Y are JSON arrays of string.
For an in memory check this equally is a
Set<String>
containsAny check.A filter would always look like this
Tokens
In the whitelists sets UIDs of users and user groups would be mixed.
The set would also allow non-UID tokens with special meaning. For example, a token to allow public access, instead of putting an UID in the set
"p"
could be added to symbolize that public access is allowed.UIDs could also be prefixed with a token to mark them as read/write/dataread/datawrite instead of having multiple lists. E.g.
r{uid}
to give metadata read access to the UID.Open Issues
The issues are not related to the representation but to the sharing concept itself. These are good to keep in mind when changing the design to maybe solve some of them in the process.
fields=ref[a,b,c]
to see a,b,c of the reference from another root.Beta Was this translation helpful? Give feedback.
All reactions