Pandarus is a Ruby gem client library for the Canvas LMS API. It is auto-generated from the Canvas api documentation.
Included in this repo is also the code generator that has the potential to generate Canvas API support for other programming languages.
Pandarus uses the Swagger 1.2 spec. It depends on the canvas-lms API documentation to be accurate. If the documentation is accurate, the generated code should work. However, there are several known cases where the api documentation cannot conform to the spec, and these cases are broken. We'll try to document known broken cases below.
Please think carefully about whether or not Pandarus makes sense for your use case. It might make sense to write a smaller wrapper around just the api endpoints that you need.
Potential Risks:
- Pandarus relies on the Canvas API documentation to be accurate. Since there's nothing directly tying the API documentation to API response generation, it's possible for these to get out of sync.
- It's also possible for the API documentation to be accurate but malformed w.r.t the Swagger spec, causing problems with code generation. We've considered trying to add a validation step to the build, but don't have firm plans to do so at this time.
- There are cases where the Canvas API returns values (such as arrays of arrays) that are not possible to represent with the Swagger 1.2 spec.
- Pandarus is built against the master branch at a certain point in time, and so could contain both APIs that have not yet been deployed to production, or after some time has passed, could fall behind what is deployed to production.
- Pandarus ignores the "beta" tag on some canvas apis, meaning there is potential for endpoints in Pandarus to change from version to version.
- Pandarus caches all results in memory by default. For querying large
datasets, this can become a problem. Pass
cache_pages: false
to disable this. - We currently don't have a very robust test suite for the generated code. There are a few tests, and then run on every update and pass, which prevents the worst kinds of codegen issues from creeping in, but there are probably still lots of issues with individual endpoints lurking.
Potential Benefits:
- Pandarus is "complete", in that it should contain all documented API endpoints.
- It's pretty easy to get started and play around with the API.
Pandarus was created internally as an experiment, and is only used sporadically internally. As such, it's only updated sporadically as well. It's provided as a way to experiment with the Canvas API, but please understand the risks before using it in a production application.
gem install pandarus
require 'pandarus'
client = Pandarus::Client.new(
prefix: "https://pandamonium.instructure.com/api",
token: "[YOUR API TOKEN HERE]")
client.get_single_course_courses(1)
# => <Pandarus::Course :id=>1 ...>
See the Canvas API documentation that Pandarus is built from:
Pandarus method names are very similar to the descriptions in the documentation. If you follow three rules, you will be able to access the full API:
- All descriptions get lower-cased and spaces become underscores
- If there is an 'a', 'an' or 'the' in the description, ignore it
- If there are two ways to access an API call (such as via
/courses
and/sections
) then add a_courses
or_sections
suffix
Examples:
- The API documentation describes a "Get a single account" API. This becomes
get_single_account
- "Reserve a time slot" becomes
reserve_time_slot
- "Get a single course" becomes EITHER
get_single_course_courses
ORget_single_course_accounts
because there are two ways to access the API.
To generate the Ruby gem from Canvas's api-docs.json file:
- Install Java 1.8 SDK
- Install maven (e.g.
brew install maven
) - Set the environment variable
CANVAS_DIR
if your canvas checkout is not located at the relative path../canvas-lms
. - Run
./build-all
api/
- This is a copy of the api swagger docs generated by canvas. It is autogenerated and should not be modified by hand.clients/
- This is where the Ruby gem lives.clients/ruby/lib/pandarus/{models/*,api_base.rb,models.rb}
are all auto-generated.api_base.rb
is where all the individual api calls live.
codegen/
- This is the scala code that uses Swagger to run the code gen.
- Group Categories "Assign unassigned members" returns two different object
types (
GroupMembership
orProgress
) depending on the input params, which Swagger does not handle. - The SisImport object has two fields
processing_warnings
andprocessing_errors
which are arrays of arrays. This datatype can't be expressed in Swagger.
- Look into validation of the swagger json files with https://github.com/apigee-127/swagger-tools