@inrupt/solid-client
Version:
Make your web apps work with Solid Pods.
103 lines (100 loc) • 5.11 kB
JavaScript
import { internal_defaultFetchOptions } from '../resource/resource.mjs';
import { getAgentAccess, getGroupAccess, getPublicAccess, getAgentAccessAll, getGroupAccessAll, setAgentAccess, setGroupAccess, setPublicAccess } from './universal.mjs';
/**
* Copyright 2020 Inrupt Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
* Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
* PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
async function getAccessFor(resourceUrl, actorType, actor = internal_defaultFetchOptions, options = internal_defaultFetchOptions) {
if (actorType === "agent") {
if (typeof actor !== "string") {
throw new Error("When reading Agent-specific access, the given agent cannot be left undefined.");
}
return await getAgentAccess(resourceUrl, actor, options);
}
if (actorType === "group") {
if (typeof actor !== "string") {
throw new Error("When reading Group-specific access, the given group cannot be left undefined.");
}
return await getGroupAccess(resourceUrl, actor, options);
}
if (actorType === "public") {
if (typeof actor === "string") {
throw new Error(`When reading public access, no actor type should be specified (here [${actor}]).`);
}
return await getPublicAccess(resourceUrl, actor);
}
return null;
}
/**
* Get an overview of what access is defined for a given set of actors: all Agents
* or all Groups.
*
* This function works with Solid Pods that implement either the Web Access
* Control spec or the Access Control Policies proposal, with some caveats:
*
* - If access to the given Resource has been set using anything other than the
* functions in this module, it is possible that it has been set in a way that
* prevents this function from reliably reading access, in which case it will
* resolve to `null`.
* - It will only return access specified explicitly for the given actor (Agent
* or Group). If additional restrictions are set up to apply to the given Agent
* in a particular situation, those will not be reflected in the return value
* of this function.
* - It will only return access specified explicitly for the given Resource.
* In other words, if the Resource is a Container, the returned Access may not
* apply to contained Resources.
* - If the current user does not have permission to view access for the given
* Resource, this function will resolve to `null`.
*
* @param resourceUrl URL of the Resource you want to read the access for.
* @param actorType type of actor whose access is being read.
* @returns What access is set for the given resource, grouped by resp. Agent or Group.
* @since 1.5.0
*/
async function getAccessForAll(resourceUrl, actorType, options = internal_defaultFetchOptions) {
if (actorType === "agent") {
return await getAgentAccessAll(resourceUrl, options);
}
if (actorType === "group") {
return await getGroupAccessAll(resourceUrl, options);
}
return null;
}
async function setAccessFor(resourceUrl, actorType, access, actor = internal_defaultFetchOptions, options = internal_defaultFetchOptions) {
if (actorType === "agent") {
if (typeof actor !== "string") {
throw new Error("When writing Agent-specific access, the given agent cannot be left undefined.");
}
return await setAgentAccess(resourceUrl, actor, access, options);
}
if (actorType === "group") {
if (typeof actor !== "string") {
throw new Error("When writing Group-specific access, the given group cannot be left undefined.");
}
return await setGroupAccess(resourceUrl, actor, access, options);
}
if (actorType === "public") {
if (typeof actor === "string") {
throw new Error(`When writing public access, no actor type should be specified (here [${actor}]).`);
}
return await setPublicAccess(resourceUrl, access, actor);
}
return null;
}
export { getAccessFor, getAccessForAll, setAccessFor };