simple-grant-lang

Simple Grant Language (SGL)

Usage no npm install needed!

<script type="module">
  import simpleGrantLang from 'https://cdn.skypack.dev/simple-grant-lang';
</script>

README

SGL (Simple Grant Language)

This is the JavaScript implementation of SGL. It is usable in both node.js and browser environments. There is also a python implementation.

SGL is a simple but flexible DSL for matching people against criteria (typically, authorization). It is like XACML but simpler and JSON-oriented. You can use it to write rules about who should be able to do what, and then to compare circumstances to the rules to enforce custom logic. This lets you create your own Role-Based Access Control mechanisms, as well as authorizations based on other criteria.

For example, here's an SGL rule that says only members of the press should be allowed backstage at a concert:

{"grant": ["backstage"], "when": { "roles": "press" }}

And here's how you might use that rule in JavaScript/Node.JS code (Compare the python equivalent):

var sgl = require('simple-grant-lang')

my_rule = {grant: ["backstage"], when: { "roles": "press" }};

people = [
    {id: "Alex", roles: ["ticket-holder"]},
    {id: "Sofia", roles: ["ticket-holder", "press"]}
];

for (var i = 0; i < people.length; ++i) {
    name = people[i].id;
    if (sgl.satisfies(person, my_rule)) {
        console.print("Welcome backstage, " + name);
    } else {
        console.print("Sorry, this area is restricted, " + name);
    }
}

If you ran this code, you'd see:

$ node sampleCode.js
Sorry, this area is restricted, Alex.
Welcome backstage, Sofia.

SGL supports arbitrarily complex rules with boolean operators, as well as rules that require multiple people to jointly exercise a privilege. However, it's simple enough that you should be able to learn it in just a few minutes. See the tutorial.

Note: SGL can be rendered in various styles. The example above uses the recommended JSON rendering, since JSON is familiar, broadly supported, and easy to read. Other possibilities include ProtoBuf, MsgPack, CBOR, and human-friendly text.

SGL is not integrated with any particular enforcement mechanism, because it's designed for problems where you have to do your own enforcement. Hooking it up to enforcement mechanisms is trivial, though.

See also