gamora 0.10.0 → 0.11.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 62fcee90396875db0256e297c90dda80546c3268cfecdd4f0e53b7f3c4e68ba8
4
- data.tar.gz: '093571bfd8706530b474c1bf9d046db56cd5a0a53820546afc88f274f528a6a6'
3
+ metadata.gz: e35b31caf66937012f903a789beed12bac91e7e7a809a3e08fd3f1afc69cad19
4
+ data.tar.gz: f4ec146d7b34b0e6f011f923998d4abfefac5c6ebb421eb4b6eb650d40f63898
5
5
  SHA512:
6
- metadata.gz: '0888b96495e6e55f0cc49512a9ec0c8d73d67e839a2dae0207bdb81728032e46436b8a3ce0cdf1daa1352d5ae849a4a723a28fe29d9c6c615b5efbf6dd33cc8c'
7
- data.tar.gz: 3c00a26cce8ad257170853ffc0c6c9fd3a355372f401881b470cb9cdb86d0a94e43b401e5ac94024979faa3636969fc33ec7429f033287d006a6ff5bfa8360aa
6
+ metadata.gz: c71974d1b67d1d7ba20cebc8d5df51b1a948400a18aa74f3e39d37f4cd74f80c8675ab1388d067f8917d69ca31efca6893396a4efcddf3bcc1a95a0241267731
7
+ data.tar.gz: b1c6c5a879a035bc768e4c98a9f67d42d5f8e80aa9e0f42aff1fd6dfeacb02bd2611967b171471f328595cf38a73c676bfd08bc51087614dd83380eeb2a95f6b
data/README.md CHANGED
@@ -115,21 +115,6 @@ Optionally, if you want to do something different when authentication
115
115
  fails, you just need to override the `user_authentication_failed!`
116
116
  method in you controller and customize it as you wish.
117
117
 
118
- ## Cross-Client Identity
119
-
120
- By default, gamora will accept only access tokens that were generating
121
- with the `client_id` in the configuration. If access tokens coming from
122
- other clients have to be accepted, make sure to add their client ids to
123
- the `whitelisted_clients` config option.
124
-
125
- ```ruby
126
- Gamora.setup do |config|
127
- ...
128
-
129
- config.whitelisted_clients = ["OTHER_CLIENT_ID"]
130
- end
131
- ```
132
-
133
118
  ## Caching
134
119
 
135
120
  In order to avoid performing requests to the IDP on each request in the
@@ -42,15 +42,7 @@ module Gamora
42
42
  end
43
43
 
44
44
  def valid_token_data?(token_data)
45
- token_data[:active] && whitelisted_client?(token_data[:client_id])
46
- end
47
-
48
- def whitelisted_client?(client_id)
49
- whitelisted_clients.include?(client_id)
50
- end
51
-
52
- def whitelisted_clients
53
- Configuration.whitelisted_clients | [Configuration.client_id]
45
+ token_data[:active]
54
46
  end
55
47
 
56
48
  def assign_current_user_from_claims(claims)
@@ -19,7 +19,6 @@ module Gamora
19
19
  mattr_accessor :ui_locales, default: -> { I18n.locale }
20
20
  mattr_accessor :userinfo_cache_expires_in, default: 1.minute
21
21
  mattr_accessor :introspect_cache_expires_in, default: 0.seconds
22
- mattr_accessor :whitelisted_clients, default: []
23
22
 
24
23
  def setup
25
24
  yield(self) if block_given?
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Gamora
4
- VERSION = "0.10.0"
4
+ VERSION = "0.11.0"
5
5
  end
@@ -21,5 +21,4 @@ Gamora.setup do |config|
21
21
  # config.ui_locales = -> { I18n.locale }
22
22
  # config.userinfo_cache_expires_in = 1.minute
23
23
  # config.introspect_cache_expires_in = 0.seconds
24
- # config.whitelisted_clients = []
25
24
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gamora
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alejandro Gutiérrez
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-21 00:00:00.000000000 Z
11
+ date: 2024-02-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: oauth2