authlete 1.0.4 → 1.0.5

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
  SHA1:
3
- metadata.gz: 766ecfef7e3f59f9abac983e1a2f15fb0907ecce
4
- data.tar.gz: d241c5016a77a2186a52de227dc3db803d6b4c4b
3
+ metadata.gz: a19c57de187aa058751c1c88c0e22d3dd976d247
4
+ data.tar.gz: 05621d552b6b0474603d4f8db89ecf166dd9288a
5
5
  SHA512:
6
- metadata.gz: 7e2bafc4f41c9875f891f62f69094b9c3de757bed86bffe52f10d238d6171505ae725319862dc46fff045983153cd9eea01d87ffaa234131c5a59be4c70964aa
7
- data.tar.gz: f0af767bf175bdaa460fdbde7e20b8e696c1dbe15255b01b26db8ac87b19d02f13ea60fba62cafb014b138156a83d47e8c56416dc205b6b4a13c64139b9fa0ef
6
+ metadata.gz: a68d0b3a5a68678bfb4c918020bd848a212d2269959997e2ccdb09485b649df1fd882b871c7a9bd9d7f86fcd153f2a79262e0c1752d9e62a0380fefd31567907
7
+ data.tar.gz: 49e09fc2d8f9ef1ca84ec67271ffb045cab4a0de3f2a96e9f3577d5249e2dc5a2eea9ce46513d5330d39faed586b4b5cc85776d8c97aafdd0aabb6c1882d7dea
@@ -275,6 +275,12 @@ module Authlete
275
275
  attr_accessor :modifiedAt
276
276
  alias_method :modified_at, :modifiedAt
277
277
  alias_method :modified_at=, :modifiedAt=
278
+
279
+ # The flag that indicates whether the client uses sender authenticated MTLS bound
280
+ # access tokens.
281
+ attr_accessor :mutualTlsSenderConstrainedAccessTokens
282
+ alias_method :mutual_tls_sender_constrained_access_tokens, :mutualTlsSenderConstrainedAccessTokens
283
+ alias_method :mutual_tls_sender_constrained_access_tokens=, :mutualTlsSenderConstrainedAccessTokens=
278
284
 
279
285
  # The special information that extends the client. (ClientExtension)
280
286
  attr_accessor :extension
@@ -288,7 +294,7 @@ module Authlete
288
294
 
289
295
  # Boolean attributes.
290
296
  BOOLEAN_ATTRIBUTES = ::Set.new([
291
- :authTimeRequired, :clientIdAliasEnabled
297
+ :authTimeRequired, :clientIdAliasEnabled, :mutualTlsSenderConstrainedAccessTokens
292
298
  ])
293
299
 
294
300
  # String attributes.
@@ -313,48 +319,49 @@ module Authlete
313
319
 
314
320
  # Mapping from snake cases to camel cases.
