omniauth-infinum_azure 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 80e79209324b2f50f79a2529c426529d87377548dcc9a1002a9660b2d003b7b6
4
- data.tar.gz: 6cecf9ac45d080db86798919209a2879b34b696f457db7de930c43053fdf4d1e
3
+ metadata.gz: 2500782d665615534b203f408ce34b1a62bb7f20b1e1157b61407c430526cd70
4
+ data.tar.gz: 7efd370f76da93a58066a11d026818f4ce3567eee9eb023143e7c3f3a39f4a9a
5
5
  SHA512:
6
- metadata.gz: de3ed9fd7a7ae3739c21268d00ab26d278beaa89a0b0438f61aca75ea3f326c14a2fc1f9aa1c3e52dbad31bf9c8eb9c79bfdd702a2ea6aaf043bc57035c2832c
7
- data.tar.gz: 2afe31d2dce004f34ed0a9f6df7c87e73a8eed864dd39210d8f00a674f20f7357f15071ee1f65a112a34490c445dc8622b5c119b00a9a2e25b502c492c91decb
6
+ metadata.gz: 9d7c882dffaba7ce875458fea4995af5f4b86818694ab8774d90f983bd49c87f734e360e6ddf239a2937a5f7e672ec2c9b97855440c65d0f117e466d8fd56c0f
7
+ data.tar.gz: e918d56939e2bcbf36646a448d94fe1b72886363da5811fb41a01ca034590e4291e854acbdc583a3789f0a837cc0c6a3eff796d990d0e40db87ee0c532736fad
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.3.0] - 2023-06-14
4
+
5
+ - Add *provider_groups*, *avatar_url*, *deactivated_at* and *employee* to `#info`
6
+
3
7
  ## [0.2.0] - 2023-04-04
4
8
 
5
9
  - Fix issue with Azure payload (emails array changed to email string)
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- omniauth-infinum_azure (0.2.0)
4
+ omniauth-infinum_azure (0.3.0)
5
5
  omniauth-oauth2
6
6
 
7
7
  GEM
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Omniauth
4
4
  module InfinumAzure
5
- VERSION = '0.2.0'
5
+ VERSION = '0.3.0'
6
6
  end
7
7
  end
@@ -1,5 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require 'time'
4
+
3
5
  module OmniAuth
4
6
  module Strategies
5
7
  class InfinumAzure < OmniAuth::Strategies::OAuth2
@@ -43,7 +45,11 @@ module OmniAuth
43
45
  email: raw_info['email'],
44
46
  name: raw_info['name'],
45
47
  first_name: raw_info['given_name'],
46
- last_name: raw_info['family_name']
48
+ last_name: raw_info['family_name'],
49
+ provider_groups: raw_info['extension_userGroup'],
50
+ avatar_url: raw_info['extension_avatarUrl'],
51
+ deactivated_at: deactivated_at,
52
+ employee: employee
47
53
  }
48
54
  end
49
55
 
@@ -59,6 +65,16 @@ module OmniAuth
59
65
  def raw_info
60
66
  @raw_info ||= ::JWT.decode(access_token.token, nil, false).first
61
67
  end
68
+
69
+ private
70
+
71
+ def deactivated_at
72
+ raw_info['extension_deactivated'] == false ? nil : Time.now.utc
73
+ end
74
+
75
+ def employee
76
+ raw_info['extension_userGroup'].include?('employees')
77
+ end
62
78
  end
63
79
  end
64
80
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-infinum_azure
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marko Ćilimković
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-04-04 00:00:00.000000000 Z
11
+ date: 2023-06-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler