Sha256: 9b9240b55ff7adb3639223b6c7e42630a979a556d7d97a189c2e81c7786ce760
Contents?: true
Size: 972 Bytes
Versions: 1
Compression:
Stored size: 972 Bytes
Contents
require 'omniauth' require 'omniauth-oauth2' module OmniAuth module Strategies class Openstax < OAuth2 option :name, "openstax" option :client_options, { :site => OpenStax::Connect.configuration.openstax_accounts_url, :authorize_url => "/oauth/authorize" } uid { raw_info["id"] } info do username = raw_info["username"] title = raw_info["title"] first_name = raw_info["first_name"] last_name = raw_info["last_name"] full_name = raw_info["full_name"] || "#{first_name} #{last_name}" full_name = username if full_name.blank? # Changed to conform to the omniauth schema { name: full_name, nickname: username, first_name: first_name, last_name: last_name, title: title } end def raw_info @raw_info ||= access_token.get('/api/users/me.json').parsed end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
openstax_connect-0.1.0 | lib/omniauth/strategies/openstax.rb |