315
321
  SNAKE_TO_CAMEL = {
316
- :service_number => :serviceNumber,
317
- :client_id => :clientId,
318
- :client_id_alias => :clientIdAlias,
319
- :client_id_alias_enabled => :clientIdAliasEnabled,
320
- :client_secret => :clientSecret,
321
- :client_type => :clientType,
322
- :redirect_uris => :redirectUris,
323
- :response_types => :responseTypes,
324
- :grant_types => :grantTypes,
325
- :application_type => :applicationType,
326
- :client_name => :clientName,
327
- :client_names => :clientNames,
328
- :logo_uri => :logoUri,
329
- :logo_uris => :logoUris,
330
- :client_uri => :clientUri,
331
- :client_uris => :clientUris,
332
- :policy_uri => :policyUri,
333
- :policy_uris => :policyUris,
334
- :tos_uri => :tosUri,
335
- :tos_uris => :tosUris,
336
- :jwks_uri => :jwksUri,
337
- :sector_identifier => :sectorIdentifier,
338
- :subject_type => :subjectType,
339
- :id_token_sign_alg => :idTokenSignAlg,
340
- :id_token_encryption_alg => :idTokenEncryptionAlg,
341
- :id_token_encryption_enc => :idTokenEncryptionEnc,
342
- :user_info_sign_alg => :userInfoSignAlg,
343
- :user_info_encryption_alg => :userInfoEncryptionAlg,
344
- :user_info_encryption_enc => :userInfoEncryptionEnc,
345
- :request_sign_alg => :requestSignAlg,
346
- :request_encryption_alg => :requestEncryptionAlg,
347
- :request_encryption_enc => :requestEncryptionEnc,
348
- :token_auth_method => :tokenAuthMethod,
349
- :token_auth_sign_alg => :tokenAuthSignAlg,
350
- :default_max_age => :defaultMaxAge,
351
- :default_acrs => :defaultAcrs,
352
- :auth_time_required => :authTimeRequired,
353
- :login_uri => :loginUri,
354
- :request_uris => :requestUris,
355
- :created_at => :createdAt,
356
- :modified_at => :modifiedAt,
357
- :tls_client_auth_subject_dn => :tlsClientAuthSubjectDn
322
+ :service_number => :serviceNumber,
323
+ :client_id => :clientId,
324
+ :client_id_alias => :clientIdAlias,
325
+ :client_id_alias_enabled => :clientIdAliasEnabled,
326
+ :client_secret => :clientSecret,
327
+ :client_type => :clientType,
328
+ :redirect_uris => :redirectUris,
329
+ :response_types => :responseTypes,
330
+ :grant_types => :grantTypes,
331
+ :application_type => :applicationType,
332
+ :client_name => :clientName,
333
+ :client_names => :clientNames,
334
+ :logo_uri => :logoUri,
335
+ :logo_uris => :logoUris,
336
+ :client_uri => :clientUri,
337
+ :client_uris => :clientUris,
338
+ :policy_uri => :policyUri,
339
+ :policy_uris => :policyUris,
340
+ :tos_uri => :tosUri,
341
+ :tos_uris => :tosUris,
342
+ :jwks_uri => :jwksUri,
343
+ :sector_identifier => :sectorIdentifier,
344
+ :subject_type => :subjectType,
345
+ :id_token_sign_alg => :idTokenSignAlg,
346
+ :id_token_encryption_alg => :idTokenEncryptionAlg,
347
+ :id_token_encryption_enc => :idTokenEncryptionEnc,
348
+ :user_info_sign_alg => :userInfoSignAlg,
349
+ :user_info_encryption_alg => :userInfoEncryptionAlg,
350
+ :user_info_encryption_enc => :userInfoEncryptionEnc,
351
+ :request_sign_alg => :requestSignAlg,
352
+ :request_encryption_alg => :requestEncryptionAlg,
353
+ :request_encryption_enc => :requestEncryptionEnc,
354
+ :token_auth_method => :tokenAuthMethod,
355
+ :token_auth_sign_alg => :tokenAuthSignAlg,
356
+ :default_max_age => :defaultMaxAge,
357
+ :default_acrs => :defaultAcrs,
358
+ :auth_time_required => :authTimeRequired,
359
+ :login_uri => :loginUri,
360
+ :request_uris => :requestUris,
361
+ :created_at => :createdAt,
362
+ :modified_at => :modifiedAt,
363
+ :tls_client_auth_subject_dn => :tlsClientAuthSubjectDn,
364
+ :mutual_tls_sender_constrained_access_tokens => :mutualTlsSenderConstrainedAccessTokens
358
365
  }
359
366
 
360
367
  # The constructor
@@ -22,6 +22,9 @@ module Authlete
22
22
  module Model
23
23
  class Scope < Authlete::Model::Hashable
24
24
  include Authlete::Utility
25
+ # The attributes of this scopes. (Pair array)
26
+ attr_accessor :attributes
27
+
25
28
  # The description about this scope. (String)
26
29
  attr_accessor :description
27
30
 
@@ -104,6 +107,10 @@ module Authlete
104
107
  end
105
108
 
106
109
  send("#{key}=", parsed)
110
+ elsif key == :attributes
111
+ @attributes = get_parsed_array(value) do |element|
112
+ Authlete::Model::Pair.parse(element)
113
+ end
107
114
  end
108
115
  end
109
116
 
@@ -139,7 +146,7 @@ module Authlete
139
146
 
140
147
  if authlete_model_simple_attribute?(key) or val.nil?
141
148
  hash[key] = val
142
- elsif val.kind_of?(Array)
149
+ elsif key == :attributes or key == :descriptions
143
150
  hash[key] = val.map { |element| element.to_hash }
144
151
  end
145
152
  end
@@ -312,6 +312,11 @@ module Authlete
312
312
  alias_method :supported_scopes, :supportedScopes
313
313
  alias_method :supported_scopes=, :supportedScopes=
314
314
 
315
+ # The list of supported service profiles. (String array)
316
+ attr_accessor :supportedServiceProfiles
317
+ alias_method :supported_service_profiles, :supportedServiceProfiles
318
+ alias_method :supported_service_profiles=, :supportedServiceProfiles=
319
+
315
320
  # The list of supported SNSes. (Sns array)
316
321
  attr_accessor :supportedSnses
317
322
  alias_method :supported_snses, :supportedSnses
@@ -348,8 +353,14 @@ module Authlete
348
353
  # The key ID to identify a JWK used for user info signature using an
349
354
  # asymmetric key. (String)
350
355
  attr_accessor :userInfoSignatureKeyId
351
- alias_method :user_info_signature_key_id, :userInfoSignatureKeyId
352
- alias_method :user_info_signature_key_id=, :userInfoSignatureKeyId=
356
+ alias_method :user_info_signature_key_id, :userInfoSignatureKeyId
357
+ alias_method :user_info_signature_key_id=, :userInfoSignatureKeyId=
358
+
359
+ # The flag that indicates whether the service offers sender authenticated MTLS bound
360
+ # access tokens.
361
+ attr_accessor :mutualTlsSenderConstrainedAccessTokens
362
+ alias_method :mutual_tls_sender_constrained_access_tokens, :mutualTlsSenderConstrainedAccessTokens
363
+ alias_method :mutual_tls_sender_constrained_access_tokens=, :mutualTlsSenderConstrainedAccessTokens=
353
364
 
