This contains a set of scripts and utility tools to auto provising LTI tools to Canvas.
We developers spend valuable time setting up LTI 1.3 tools in Canvas, we need to create at least one LTI developer key, in some cases API keys, and register the keys in an LTI auth server. Then add the tool to a subaccount to test it or let the testers play with it. And all of that per project and environment.
The intention of the scripts is to provide developers an easier way to create everything needed in a single run, and being able to delete everything that has been created.
To test it locally, first, install the package globally in your system:
npm i -g
Or you can also install it in your project:
npm i @oxctl/lti-auto-configuration --save-dev
Then you can run the script using:
npx @oxctl/lti-auto-configuration -h
The -h flag will output information about what commands are supported and what parameters are required.
IMPORTANT: The script requires the configuration provided by template files, you have examples for page-design in the
tool-config
folder, customize the configuration templates according to your needs putting attention to the required
permissions in the scope.
This tool stores configuration in ~/.tool-config
under profiles. This allows you to easily switch between different
servers.
To initialise things under the default
environment run:
npx @oxctl/lti-auto-configuration init
This will prompt for the URL and credentials for Canvas and Tool Support.
Pass an alternative profile name to the init
command to set up a different profile for working with different servers:
npx @oxctl/lti-auto-configuration init prod
Then when running any of the other commands select to use that profile with NODE_ENV=prod npx @oxctl/....
If the tool has additional configuration it needs to prompt for then these values can be set with:
npx @oxctl/lti-auto-configuration setup
Now the configuration can be used to add a tool (using example template in tool-config
):
npx @oxctl/lti-auto-configuration create
This command will run the following actions:
- Creates an LTI developer key.
- Creates an API developer key.
- Enables both developer keys.
- Register both keys in the LTI Auth Server.
- Adds the external tool to the testing sub-account using the LTI developer Key from step 1.
After you have created the tool if you edit the tool configuration you can update it in Canvas and Tool Support with:
npx @oxctl/lti-auto-configuration update
This command will:
- Lookup configuration in tool support for the registration ID.
- Update the LTI developer key.
- Update the API developer key (adding if needed and deleting if no longer required).
- Update the configuration in tool support.
Once you no longer need to the tool you can remove it with:
npx @oxctl/lti-auto-configuration delete
This command will run the following actions
- Gets the LTI registration from tool support by the registration id.
- Deletes, if exists, the LTI developer key present in the registration by client id.
- Deletes, if exists, the API developer key present in the registration by client id.
- Deletes the LTI registration from the LTI Auth Server.
If you have previously deployed a tool then it can be helpful to check that the configuration is still in-place. This is especially useful where tools are deployed to Canvas instances that get reset regularly (eg beta/test).
npx @oxctl/lti-auto-configuration validate
This command will run the following actions
- Gets the LTI registration from tool support by the registration id.
- Check if the LTI developer key present in the registration by client id.
- Check if the API developer key present in the registration by client id.
If you have previously deployed a tool then it can be helpful to export the configuration to a file. This can be useful when making small changes to an existing tool configuration, or for backing up the configuration.
npx @oxctl/lti-auto-configuration export
This command will run the following actions
- Gets the LTI registration from tool support by the registration.
- Get the LTI Key configuration from Canvas.
- Get the API Key configuration from Canvas (if configured).
- Write out the complete configuration as one blob of JSON.
When multiple tools are deployed you might not know the registration ID you want to edit. This command lists all the registrations installed on a tool support server
npx @oxctl/lti-auto-configuration list
This command will run the following actions
- Gets the all LTI registration from tool support.
- Output the registration IDs for the registrations.
You can override any configuration present in the templates from the command line interface, pass the NODE_CONFIG
environmental variable:
Example of overriding the canvas URL and Token.
NODE_CONFIG='{"canvas_url": "https://new.canvas.url", "canvas_token": "letTheLightShineIn"}' npx @oxctl/lti-auto-configuration create
You can also pass additional configuration on the command line with:
NODE_CONFIG='{"lti_registration_id": "oxford-cm-dev"}' npx @oxctl/lti-auto-configuration export
If you get a message back of Error: Untrusted certificate in chain
then you are probably using a self signed
certificate
for one of the endpoints. You can trust additional certificates with node by using the NODE_EXTRA_CA_CERTS
environmental
variable. If you're using mkcert
then you can add those to the trusted list with:
export NODE_EXTRA_CA_CERTS="$(mkcert -CAROOT)/rootCA.pem"
Releasing newer versions of the package requires to push the package to NPM, you have to be member of the OXCTL
organization and have permissions to push packages. Github Actions with automatically publish a tag to npmjs.com.
Bumping up the version with npm version
and pushing those changes should result in a new release being published.
npm version patch
git push && git push --tags