-
Notifications
You must be signed in to change notification settings - Fork 45
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
Define creator #315
Comments
👎 given the direction of resource-level access control I believe this only complicates things. We have HTTP/2 available as well as content types that can represent datasets and include more than one graph. AFAIK only container currently has the quirk of mixing server-managed and client-managed triples and it brings all kinds of problems with it. |
I agree there are some pretty important use cases for having this. |
+1 to using |
+1 to the same. |
Given the conversation in solid/web-access-control-spec#97, it would be good to hear from @RubenVerborgh if access policies relying on information in server-managed auxiliary resource impact architecture discussed there. I would expect not, since server-managed auxiliary resource seems similar to ACL (WAC) / ACR (ACP), and both could be available to the authorization layer. |
+1 to a clear separation of server managed and non server managed triples. |
The notion of "creator" of a resource has been in discussions and in being implemented for some time now e.g. solid/solid#111 (in 2016), #66 , #197 (comment) , #265 (comment) ..
"Creator" is an important piece of information, with plethora of use cases involving resource management, audit trails, notification of changes, provenance records, subject rights, privacy, authorization... that can be used by both servers and applications for different purposes.
Creators of resources have some sense of right to control the lifecycle of their own creations. It is similar to the current definition of storage "owner" in the Protocol:
but in fact it is closer to the existing definition of "owner" in http://www.w3.org/ns/auth/acl#owner :
with the exception of not being changeable. (The current
solid:owner
was informed byacl:owner
).The creator (as per authenticated agent or possibly a group) of a resource needs to persist somehow/where.
Looking at #227 (search for "creator" or "authoritative resource metadata") and #177 , it is acknowledged to be a data point that should be available in the Protocol and most likely made available through a server-managed resource, i.e., server reads and writes to it, and it is read-only by agents/clients that are properly authorized. The creator goes well together with other "information such as last modification, size, resource type etc." that's server managed.
Alternatively, for RDF documents, the information can be part of the resource, and any attempt to updating it can be rejected - similar to attempts to directly updating containment statements. For example, LDP also mentions
dcterms:creator
as a server-managed property e.g., in https://www.w3.org/TR/ldp/#ldpr-put-replaceall . That has the advantage of following best practice on self-describing documents.To make it uniformly available for all resources, there are two options:
(I'd say that the auxiliary resource is the way to go.. as that is going to solve a bunch of other issues in one go. On a related note, we may want to consider making owner information available from there as well.)
The text was updated successfully, but these errors were encountered: