omniauth-oidc 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: e9996bd54e9409eae752578f406963bf696911d0
4
+ data.tar.gz: 459346b91b90d823b7ed31b688fadc3e0869a3ce
5
+ SHA512:
6
+ metadata.gz: 9861e90b55704d0bb1979d6c8d5077982821b07243b36162abff40bbbd200edbb91c745c15f6c658f932059a771eec26a8a8a83c72b9cdf68560449816f46e55
7
+ data.tar.gz: 25e9e3de0ea94fa40faf660c9c3340ddfadb8567b43b54944d0f1618c7cc3fb8c360573db0f8e9df3b304f4b05632416a1c7de5dfcbccf5a04ba2764b54d4233
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.1
5
+ before_install: gem install bundler -v 1.13.5
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in omniauth-oidc.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Maarten Ackermans
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,41 @@
1
+ # Omniauth::Oidc
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/omniauth/oidc`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'omniauth-oidc'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install omniauth-oidc
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/omniauth-oidc.
36
+
37
+
38
+ ## License
39
+
40
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
41
+
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << "test"
6
+ t.libs << "lib"
7
+ t.test_files = FileList['test/**/*_test.rb']
8
+ end
9
+
10
+ task :default => :test
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "omniauth/oidc"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,5 @@
1
+ module OmniAuth
2
+ module OIDC
3
+ VERSION = "1.0.0"
4
+ end
5
+ end
@@ -0,0 +1,2 @@
1
+ require "omniauth/oidc/version"
2
+ require "omniauth/strategies/oidc"
@@ -0,0 +1,182 @@
1
+ require 'omniauth'
2
+ require 'openid_connect'
3
+
4
+ module OmniAuth
5
+ module Strategies
6
+ class OIDC
7
+ include OmniAuth::Strategy
8
+
9
+ option :client_options, {
10
+ client_id: nil,
11
+ identifier: nil,
12
+ secret: nil,
13
+ redirect_uri: nil,
14
+ host: nil,
15
+ jwks_uri: '/jwk'
16
+ }
17
+ option :issuer
18
+ option :discovery, true
19
+ option :client_signing_alg
20
+ option :client_jwk_signing_key
21
+ option :client_x509_signing_key
22
+ option :scope, [:openid]
23
+ option :response_type, :code
24
+ option :state
25
+ option :response_mode, :query
26
+ option :display, nil #, [:page, :popup, :touch, :wap]
27
+ option :prompt, nil #, [:none, :login, :consent, :select_account]
28
+ option :hd, nil
29
+ option :max_age
30
+ option :ui_locales
31
+ option :id_token_hint
32
+ option :login_hint
33
+ option :acr_values
34
+ option :send_nonce, true
35
+ option :send_scope_to_token_endpoint, true
36
+ option :client_auth_method
37
+
38
+ uid { user_info.sub }
39
+
40
+ info do
41
+ {
42
+ name: user_info.name,
43
+ email: user_info.email,
44
+ nickname: user_info.preferred_username,
45
+ first_name: user_info.given_name,
46
+ last_name: user_info.family_name,
47
+ gender: user_info.gender,
48
+ image: user_info.picture,
49
+ phone: user_info.phone_number,
50
+ urls: { website: user_info.website }
51
+ }
52
+ end
53
+
54
+ extra do
55
+ {
56
+ raw_info: user_info.raw_attributes
57
+ }
58
+ end
59
+
60
+ credentials do
61
+ {
62
+ id_token: access_token.id_token,
63
+ token: access_token.access_token,
64
+ refresh_token: access_token.refresh_token,
65
+ expires_in: access_token.expires_in,
66
+ scope: access_token.scope
67
+ }
68
+ end
69
+
70
+ def request_phase
71
+ options.issuer = issuer if options.issuer.blank?
72
+ discover! if options.discovery
73
+ redirect authorize_uri
74
+ end
75
+
76
+ def callback_phase
77
+ error = request.params['error_reason'] || request.params['error']
78
+ if error
79
+ raise CallbackError.new(request.params['error'], request.params['error_description'] || request.params['error_reason'], request.params['error_uri'])
80
+ elsif request.params['state'].to_s.empty? || request.params['state'] != stored_state
81
+ return Rack::Response.new(['401 Unauthorized'], 401).finish
82
+ else
83
+ options.issuer = issuer if options.issuer.blank?
84
+ discover! if options.discovery
85
+ client.authorization_code = request.params[options.response_type.to_s]
86
+ client.redirect_uri = options.client_options.redirect_uri
87
+ access_token
88
+ super
89
+ end
90
+ rescue CallbackError => e
91
+ fail!(:invalid_credentials, e)
92
+ rescue ::Timeout::Error, ::Errno::ETIMEDOUT => e
93
+ fail!(:timeout, e)
94
+ rescue ::SocketError => e
95
+ fail!(:failed_to_connect, e)
96
+ end
97
+
98
+ def client
99
+ @client ||= OpenIDConnect::Client.new(options.client_options)
100
+ end
101
+
102
+ def config
103
+ @config ||= OpenIDConnect::Discovery::Provider::Config.discover!(options.issuer)
104
+ end
105
+
106
+ def discover!
107
+ options.client_options.authorization_endpoint = config.authorization_endpoint
108
+ options.client_options.token_endpoint = config.token_endpoint
109
+ options.client_options.userinfo_endpoint = config.userinfo_endpoint
110
+ options.client_options.jwks_uri = config.jwks_uri
111
+ end
112
+
113
+ def authorize_uri
114
+ client.redirect_uri = options.client_options.redirect_uri
115
+ client.authorization_uri({
116
+ response_type: options.response_type,
117
+ response_mode: options.response_mode,
118
+ scope: options.scope,
119
+ state: generate_state,
120
+ nonce: generate_nonce,
121
+ })
122
+ end
123
+
124
+ def user_info
125
+ @user_info ||= access_token.userinfo!
126
+ end
127
+
128
+ def access_token
129
+ @access_token ||= client.access_token!(
130
+ scope: options.scope,
131
+ client_auth_method: options.client_auth_method
132
+ ).tap do |access_token|
133
+ decode_id_token(access_token.id_token).verify!(
134
+ issuer: options.issuer,
135
+ client_id: options.client_options.identifier,
136
+ nonce: stored_nonce
137
+ )
138
+ end
139
+ end
140
+
141
+ def decode_id_token(id_token)
142
+ OpenIDConnect::ResponseObject::IdToken.decode(id_token, config.jwks)
143
+ end
144
+
145
+ def generate_nonce
146
+ session['omniauth.nonce'] = SecureRandom.hex[16]
147
+ end
148
+
149
+ def stored_nonce
150
+ session.delete('omniauth.nonce')
151
+ end
152
+
153
+ def generate_state
154
+ session['omniauth.state'] = SecureRandom.hex[16]
155
+ end
156
+
157
+ def stored_state
158
+ session.delete('omniauth.state')
159
+ end
160
+
161
+ def session
162
+ @env.nil? ? {} : super
163
+ end
164
+
165
+ class CallbackError < StandardError
166
+ attr_accessor :error, :error_reason, :error_uri
167
+
168
+ def initialize(error, error_reason=nil, error_uri=nil)
169
+ self.error = error
170
+ self.error_reason = error_reason
171
+ self.error_uri = error_uri
172
+ end
173
+
174
+ def message
175
+ [error, error_reason, error_uri].compact.join(' | ')
176
+ end
177
+ end
178
+ end
179
+ end
180
+ end
181
+
182
+ OmniAuth.config.add_camelization('oidc', 'OIDC')
@@ -0,0 +1 @@
1
+ require 'omniauth/oidc'
@@ -0,0 +1,29 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'omniauth/oidc/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "omniauth-oidc"
8
+ spec.version = OmniAuth::OIDC::VERSION
9
+ spec.authors = ["Maarten Ackermans"]
10
+ spec.email = ["maarten.ackermans@gmail.com"]
11
+
12
+ spec.summary = "OpenID Connect adapter for OmniAuth"
13
+ spec.homepage = "https://github.com/mackermans/omniauth-oidc"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
17
+ f.match(%r{^(test|spec|features)/})
18
+ end
19
+ spec.bindir = "exe"
20
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
+ spec.require_paths = ["lib"]
22
+
23
+ spec.add_development_dependency "bundler", "~> 1.13"
24
+ spec.add_development_dependency "rake", "~> 10.0"
25
+ spec.add_development_dependency "minitest", "~> 5.0"
26
+
27
+ spec.add_dependency "omniauth", "~> 1.3"
28
+ spec.add_dependency "openid_connect", "~> 0.12"
29
+ end
metadata ADDED
@@ -0,0 +1,127 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: omniauth-oidc
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Maarten Ackermans
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-10-20 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.13'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.13'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '5.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '5.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: omniauth
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.3'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.3'
69
+ - !ruby/object:Gem::Dependency
70
+ name: openid_connect
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '0.12'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '0.12'
83
+ description:
84
+ email:
85
+ - maarten.ackermans@gmail.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - ".gitignore"
91
+ - ".travis.yml"
92
+ - Gemfile
93
+ - LICENSE.txt
94
+ - README.md
95
+ - Rakefile
96
+ - bin/console
97
+ - bin/setup
98
+ - lib/omniauth-oidc.rb
99
+ - lib/omniauth/oidc.rb
100
+ - lib/omniauth/oidc/version.rb
101
+ - lib/omniauth/strategies/oidc.rb
102
+ - omniauth-oidc.gemspec
103
+ homepage: https://github.com/mackermans/omniauth-oidc
104
+ licenses:
105
+ - MIT
106
+ metadata: {}
107
+ post_install_message:
108
+ rdoc_options: []
109
+ require_paths:
110
+ - lib
111
+ required_ruby_version: !ruby/object:Gem::Requirement
112
+ requirements:
113
+ - - ">="
114
+ - !ruby/object:Gem::Version
115
+ version: '0'
116
+ required_rubygems_version: !ruby/object:Gem::Requirement
117
+ requirements:
118
+ - - ">="
119
+ - !ruby/object:Gem::Version
120
+ version: '0'
121
+ requirements: []
122
+ rubyforge_project:
123
+ rubygems_version: 2.5.1
124
+ signing_key:
125
+ specification_version: 4
126
+ summary: OpenID Connect adapter for OmniAuth
127
+ test_files: []