npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ownacl

v0.0.19

Published

A library to manage access in solid pods.

Downloads

38

Readme

ownacl

A library to make managing file permissions in solid pods easier.

If you are unfamiliar with the Solid Project, this is a good first read. This library is intended for acl files that were created in accordance with the WAC standards. All the functionality was implemented on top of the rdflib.js library.

Features | Usage | Installing | Contributing

Features

At the moment the library supports the following functionality:

  • Reading permissions
  • Adding permissions
  • Deleting permissions

Features that are planned for the future as of right now include:

  • Add Access Groups with member
  • Support a local mode that only updates a local graph

Usage

The acl client object needs to be instantiated with the url of the access control file that is supposed to be read (In this example it would be the acl file for the root folder):

import aclClient from 'ownacl'
const acl = new aclClient("https://bob.solid.community/.acl")

Every function of this object will return a promise that needs to be awaited.

Reading Permissions

To read all agents and their access use readAccessControl():

acl.readAccessControl().then((accessControl) => {
   // do something with the results in here
})

The result would look something like this:

[{
  'name': 'https://bob.solid.community/profile/card#me',
  'identifier': 'https://bob.solid.community/.acl#owner'
  'type': 'Agent',
  'access': ['Control', 'Read', 'Write']
}, ...]

To read all agents that are mentioned in the file use readAgents():

acl.readAgents().then((agents) => {
   // do something with the results in here
})

The result would look something like this:

[{
  'name': 'https://bob.solid.community/profile/card#me',
  'identifier': 'https://bob.solid.community/.acl#owner'
  'type': 'Agent',
}, ...]

To read an acl file or its default file use read():

acl.read().then((aclBody) => {
   // do something with the results in here
})

The result would look something like this:

@prefix : <#>.
@prefix n0: <http://www.w3.org/ns/auth/acl#>.
@prefix pro: <./>.
@prefix c: <card#>.
@prefix n1: <http://xmlns.com/foaf/0.1/>.

:ControlReadWrite
    a n0:Authorization;
    n0:accessTo pro:;
    n0:agent c:me;
    n0:default pro:;
    n0:mode n0:Control, n0:Read, n0:Write.
:Read
    a n0:Authorization;
    n0:accessTo pro:;
    n0:agentClass n1:Agent;
    n0:default pro:;
    n0:mode n0:Read.

The resulting array of agents and the identifier property of each agent object can be used with readAccess(identifier) to get the access of a single agent. The same can be done with AgentGroups or Origins by using readAgentGroups() or readOrigins().

Adding or removing permissions

To add permissions for some agent you can use addAgent(agent). You'll need to pass an object containing a valid webId in a name property and an access property that contains the permissions you want to give:

const alice = { name: 'https://alice.solid.community/profile/card#me', access: ['Read', 'Write'] }
acl.addAgent(alice).then(() => {
  // Alice has been added
  ...
})

The same can be done for AgentGroups or Origins by using addAgentGroup(agentGroup) or addOrigin(origin) and by passing an AgentGroup or Origin object. If there is an Agent, an AgentGroup or an Origin that already has the access the new enitity is supposed to have, they will share an identifier.

To remove permissions for an agent you'll need to pass an object with just the agents name to deleteAgent(agent):

const alice = { name: 'https://alice.solid.community/profile/card#me' }
acl.deleteAgent(alice).then(() => {
  // alice's permissions have been removed
  ...
})

The same can be done for AgentGroups and Origins by using deleteAgentGroup(agentGroup) or deleteOrigin(origin).

Installing

The library can be installed with the npm package manager by running npm install ownacl. It can be used for both a node environment (at least v12.0) and a browser environment.

Contributing

(0. Create an issue)

  1. Create a Pull Request, in which you link to an issue or explain why this change was necessary
  2. Run the tests and or write a test for the feature. Explain how this feature can be tested in your PR description when you are done
  3. Assign a reviewer
  4. After your code was reviewed, apply the changes that may be requested from the reviewer
  5. Then after your PR has been approved, squash and merge the PR with a senseful commit message in the format of '[Feature that you worked on]: [What you did exactly]' e.g. 'Updating permissions: Refactor util functions'

Running the tests

You'll need to install and setup the solid-auth-cli package to authenticate from the command line, instructions can be found here. Then you can run the tests by running npm test.