354
365
  private
355
366
 
@@ -365,7 +376,8 @@ module Authlete
365
376
  :directIntrospectionEndpointEnabled, :directJwksEndpointEnabled,
366
377
  :directRevocationEndpointEnabled, :directTokenEndpointEnabled,
367
378
  :directUserInfoEndpointEnabled, :errorDescriptionOmitted, :errorUriOmitted,
368
- :pkceRequired, :refreshTokenKept, :singleAccessTokenPerSubject
379
+ :pkceRequired, :refreshTokenKept, :singleAccessTokenPerSubject,
380
+ :mutualTlsSenderConstrainedAccessTokens
369
381
  ])
370
382
 
371
383
  # String attributes.
@@ -383,8 +395,13 @@ module Authlete
383
395
  STRING_ARRAY_ATTRIBUTES = ::Set.new([
384
396
  :supportedAcrs, :supportedClaimLocales, :supportedClaims,
385
397
  :supportedClaimTypes, :supportedDeveloperSnses, :supportedDisplays,
386
- :supportedGrantTypes, :supportedResponseTypes, :supportedSnses,
387
- :supportedTokenAuthMethods, :supportedUiLocales
398
+ :supportedGrantTypes, :supportedResponseTypes, :supportedServiceProfiles,
399
+ :supportedSnses, :supportedTokenAuthMethods, :supportedUiLocales
400
+ ])
401
+
402
+ # SNS credentials array attributes.
403
+ SNS_CREDENTIALS_ARRAY_ATTRIBUTES = ::Set.new([
404
+ :snsCredentials, :developerSnsCredentials
388
405
  ])
389
406
 
390
407
  # Mapping from snake cases to camel cases.
@@ -436,13 +453,15 @@ module Authlete
436
453
  :supported_grant_types => :supportedGrantTypes,
437
454
  :supported_response_types => :supportedResponseTypes,
438
455
  :supported_scopes => :supportedScopes,
456
+ :supported_service_profiles => :supportedServiceProfiles,
439
457
  :supported_snses => :supportedSnses,
440
458
  :supported_token_auth_methods => :supportedTokenAuthMethods,
441
459
  :supported_ui_locales => :supportedUiLocales,
442
460
  :token_endpoint => :tokenEndpoint,
443
461
  :tos_uri => :tosUri,
444
462
  :user_info_endpoint => :userInfoEndpoint,
445
- :user_info_signature_key_id => :userInfoSignatureKeyId
463
+ :user_info_signature_key_id => :userInfoSignatureKeyId,
464
+ :mutual_tls_sender_constrained_access_tokens => :mutualTlsSenderConstrainedAccessTokens
446
465
  }
447
466
 
448
467
  # The constructor
@@ -467,11 +486,14 @@ module Authlete
467
486
  send("#{attr}=", nil)
468
487
  end
469
488
 
489
+ # Set default values to sns credentials array attributes.
490
+ SNS_CREDENTIALS_ARRAY_ATTRIBUTES.each do |attr|
491
+ send("#{attr}=", nil)
492
+ end
493
+
470
494
  # Set default values to special objects.
471
- @developerSnsCredentials = nil
472
- @metadata = nil
473
- @snsCredentials = nil
474
- @supportedScopes = nil
495
+ @metadata = nil
496
+ @supportedScopes = nil
475
497
 
476
498
  # Set attribute values using the given hash.
477
499
  authlete_model_update(hash)
@@ -503,18 +525,17 @@ module Authlete
503
525
 
504
526
  if authlete_model_simple_attribute?(key)
505
527
  send("#{key}=", value)
506
- elsif key == :developerSnsCredentials
507
- @developerSnsCredentials = get_parsed_array(value) do |element|
528
+ elsif SNS_CREDENTIALS_ARRAY_ATTRIBUTES.include?(key)
529
+ # Get an array consisting of "SnsCredentials" objects.
530
+ parsed = get_parsed_array(value) do |element|
508
531
  Authlete::Model::SnsCredentials.parse(element)
509
532
  end
533
+
534
+ send("#{key}=", parsed)
510
535
  elsif key == :metadata
511
536
  @metadata = get_parsed_array(value) do |element|
512
537
  Authlete::Model::Pair.parse(element)
513
538
  end
514
- elsif key == :snsCredentials
515
- @snsCredentials = get_parsed_array(value) do |element|
516
- Authlete::Model::SnsCredentials.parse(element)
517
- end
518
539
  elsif key == :supportedScopes
519
540
  @supportedScopes = get_parsed_array(value) do |element|
520
541
  Authlete::Model::Scope.parse(element)
@@ -16,5 +16,5 @@
16
16
 
17
17
 
18
18
  module Authlete
19
- VERSION = "1.0.4"
19
+ VERSION = "1.0.5"
20
20
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: authlete
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takahiko Kawasaki
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-03-07 00:00:00.000000000 Z
11
+ date: 2018-03-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client