Project

rack-lti

0.02
No commit activity in last 3 years
No release in over 3 years
Rack::LTI provides LTI launch and configuration endpoints to your Rack-based application. It handles configuration, authorization, and routing. For more information about LTI, see http://www.imsglobal.org/toolsinteroperability2.cfm.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
~> 5.0
>= 0

Runtime

~> 1.1
>= 0
 Project Readme

Rack::LTI

Build Status

Rack::LTI exposes LTI launch and config URLs in your Rack application, handling authorization, storing launch parameters, and generating config information for consumers.

Installation

Add this line to your application's Gemfile:

gem 'rack-lti'

Usage

Rack::LTI should work with any Rack-based app. This means Rails 3.x and Sinatra, and probably whatever wonky framework you happen to be using.

Rack::LTI is tested on MRI Ruby 1.9 and 2.0, and the 1.9 branches of JRuby and Rubinius. It will not work on any flavor of 1.8; upgrade already.

Rails 3

Add Rack::LTI to your config/application.rb:

class Application < Rails::Application
  config.middleware.use Rack::LTI,
    consumer_key:    ->(key, consumer_id) { 'key' },
    consumer_secret: ->(key, consumer_id) { 'secret' }

    app_path:    '/',
    config_path: '/lti/config.xml',
    launch_path: '/lti/launch',
    redirect: true,

    title:       'My LTI App',
    description: 'My LTI App description',

    nonce_validator: ->(nonce) { !FakeNonceStore.include?(nonce) },
    success: ->(lti_params, request, response) {
      request.session['launch_params'] = lti_params
      response.headers['X-Custom-Header'] = 'value'
    },

    time_limit: 60*60,
    future_time_limit: 60,

    extensions: {
      'canvas.instructure.com' => {
        course_navigation: {
          default: 'enabled',
          text: 'My LTI App'
        }
      }
    },

    custom_params: {
      preferred_name: 'El Tigre Chino'
    }
end

Sinatra

Add Rack::LTI to your app:

class Application < Sinatra::Base
  use Rack::LTI,
    consumer_key:    'my_key',
    consumer_secret: 'my_secret',

    app_path:    '/',
    config_path: '/lti/config.xml',
    launch_path: '/lti/launch',
    redirect: true,

    title:       'My LTI App',
    description: 'My LTI App description',

    nonce_validator: ->(nonce) { !FakeNonceStore.include?(nonce) },
    success: ->(lti_params, request, response) {
      request.session['launch_params'] = lti_params
      response.headers['X-Custom-Header'] = 'value'
    },

    time_limit: 60*60,
    future_time_limit: 60

    extensions: {
      'canvas.instructure.com' => {
        course_navigation: {
          default: 'enabled',
          text: 'My LTI App'
        }
      }
    },

    custom_params: {
      preferred_name: 'El Tigre Chino'
    }
end

Configuration

Rack::LTI takes either a configuration hash or block at initialization. Allowed values are:

  • consumer_key The consumer_key to check against the key given at launch. This value can be a string or a lambda. If a lambda, it is passed the key used by the consumer as well as their tool_consumer_instance_guid.
  • consumer_secret The consumer_secret to check against the secret given at launch. Like the consumer key, this value can be a string or a lambda. If a lambda, it is passed the key and tool_consumer_instance_guid of the consumer.
  • app_path The path to redirect to on a successful launch. This should be the main page of your application. Defaults to '/'.
  • config_path The path to serve LTI config XML from. Defaults to '/lti/config.xml'.
  • launch_path The path to receive LTI launch requests at. Defaults to '/lti/launch'.
  • redirect If true, redirect to the app_path. If false, pass the launch request through to the application. If false, app_path is not used. Defaults to true.
  • title The title of your LTI application.
  • description The description of your LTI application.
  • nonce_validator A lambda used to validate the current request's nonce. It is passed the nonce to verify. If not provided, all nonces are allowed.
  • time_limit The past time limit, inclusive and in seconds, to consider requests valid within. If not passed, the default is 3600 seconds (one hour).
  • future_time_limit The future time limit, inclusive and in seconds, to consider requests valid within. If not passed, all future timestamps are accepted as valid.
  • success A lambda called on successful launch. It is passed the launch params as a hash, the Rack Request, and the Rack Response. Can be used to cache params for the current user, find the current user, etc. By default, the launch params are stored in the 'launch_params' key of the session.
  • extensions A hash of extension information to include with the config. Format is platform -> option -> properties. See usage examples above for more detail.
  • custom_params A hash of custom parameters to accept from the client. See usage examples above for more detail.

About LTI

Interested in learning more about LTI? Here are some links to get you started:

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request