oidc_provider 0.2.0 → 0.3.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 +5 -5
- data/app/controllers/oidc_provider/sessions_controller.rb +10 -0
- data/app/models/oidc_provider/access_token.rb +2 -5
- data/app/models/oidc_provider/authorization.rb +2 -5
- data/app/models/oidc_provider/id_token.rb +1 -4
- data/config/routes.rb +1 -0
- data/lib/oidc_provider/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 052162d08f6ce2895b4deed51b80a11f0a4a9bc01e82d61b95c5f93ad6080284
|
4
|
+
data.tar.gz: fb94f8fa4d0feb3a134d457ab941faf3c5bdf935359b5dbe593c423c6137524c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f2aae6b2d8794a0d7ae42073a4b83a7db6910a5f9379fe79789347930d47af6fe5275eef2745efe0f34e1f2bfa437304d7df8109a31dae29fbcb061f23f9b294
|
7
|
+
data.tar.gz: d6ea6683c1a05f2fd8d8413ed7a58cb877a04aa9ea4ed55307bd69b6cd63743d790e753530bdce95606b170b19a6cfd353384c3826a1613613bf572dfbd93345
|
@@ -4,11 +4,8 @@ module OIDCProvider
|
|
4
4
|
|
5
5
|
scope :valid, -> { where(arel_table[:expires_at].gteq(Time.now.utc)) }
|
6
6
|
|
7
|
-
|
8
|
-
|
9
|
-
self.token = SecureRandom.hex 32
|
10
|
-
self.expires_at = 1.hour.from_now
|
11
|
-
end
|
7
|
+
attribute :token, :string, default: -> { SecureRandom.hex 32 }
|
8
|
+
attribute :expires_at, :datetime, default: -> { 1.hours.from_now }
|
12
9
|
|
13
10
|
def to_bearer_token
|
14
11
|
Rack::OAuth2::AccessToken::Bearer.new(
|
@@ -6,11 +6,8 @@ module OIDCProvider
|
|
6
6
|
|
7
7
|
scope :valid, -> { where(arel_table[:expires_at].gteq(Time.now.utc)) }
|
8
8
|
|
9
|
-
|
10
|
-
|
11
|
-
self.code = SecureRandom.hex 32
|
12
|
-
self.expires_at = 5.minutes.from_now
|
13
|
-
end
|
9
|
+
attribute :code, :string, default: -> { SecureRandom.hex 32 }
|
10
|
+
attribute :expires_at, :datetime, default: -> { 5.minutes.from_now }
|
14
11
|
|
15
12
|
serialize :scopes, JSON
|
16
13
|
|
@@ -2,10 +2,7 @@ module OIDCProvider
|
|
2
2
|
class IdToken < ApplicationRecord
|
3
3
|
belongs_to :authorization
|
4
4
|
|
5
|
-
|
6
|
-
def set_defaults
|
7
|
-
self.expires_at = 1.hour.from_now
|
8
|
-
end
|
5
|
+
attribute :expires_at, :datetime, default: -> { 1.hour.from_now }
|
9
6
|
|
10
7
|
delegate :account, to: :authorization
|
11
8
|
|
data/config/routes.rb
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
OIDCProvider::Engine.routes.draw do
|
2
2
|
match 'authorizations' => 'authorizations#create', via: [:get, :post]
|
3
3
|
resource :user_info, only: :show
|
4
|
+
get 'sessions/logout', to: 'sessions#destroy', as: :end_session
|
4
5
|
|
5
6
|
post 'tokens', to: proc { |env| OIDCProvider::TokenEndpoint.new.call(env) }
|
6
7
|
get 'jwks.json', as: :jwks, to: proc { |env| [200, {'Content-Type' => 'application/json'}, [OIDCProvider::IdToken.config[:jwk_set].to_json]] }
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: oidc_provider
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- William Carey
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-10-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -53,6 +53,7 @@ files:
|
|
53
53
|
- app/controllers/oidc_provider/concerns/authentication.rb
|
54
54
|
- app/controllers/oidc_provider/concerns/connect_endpoint.rb
|
55
55
|
- app/controllers/oidc_provider/discovery_controller.rb
|
56
|
+
- app/controllers/oidc_provider/sessions_controller.rb
|
56
57
|
- app/controllers/oidc_provider/user_infos_controller.rb
|
57
58
|
- app/models/oidc_provider/access_token.rb
|
58
59
|
- app/models/oidc_provider/application_record.rb
|
@@ -94,7 +95,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
94
95
|
version: '0'
|
95
96
|
requirements: []
|
96
97
|
rubyforge_project:
|
97
|
-
rubygems_version: 2.
|
98
|
+
rubygems_version: 2.7.6.2
|
98
99
|
signing_key:
|
99
100
|
specification_version: 4
|
100
101
|
summary: Uses the openid_connect gem to turn a Rails app into an OpenID Connect provider.
|