fair-tools
v0.6.0
Published
Tools for the FAIR protocol
Readme
FAIR Tools
A library of Node.js tools for FAIR that can be used by authors of plugins and themes for WordPress. Create keys, create DIDs, manage DID documents, and build signed FAIR metadata.
This library focuses on providing FAIR tools for the WordPress ecosystem, but its tools are also applicable to FAIR and DID PLC in general.
[!CAUTION]
This package is not production ready and is under heavy development. Do not use this unless you are comfortable testing the FAIR protocol and handling breaking changes, including breaking changes to storage of private keys.
Installation
For the best user experience, install FAIR Tools globally:
npm install -g fair-toolsUsage:
fair-tools <command> [options]npm install --save-dev fair-toolsThen add fair-tools to your package.json scripts:
{
"scripts": {
"fair-tools": "fair-tools"
}
}Usage:
npm run fair-tools -- <command> [options]CLI reference
Commands:
fair-tools did create Create a new DID
fair-tools did service add Add a service URL to a DID
fair-tools did service replace Replace a service URL in a DID
fair-tools did service remove Remove a service URL from a DID
fair-tools did verification-key add Add a verification key
fair-tools did verification-key revoke Revoke a verification key
fair-tools did rotation-key add Add a rotation key
fair-tools did rotation-key revoke Revoke a rotation key
fair-tools did aka add Add a URL to the alsoKnownAs field
fair-tools did aka replace Replace a URL in the alsoKnownAs field
fair-tools did aka remove Remove a URL from the alsoKnownAs field
fair-tools did domain verify Verify the DID DNS record of a domain
fair-tools did domain verify-alias Verify alsoKnownAs domain aliases for a DID
fair-tools metadata build Build a FAIR metadata documentTo see all available commands:
fair-toolsFor more information on a command:
fair-tools <command> --helpBasic usage
The basic steps to set up a plugin for distribution via FAIR are:
- Generate a DID and save its signing keys somewhere safe.
- Add the DID to your plugin header and publish it.
- Build the FAIR metadata for the package and publish it.
- Point your DID to the URL of the metadata document.
The initial setup of the DID only happens once. Subsequent updates to your plugin just require you to build the FAIR metadata for the package and publish it.
Create a DID
Creates a new DID and publishes it.
fair-tools did create --directory ./didsThis generates rotation and verification keypairs, creates a DID, publishes it to plc.directory, and writes the keys to <directory>/<did>.json with secure permissions (0600).
[!WARNING] Back up this file immediately! This file contains the private keys needed to manage your DID. If you lose this file, you will lose control of your DID permanently.
Add the DID to your plugin header
Manually add the new DID to the header of your plugin. The did:plc: prefix must be included.
* Plugin Name: My Plugin
+ * Plugin ID: did:plc:abcdefghijklmnopqrstuvwx
* Version: 1.0.0Signing keys
Most subsequent commands after creating a DID require a signing key. There are two ways to provide one:
Key file: Use
--signing-fileto specify a key file. The file can be either:- A JSON file created by fair-tools containing your keys (use
--signing-keyto select a specific key; defaults to first key) - A standalone PEM file (starts with
-----BEGIN EC PRIVATE KEY-----for rotation keys or-----BEGIN PRIVATE KEY-----for verification keys) - A standalone multibase base58btc file (starts with
z3vLfor rotation keys orzru/zrvfor verification keys from FAIR Beacon) - A standalone hex file (64-character lowercase hex string representing the 32-byte private key)
- A JSON file created by fair-tools containing your keys (use
Environment variable: If
--signing-fileis not provided, the command falls back to an environment variable:FAIR_VERIFICATION_KEYfor metadata signingFAIR_ROTATION_KEYfor DID operations
Build metadata
Builds signed FAIR metadata for a release of a plugin for WordPress.
fair-tools metadata build \
--did did:plc:xxx \
--plugin-file ./my-plugin/my-plugin.php \
--zip-file ./my-plugin.zip \
--url https://example.com/releases/my-plugin-1.0.0.zip \
--metadata-file ./metadata.json \
--output-file ./metadata.jsonAdd DID service URL
Adds your FAIR service URL to a DID.
fair-tools did service add \
--did did:plc:xxx \
--url https://example.com/did:plc:xxx/metadata.jsonReplace DID service URL
Replaces the FAIR service URL for a DID. Requires specifying the old URL to prevent accidental overwrites.
fair-tools did service replace \
--did did:plc:xxx \
--old-url https://old.example.com/metadata.json \
--new-url https://new.example.com/metadata.jsonRemove DID service URL
Removes the FAIR service URL from a DID. Requires specifying the URL to prevent accidental removals.
fair-tools did service remove \
--did did:plc:xxx \
--url https://example.com/metadata.jsonDID management
Over time you may need to manage the keys for your DID.
Add alsoKnownAs URL
Adds a URL to the alsoKnownAs field of a DID. For FAIR domain aliases, use a fair:// URL.
fair-tools did aka add \
--did did:plc:xxx \
--url fair://example.comBefore adding a fair:// alias, ensure your domain has a TXT record at _fairpm.<domain> with the value did=<your-did>. Use did domain verify to check this. After adding the alias, use did domain verify-alias to verify the complete setup.
Replace alsoKnownAs URL
Replaces a URL in the alsoKnownAs field of a DID. Requires specifying the old URL to prevent accidental overwrites.
fair-tools did aka replace \
--did did:plc:xxx \
--old-url fair://old.example.com \
--new-url fair://new.example.comRemove alsoKnownAs URL
Removes a URL from the alsoKnownAs field of a DID.
fair-tools did aka remove \
--did did:plc:xxx \
--url fair://example.comVerify domain
Verifies that a domain's DNS TXT record is correctly configured for a DID. Use this to check DNS propagation before adding a domain alias to your DID.
fair-tools did domain verify \
--domain example.com \
--did did:plc:xxxThe domain requires a TXT record at _fairpm.<domain> with the value did=<your-did>.
Verify domain alias
Verifies the fair:// domain alias in a DID's alsoKnownAs field by fetching the DID document, extracting the alias, and checking the corresponding DNS TXT record.
fair-tools did domain verify-alias \
--did did:plc:xxxAdd verification key
Generates a new verification key, adds it to a DID, and saves it to the key file.
fair-tools did verification-key add \
--did did:plc:xxxUse --output-file to save the new key to a different file instead of the signing file.
Add rotation key
Generates a new rotation key, adds it to a DID, and saves it to the key file.
fair-tools did rotation-key add \
--did did:plc:xxxUse --output-file to save the new key to a different file instead of the signing file.
Revoke verification key
Revokes a verification key from a DID.
fair-tools did verification-key revoke \
--did did:plc:xxx \
--revoke did:key:z6Mk...Use --cleanup to delete the revoked key from the key file after success.
Revoke rotation key
Revokes a rotation key from a DID.
fair-tools did rotation-key revoke \
--did did:plc:xxx \
--revoke did:key:zQ3sh...You cannot revoke the key used to sign the operation, and at least one rotation key must remain.
When using --signing-file without --signing-key, defaults to signing with the first available rotation key that isn't being revoked.
Use --cleanup to delete the revoked key from the key file after success.
FAQs
I installed fair-tools globally but it's not always available, why not?
If you're using nvm or fnm to manage Node.js versions you'll need to install it globally for each version. This is how those tools and Node.js versions work, it's not specific to fair-tools.
Is this an official FAIR tool?
No. Its license facilitates it being transferred to The FAIR Web Foundation at a later date should they wish.
Alternatives
- FAIR Beacon - Plugin for WordPress for a self-hostable FAIR repo
- FAIR DID Manager - A PHP library for DID management and WordPress plugin/theme metadata generation
- FAIR Forge - Build system and artifact management for WordPress plugins/themes
License
MIT
███████████ █████████ █████ ███████████
░░███░░░░░░█ ███░░░░░███ ░░███ ░░███░░░░░███
░███ █ ░ ░███ ░███ ░███ ░███ ░███
░███████ ░███████████ ░███ ░██████████
░███░░░█ ░███░░░░░███ ░███ ░███░░░░░███
░███ ░ ░███ ░███ ░███ ░███ ░███
█████ █████ █████ █████ █████ █████
░░░░░ ░░░░░ ░░░░░ ░░░░░ ░░░░░ ░░░░░
███████████ ████
░█░░░███░░░█ ░░███
░ ░███ ░ ██████ ██████ ░███ █████
░███ ███░░███ ███░░███ ░███ ███░░
░███ ░███ ░███░███ ░███ ░███ ░░█████
░███ ░███ ░███░███ ░███ ░███ ░░░░███
█████ ░░██████ ░░██████ █████ ██████
░░░░░ ░░░░░░ ░░░░░░ ░░░░░ ░░░░░░