spid-es 0.0.37 → 0.0.42

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: b485b1feeb1b83e2924dd51120876189dbe5640bca45b8130213203b5790c495
4
- data.tar.gz: a60a8b7a7179fbae9b10f5c4ee2fe447605127e37bf8ca4b80945683e2594d2b
3
+ metadata.gz: 98963a0fb7909e5e96d105a61d7b3a0c10378b39617dbaadb0c5dfdf6ac8e044
4
+ data.tar.gz: 293a46c2471be93d09a6265d28b053f2fce3271d0380ab3981d435f9268023f2
5
5
  SHA512:
6
- metadata.gz: 9760018b318d2e972e6e6ad4c3d10c27bf40f44e0387bf8c7e3e6fc7852e646f847c4e1c747bd95aa47f6e8dd88d0a84105eba1781880d203221c4af287796e4
7
- data.tar.gz: cd6e83e3eb023f934f1947dbd21e18637f79a9961960c99935ca7f3ea4e1b3ff28bd4cd015737265704eff08e01629b37131e4bab7c3998b53c30a856c8918fa
6
+ metadata.gz: 55da9133c1d43fa72384e17d612c86c81ee0cb88f536991a272285c11d2f4cca582ce346d7288055a73ab97ceaac37104e6aedababba781a60a2d4902d76d6d3
7
+ data.tar.gz: 08569eb6ffca8f6fa3e34e31a0c2972fdd049e721ffc7774081c8d98b3283a0034f43ca9baa9da15fcbb38305eadbe68a6a1196f19003aedc4ab0de24c0835e5
@@ -30,7 +30,7 @@ module Spid::Saml
30
30
  request_doc = Spid::XMLSecurityNew::Document.new
31
31
  request_doc.context[:attribute_quote] = :quote
32
32
  root = request_doc.add_element "saml2p:AuthnRequest", { "xmlns:saml2p" => "urn:oasis:names:tc:SAML:2.0:protocol",
33
- "xmlns:saml" => "urn:oasis:names:tc:SAML:2.0:assertion"
33
+ "xmlns:saml2" => "urn:oasis:names:tc:SAML:2.0:assertion"
34
34
  }
35
35
  root.attributes['ID'] = uuid
36
36
  root.attributes['IssueInstant'] = time
@@ -53,9 +53,9 @@ module Spid::Saml
53
53
  end
54
54
 
55
55
  unless @settings.issuer.blank?
56
- issuer = root.add_element "saml:Issuer"
57
- #tolto NameQualifier, con aggregatore non mettendolo corrispondente all'entity_id non funziona...
58
- #issuer.attributes['NameQualifier'] = ( @settings.aggregato ? @settings.sp_name_qualifier : @settings.issuer )
56
+ issuer = root.add_element "saml2:Issuer", { "xmlns:saml2" => "urn:oasis:names:tc:SAML:2.0:assertion" }
57
+ #l'attributo NameQualifier deve essere presente, non rispetta saml...
58
+ issuer.attributes['NameQualifier'] = ( @settings.aggregato ? @settings.sp_name_qualifier : @settings.issuer )
59
59
  issuer.attributes['Format'] = "urn:oasis:names:tc:SAML:2.0:nameid-format:entity"
60
60
  issuer.text = @settings.issuer #questo valore deve essere uguale al #entityID dei metadata che usa @settings.issuer
61
61
  end
@@ -88,7 +88,7 @@ module Spid::Saml
88
88
  }
89
89
  context_class = []
90
90
  @settings.authn_context.each_with_index{ |context, index|
91
- context_class[index] = requested_context.add_element "saml:AuthnContextClassRef"
91
+ context_class[index] = requested_context.add_element "saml2:AuthnContextClassRef"
92
92
  context_class[index].text = context
93
93
  }
94
94
 
@@ -248,7 +248,9 @@ module Spid
248
248
  if settings
249
249
  idp_metadata = Spid::Saml::Metadata.new(settings).get_idp_metadata
250
250
  end
251
-
251
+ #verifico se sono stati scaricati i metadati dell'idp
252
+ return false if validate_metadata_idp(soft) == false
253
+
252
254
  #carico nei setting l'idp_entity_id
253
255
  entity_descriptor_element = REXML::XPath.first(idp_metadata,"/EntityDescriptor")
254
256
  if !entity_descriptor_element.nil?
@@ -334,6 +336,11 @@ module Spid
334
336
  end
335
337
 
336
338
 
339
+ #validate presenza dei metadata per idp
340
+ def validate_metadata_idp(soft=true)
341
+ return (soft ? false : validation_error("Metadata idp non raggiungibile per #{settings.idp_entity_id}")) if document.blank?
342
+ true
343
+ end
337
344
 
338
345
  # Validates the SAML version (2.0)
339
346
  # If fails, the error is added to the errors array.
@@ -2,7 +2,7 @@ $LOAD_PATH.push File.expand_path('../lib', __FILE__)
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'spid-es'
5
- s.version = '0.0.37'
5
+ s.version = '0.0.42'
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Fabiano Pavan"]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spid-es
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.37
4
+ version: 0.0.42
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fabiano Pavan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-10-21 00:00:00.000000000 Z
11
+ date: 2020-12-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: canonix