This is the OmniAuth strategy for authenticating to G5 via OAuth 2.0.
0.3.1
- G5 Auth client credentials
Add this line to your application's Gemfile:
gem 'omniauth-g5'
And then execute:
$ bundle
Or install it yourself as:
$ gem install omniauth-g5
The strategy must be initialized with a valid client application ID and secret provided by the G5 auth service. For example, to use the G5 strategy with devise:
Devise.setup do |config|
config.omniauth :g5, ENV['G5_AUTH_CLIENT_ID'], ENV['G5_AUTH_CLIENT_SECRET']
end
For more general information about setting up and using OmniAuth, see the official OmniAuth documentation.
After authenticating, OmniAuth returns a hash of information in the Rack
environment under the key omniauth.auth
. The G5 OmniAuth strategy
specifically uses the following subset of the full
auth hash schema:
provider
- this will always be set to the symbol:g5
uid
- the unique identifier for the authenticated userinfo
- a hash containing information about the useremail
- the email address of the authenticated username
- the display name for the user (concatenated first and last names, or an empty string if no name fields have been populated)first_name
- the user's first name (may be nil)last_name
- the user's last name (may be nil)phone
- the user's phone number (may be nil; no specific formatting is enforced)
credentials
- information about the user's access tokentoken
- the access token stringexpires
- boolean indicating whether the access token has an expiry date (always set to true for G5)expires_at
- timestamp of the expiry time
extra
- extra information returned from the auth server, including the raw user data and custom fields specific to G5title
- the user's job title (may be nil)organization_name
- the user's organization name (may be nil). This does not necessarily match the G5 client name. For example, it could be the name of a department or business unit within the client's organization.roles
- the array of roles assigned to the user (may be empty)name
- the name of the role in snakecasetype
- the type of resource to which the role is scoped (e.g. "GLOBAL". "G5Updatable::Client", "G5Updatable::Location")urn
- the urn of the resource of which the role is scoped (may be nil for global roles)
raw_info
- a hash representation of the full JSON response from the G5 auth server
For example:
{"provider"=>:g5,
"uid"=>42,
"info"=>
{"email"=>"test.user@test.host",
"name"=>"Test User",
"first_name"=>"Test",
"last_name"=>"User",
"phone"=>"(555) 555-5555"},
"credentials"=>
{"token"=>"abc123",
"expires_at"=>1430170866,
"expires"=>true},
"extra"=>
{"raw_info"=>
{"id"=>42,
"email"=>"test.user@test.host",
"first_name"=>"Test",
"last_name"=>"User",
"phone_number"=>"(555) 555-5555",
"organization_name"=>"Test Org",
"title"=>"Tester",
"roles"=>[{"name"=>"viewer","type"=>"GLOBAL","urn"=>nil}]},
"title"=>"Tester",
"organization_name"=>"Test Org",
"roles"=>[{"name"=>"viewer","type"=>"GLOBAL","urn"=>nil}]}}
- Maeve Revels / @maeve
- Rob Revels / @sleverbor
- Fork it
- Get it running
- Create your feature branch (
git checkout -b my-new-feature
) - Write your code and specs
- Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
If you find bugs, have feature requests or questions, please file an issue.
Just execute:
$ bundle exec rspec spec
Copyright (c) 2013 G5
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.