Project

pandarus

0.05
No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
Ruby wrapper for Canvas API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.0
~> 0.11
~> 12.0
~> 3.0
~> 3.0
~> 3.0

Runtime

~> 0.5.0
~> 0.0
~> 1.0
 Project Readme

What is Pandarus?

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.

Warning

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.

Installation

gem install pandarus

Example Usage

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 ...>

Documentation

See the Canvas API documentation that Pandarus is built from:

http://api.instructure.com/

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:

  1. All descriptions get lower-cased and spaces become underscores
  2. If there is an 'a', 'an' or 'the' in the description, ignore it
  3. 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 OR get_single_course_accounts because there are two ways to access the API.

Code Generation

To generate the Ruby gem from Canvas's api-docs.json file:

  1. Install Java 1.8 SDK
  2. Install maven (e.g. brew install maven)
  3. Set the environment variable CANVAS_DIR if your canvas checkout is not located at the relative path ../canvas-lms.
  4. Run ./build-all

Directory Structure

  • 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.

Known Issues

  • Group Categories "Assign unassigned members" returns two different object types (GroupMembership or Progress) depending on the input params, which Swagger does not handle.
  • The SisImport object has two fields processing_warnings and processing_errors which are arrays of arrays. This datatype can't be expressed in Swagger.

TODO