strongmind-auth 1.1.114 → 1.1.118

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: b54499ae588ab3e6caa39b411255c9e528a89a425acc21b4d5416dcf1b884158
4
- data.tar.gz: 1622da4c1965d63dbec5b02c5b1b5cf4991e14ffbd02d6fc77fd7f97f76d8ac7
3
+ metadata.gz: 54012245095295e150196fc80e2ad10c7a302b2ccf90481b0f9d29045891ad79
4
+ data.tar.gz: 9c960c366e9d77d1dd0f7bc1ec65bb7a5033a64708a9ee9bf20416289d7570c0
5
5
  SHA512:
6
- metadata.gz: d336fb20cf9435f094a83be4a5b893e5aeee7200a97a36cf31f09d808710759ea990378df5211d81336ac11ffa4ce7208997e590951b8c1dcefe4be3ad888801
7
- data.tar.gz: 53eea3b50215d27226a69157e34476895b14e2f6aaa3aab51b30d5d42a3cba134b3204fa0d226af40ff503291b676cc5646a3a0ecf9e9af7d30e7d201a4ca974
6
+ metadata.gz: 0a48379813bce8d02c83994b36cb3e3c797f23a40ccbf873b5a02f12de69b120ba895381c39694340a795093dae9e2d7fd4379bc12edc2a460227e34851b5028
7
+ data.tar.gz: '085d8271e0aac7b174bf8f97fca85bc6657bc05841d9e4da3811805d2400ce752e2365a98fb0c64275f32377faedaa6e45aaff9d6479c7e7af312a11fd9099e8'
@@ -8,7 +8,7 @@ module JwtUtilities
8
8
  payload = decode_jwt(jwt)
9
9
  return false unless payload
10
10
 
11
- scope_valid = scope_valid?(payload,scopes)
11
+ scope_valid = scope_valid?(payload, scopes)
12
12
  nonce_valid = nonce_valid?(payload)
13
13
  condition_key_valid = condition_key_valid?(payload, condition_key)
14
14
  attributes_valid = attributes_valid?(payload, attributes)
@@ -40,9 +40,9 @@ module JwtUtilities
40
40
  {
41
41
  verify_iat: true,
42
42
  verify_iss: true,
43
- verify_aud: true,
44
43
  verify_sub: true,
45
44
  algorithm: 'RS256',
45
+ iss: ENV['IDENTITY_BASE_URL'],
46
46
  leeway: 60
47
47
  }
48
48
  end
@@ -23,9 +23,13 @@ module Users
23
23
  payload, _header = JWT.decode(params[:logout_token], nil, false)
24
24
  user_identity = payload['sub']
25
25
  user = User.find_by(uid: user_identity)
26
- user.invalidate_all_sessions!
27
- invalidate_navbar_cache(user)
28
- render json: {}, status: :ok, headers:
26
+ if user
27
+ user.invalidate_all_sessions!
28
+ invalidate_navbar_cache(user)
29
+ render json: {}, status: :ok, headers:
30
+ else
31
+ render json: {}, status: :bad_request, headers:
32
+ end
29
33
  else
30
34
  render json: {}, status: :bad_request, headers:
31
35
  end
@@ -1,5 +1,5 @@
1
1
  module Strongmind
2
2
  module Auth
3
- VERSION = "1.1.114"
3
+ VERSION = "1.1.118"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: strongmind-auth
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.114
4
+ version: 1.1.118
5
5
  platform: ruby
6
6
  authors:
7
7
  - Team Belding
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-12 00:00:00.000000000 Z
11
+ date: 2024-11-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails