yoti 1.5.0 → 1.6.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/ISSUE_TEMPLATE.md +17 -0
- data/CONTRIBUTING.md +0 -29
- data/Gemfile +0 -2
- data/README.md +1 -1
- data/Rakefile +16 -3
- data/lib/yoti.rb +16 -0
- data/lib/yoti/activity_details.rb +21 -2
- data/lib/yoti/client.rb +2 -1
- data/lib/yoti/data_type/age_verification.rb +54 -0
- data/lib/yoti/data_type/attribute.rb +3 -0
- data/lib/yoti/data_type/base_profile.rb +13 -0
- data/lib/yoti/data_type/document_details.rb +88 -0
- data/lib/yoti/data_type/profile.rb +76 -0
- data/lib/yoti/dynamic_share_service/dynamic_scenario.rb +67 -0
- data/lib/yoti/dynamic_share_service/extension/extension.rb +45 -0
- data/lib/yoti/dynamic_share_service/extension/location_constraint_extension.rb +88 -0
- data/lib/yoti/dynamic_share_service/extension/thirdparty_attribute_extension.rb +119 -0
- data/lib/yoti/dynamic_share_service/extension/transactional_flow_extension.rb +47 -0
- data/lib/yoti/dynamic_share_service/policy/dynamic_policy.rb +184 -0
- data/lib/yoti/dynamic_share_service/policy/source_constraint.rb +88 -0
- data/lib/yoti/dynamic_share_service/policy/wanted_anchor.rb +53 -0
- data/lib/yoti/dynamic_share_service/policy/wanted_attribute.rb +85 -0
- data/lib/yoti/dynamic_share_service/share_url.rb +82 -0
- data/lib/yoti/http/profile_request.rb +1 -0
- data/lib/yoti/http/request.rb +15 -0
- data/lib/yoti/http/signed_request.rb +0 -3
- data/lib/yoti/protobuf/main.rb +25 -4
- data/lib/yoti/protobuf/sharepubapi/DataEntry_pb.rb +29 -0
- data/lib/yoti/protobuf/sharepubapi/ExtraData_pb.rb +19 -0
- data/lib/yoti/protobuf/sharepubapi/IssuingAttributes_pb.rb +23 -0
- data/lib/yoti/protobuf/sharepubapi/ThirdPartyAttribute_pb.rb +20 -0
- data/lib/yoti/share/attribute_issuance_details.rb +43 -0
- data/lib/yoti/share/extra_data.rb +25 -0
- data/lib/yoti/ssl.rb +8 -0
- data/lib/yoti/util/age_processor.rb +4 -0
- data/lib/yoti/version.rb +1 -1
- data/rubocop.yml +4 -0
- data/yoti.gemspec +3 -3
- metadata +31 -14
- data/.travis.yml +0 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d1d2cbb57b376a252d798c35820fcee63a46eb99809422441e592ed25bc0f9da
|
4
|
+
data.tar.gz: 1e31e86853d8e419cad2bec50a260d9e26a9c8043299ff6dc10620635c9169c9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 88a932e08b8b73b81ef7153935e984df1d0816c9cfdf0fe912342a57ca8b12a91892aec6b226520cd48f94b660264dca2cadd593ef85008dc2564c97c811a409
|
7
|
+
data.tar.gz: 1b0bdb68176391c56302aff5bda6040aece1d891d6b4491ea605af30029c079de046ea6e03df81c49c99100a1500a0730adfbc6e705c69f18c2a6c96172f0c09
|
@@ -0,0 +1,17 @@
|
|
1
|
+
---
|
2
|
+
name: Custom issue template
|
3
|
+
about: " There's a better way to get help!"
|
4
|
+
title: ''
|
5
|
+
labels: ''
|
6
|
+
assignees: ''
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
#
|
11
|
+
# Wait ✋
|
12
|
+
#
|
13
|
+
# There's a better way to get help!
|
14
|
+
#
|
15
|
+
# Send your questions or issues to sdksupport@yoti.com
|
16
|
+
#
|
17
|
+
#
|
data/CONTRIBUTING.md
CHANGED
@@ -16,35 +16,6 @@ bundle exec guard
|
|
16
16
|
|
17
17
|
Although this gem supports Ruby 2.0.0, in order to use the latest development dependencies you have to use at least Ruby 2.2.2.
|
18
18
|
|
19
|
-
If you wish to compile `.proto` definitions to Ruby, you will need to install [Google's Protocol Buffers](http://code.google.com/p/protobuf).
|
20
|
-
|
21
|
-
### OSX
|
22
|
-
|
23
|
-
```shell
|
24
|
-
brew install protobuf
|
25
|
-
```
|
26
|
-
|
27
|
-
### Ubuntu
|
28
|
-
|
29
|
-
```shell
|
30
|
-
sudo apt-get install -y protobuf
|
31
|
-
```
|
32
|
-
|
33
|
-
This gem relies heavily on the [Ruby Protobuf][] gem. For more information on how Google Protobuf works, please see the [Wiki pages][].
|
34
|
-
|
35
|
-
Compiling the common and attribute `.proto` definitions can be done with the following commands:
|
36
|
-
|
37
|
-
```shell
|
38
|
-
cd lib/yoti/protobuf/v1
|
39
|
-
protoc -I definitions/attribute-public-api/attrpubapi_v1 --ruby_out ./attribute_public_api definitions/attribute-public-api/attrpubapi_v1/*.proto
|
40
|
-
protoc -I definitions/common-public-api/compubapi_v1/ --ruby_out ./common_public_api definitions/common-public-api/compubapi_v1/*.proto
|
41
|
-
```
|
42
|
-
|
43
|
-
These commands will overwrite the current protobuf Ruby modules, which have been modified. If the protobuf files have to be updated, a good idea would be to change them manually, or generate the files in a new location, and compare the content.
|
44
|
-
|
45
|
-
[Ruby Protobuf]: https://github.com/ruby-protobuf/protobuf/
|
46
|
-
[Wiki Pages]: https://github.com/ruby-protobuf/protobuf/wiki
|
47
|
-
|
48
19
|
## Requirements
|
49
20
|
|
50
21
|
### Code coverage
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -270,7 +270,7 @@ The examples can be found in the [examples folder](examples).
|
|
270
270
|
### Ruby on Rails
|
271
271
|
|
272
272
|
1. Create your application in the [Yoti Hub](https://hub.yoti.com)
|
273
|
-
1. Set the application domain of your app to `localhost:
|
273
|
+
1. Set the application domain of your app to `localhost:3001`
|
274
274
|
1. Set the scenario callback URL to `/profile`
|
275
275
|
1. Rename the [.env.example](examples/rails/.env.example) file to `.env`
|
276
276
|
1. Fill in the environment variables in this file with the ones specific to your application (mentioned in the [Configuration](#configuration) section)
|
data/Rakefile
CHANGED
@@ -6,8 +6,21 @@ require 'yaml'
|
|
6
6
|
# Tests #
|
7
7
|
################################
|
8
8
|
|
9
|
-
RSpec::Core::RakeTask.new
|
10
|
-
|
9
|
+
RSpec::Core::RakeTask.new(:spec) do |t|
|
10
|
+
t.pattern = ['spec/yoti']
|
11
|
+
end
|
12
|
+
|
13
|
+
RSpec::Core::RakeTask.new(:test_generators) do |t|
|
14
|
+
t.pattern = ['spec/generators']
|
15
|
+
end
|
16
|
+
|
17
|
+
################################
|
18
|
+
# Coveralls #
|
19
|
+
################################
|
20
|
+
|
21
|
+
require 'coveralls/rake/task'
|
22
|
+
Coveralls::RakeTask.new
|
23
|
+
task test_with_coveralls: [:spec, 'coveralls:push']
|
11
24
|
|
12
25
|
################################
|
13
26
|
# Rubocop #
|
@@ -38,4 +51,4 @@ end
|
|
38
51
|
# Defaults #
|
39
52
|
################################
|
40
53
|
|
41
|
-
task default: %i[spec rubocop]
|
54
|
+
task default: %i[spec test_generators rubocop]
|
data/lib/yoti.rb
CHANGED
@@ -12,6 +12,7 @@ require_relative 'yoti/http/profile_request'
|
|
12
12
|
require_relative 'yoti/http/request'
|
13
13
|
|
14
14
|
require_relative 'yoti/data_type/anchor'
|
15
|
+
require_relative 'yoti/data_type/age_verification'
|
15
16
|
require_relative 'yoti/data_type/base_profile'
|
16
17
|
require_relative 'yoti/data_type/application_profile'
|
17
18
|
require_relative 'yoti/data_type/profile'
|
@@ -21,6 +22,7 @@ require_relative 'yoti/data_type/image'
|
|
21
22
|
require_relative 'yoti/data_type/image_jpeg'
|
22
23
|
require_relative 'yoti/data_type/image_png'
|
23
24
|
require_relative 'yoti/data_type/multi_value'
|
25
|
+
require_relative 'yoti/data_type/document_details'
|
24
26
|
|
25
27
|
require_relative 'yoti/util/age_processor'
|
26
28
|
require_relative 'yoti/util/anchor_processor'
|
@@ -31,6 +33,20 @@ require_relative 'yoti/client'
|
|
31
33
|
|
32
34
|
require_relative 'yoti/protobuf/main'
|
33
35
|
|
36
|
+
require_relative 'yoti/dynamic_share_service/share_url'
|
37
|
+
require_relative 'yoti/dynamic_share_service/policy/wanted_attribute'
|
38
|
+
require_relative 'yoti/dynamic_share_service/policy/wanted_anchor'
|
39
|
+
require_relative 'yoti/dynamic_share_service/policy/source_constraint'
|
40
|
+
require_relative 'yoti/dynamic_share_service/policy/dynamic_policy'
|
41
|
+
require_relative 'yoti/dynamic_share_service/dynamic_scenario'
|
42
|
+
require_relative 'yoti/dynamic_share_service/extension/extension'
|
43
|
+
require_relative 'yoti/dynamic_share_service/extension/location_constraint_extension'
|
44
|
+
require_relative 'yoti/dynamic_share_service/extension/transactional_flow_extension'
|
45
|
+
require_relative 'yoti/dynamic_share_service/extension/thirdparty_attribute_extension'
|
46
|
+
|
47
|
+
require_relative 'yoti/share/extra_data'
|
48
|
+
require_relative 'yoti/share/attribute_issuance_details'
|
49
|
+
|
34
50
|
# The main module namespace of the Yoti gem
|
35
51
|
module Yoti
|
36
52
|
class << self
|
@@ -1,4 +1,5 @@
|
|
1
1
|
require 'net/http'
|
2
|
+
require 'time'
|
2
3
|
|
3
4
|
module Yoti
|
4
5
|
#
|
@@ -60,6 +61,11 @@ module Yoti
|
|
60
61
|
#
|
61
62
|
# The age under/over attribute
|
62
63
|
#
|
64
|
+
# @deprecated 2.0.0 - replaced by:
|
65
|
+
# - Yoti::Profile#age_verifications
|
66
|
+
# - Yoti::Profile#find_age_over_verification
|
67
|
+
# - Yoti::Profile#find_age_under_verification
|
68
|
+
#
|
63
69
|
# @return [Boolean]
|
64
70
|
#
|
65
71
|
attr_reader :age_verified
|
@@ -78,11 +84,21 @@ module Yoti
|
|
78
84
|
#
|
79
85
|
attr_reader :timestamp
|
80
86
|
|
87
|
+
#
|
88
|
+
# Extra data
|
89
|
+
#
|
90
|
+
# @return [ExtraData]
|
91
|
+
#
|
92
|
+
attr_reader :extra_data
|
93
|
+
|
81
94
|
#
|
82
95
|
# @param receipt [Hash] the receipt from the API request
|
83
96
|
# @param decrypted_profile [Object] Protobuf AttributeList decrypted object containing the profile attributes
|
97
|
+
# @param decrypted_application_profile [Object] Protobuf AttributeList decrypted object containing profile attributes for the application profile
|
98
|
+
# @param extra_data [Yoti::Share::ExtraData|nil] Processed extra data object or nil
|
99
|
+
# if absent from the receipt
|
84
100
|
#
|
85
|
-
def initialize(receipt, decrypted_profile = nil, decrypted_application_profile = nil)
|
101
|
+
def initialize(receipt, decrypted_profile = nil, decrypted_application_profile = nil, extra_data = nil)
|
86
102
|
@remember_me_id = receipt['remember_me_id']
|
87
103
|
@user_id = @remember_me_id
|
88
104
|
@receipt_id = receipt['receipt_id']
|
@@ -91,6 +107,7 @@ module Yoti
|
|
91
107
|
@timestamp = receipt['timestamp'] ? Time.parse(receipt['timestamp']) : nil
|
92
108
|
@extended_user_profile = process_decrypted_profile(decrypted_profile)
|
93
109
|
@extended_application_profile = process_decrypted_profile(decrypted_application_profile)
|
110
|
+
@extra_data = extra_data
|
94
111
|
@user_profile = @extended_user_profile.map do |name, attribute|
|
95
112
|
[name, attribute.value]
|
96
113
|
end.to_h
|
@@ -99,7 +116,7 @@ module Yoti
|
|
99
116
|
#
|
100
117
|
# The user's structured postal address as JSON
|
101
118
|
#
|
102
|
-
# @deprecated replaced by Profile
|
119
|
+
# @deprecated replaced by Yoti::Profile#structured_postal_address
|
103
120
|
#
|
104
121
|
# @return [Hash]
|
105
122
|
#
|
@@ -178,6 +195,8 @@ module Yoti
|
|
178
195
|
#
|
179
196
|
# Processes age verification
|
180
197
|
#
|
198
|
+
# @deprecated 2.0.0
|
199
|
+
#
|
181
200
|
# @param [Yoti::Protobuf::Attrpubapi::Attribute] attribute
|
182
201
|
#
|
183
202
|
def process_age_verified(attribute)
|
data/lib/yoti/client.rb
CHANGED
@@ -15,10 +15,11 @@ module Yoti
|
|
15
15
|
receipt = Yoti::ProfileRequest.new(encrypted_connect_token).receipt
|
16
16
|
user_profile = Protobuf.user_profile(receipt)
|
17
17
|
application_profile = Protobuf.application_profile(receipt)
|
18
|
+
extra_data = Protobuf.extra_data(receipt)
|
18
19
|
|
19
20
|
return ActivityDetails.new(receipt) if user_profile.nil?
|
20
21
|
|
21
|
-
ActivityDetails.new(receipt, user_profile, application_profile)
|
22
|
+
ActivityDetails.new(receipt, user_profile, application_profile, extra_data)
|
22
23
|
end
|
23
24
|
|
24
25
|
def self.aml_check(aml_profile)
|
@@ -0,0 +1,54 @@
|
|
1
|
+
module Yoti
|
2
|
+
#
|
3
|
+
# Wraps an 'Age Verify/Condition' attribute to provide behaviour specific
|
4
|
+
# to verifying someone's age.
|
5
|
+
#
|
6
|
+
class AgeVerification
|
7
|
+
#
|
8
|
+
# The wrapped profile attribute.
|
9
|
+
#
|
10
|
+
# Use this if you need access to the underlying list of Anchors.
|
11
|
+
#
|
12
|
+
# @return [Yoti::Attribute]
|
13
|
+
#
|
14
|
+
attr_reader :attribute
|
15
|
+
|
16
|
+
#
|
17
|
+
# Whether or not the profile passed the age check.
|
18
|
+
#
|
19
|
+
# @return [Boolean]
|
20
|
+
#
|
21
|
+
attr_reader :result
|
22
|
+
|
23
|
+
#
|
24
|
+
# The type of age check performed, as specified on Yoti Hub.
|
25
|
+
#
|
26
|
+
# Among the possible values are 'age_over' and 'age_under'.
|
27
|
+
#
|
28
|
+
# @return [String]
|
29
|
+
#
|
30
|
+
attr_reader :check_type
|
31
|
+
|
32
|
+
#
|
33
|
+
# The age that was that checked, as specified on Yoti Hub.
|
34
|
+
#
|
35
|
+
# @return [Integer]
|
36
|
+
#
|
37
|
+
attr_reader :age
|
38
|
+
|
39
|
+
#
|
40
|
+
# @param [Yoti::Attribute]
|
41
|
+
#
|
42
|
+
def initialize(attribute)
|
43
|
+
raise(ArgumentError, "'#{attribute.name}' is not a valid age verification") unless /^[^:]+:(?!.*:)[0-9]+$/.match?(attribute.name)
|
44
|
+
|
45
|
+
@attribute = attribute
|
46
|
+
|
47
|
+
split = attribute.name.split(':')
|
48
|
+
@check_type = split[0]
|
49
|
+
|
50
|
+
@age = split[1].to_i
|
51
|
+
@result = attribute.value == 'true'
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
@@ -21,10 +21,13 @@ module Yoti
|
|
21
21
|
POSTAL_ADDRESS = 'postal_address'
|
22
22
|
STRUCTURED_POSTAL_ADDRESS = 'structured_postal_address'
|
23
23
|
DOCUMENT_IMAGES = 'document_images'
|
24
|
+
DOCUMENT_DETAILS = 'document_details'
|
24
25
|
APPLICATION_NAME = 'application_name'
|
25
26
|
APPLICATION_LOGO = 'application_logo'
|
26
27
|
APPLICATION_URL = 'application_url'
|
27
28
|
APPLICATION_RECEIPT_BGCOLOR = 'application_receipt_bgcolor'
|
29
|
+
AGE_OVER = 'age_over:'
|
30
|
+
AGE_UNDER = 'age_under:'
|
28
31
|
|
29
32
|
#
|
30
33
|
# Gets the name of the attribute.
|
@@ -29,5 +29,18 @@ module Yoti
|
|
29
29
|
|
30
30
|
@attributes[attr_name]
|
31
31
|
end
|
32
|
+
|
33
|
+
protected
|
34
|
+
|
35
|
+
#
|
36
|
+
# Find attributes starting with provided name.
|
37
|
+
#
|
38
|
+
# @param [String] name
|
39
|
+
#
|
40
|
+
# @returns [Array]
|
41
|
+
#
|
42
|
+
def find_attributes_starting_with(name)
|
43
|
+
@attributes.select { |key| key.to_s.start_with?(name) }
|
44
|
+
end
|
32
45
|
end
|
33
46
|
end
|
@@ -0,0 +1,88 @@
|
|
1
|
+
module Yoti
|
2
|
+
class DocumentDetails
|
3
|
+
#
|
4
|
+
# @deprecated 2.0.0 pattern is no longer used for validation.
|
5
|
+
#
|
6
|
+
VALIDATION_PATTERN = '^([A-Za-z_]*) ([A-Za-z]{3}) ([A-Za-z0-9]{1}).*$'
|
7
|
+
|
8
|
+
TYPE_INDEX = 0
|
9
|
+
COUNTRY_INDEX = 1
|
10
|
+
NUMBER_INDEX = 2
|
11
|
+
EXPIRATION_INDEX = 3
|
12
|
+
AUTHORITY_INDEX = 4
|
13
|
+
|
14
|
+
#
|
15
|
+
# Type of the document e.g. PASSPORT | DRIVING_LICENCE | NATIONAL_ID | PASS_CARD
|
16
|
+
#
|
17
|
+
# @return [String]
|
18
|
+
#
|
19
|
+
attr_reader :type
|
20
|
+
|
21
|
+
#
|
22
|
+
# ISO-3166-1 alpha-3 country code, e.g. "GBR"
|
23
|
+
#
|
24
|
+
# @return [String]
|
25
|
+
#
|
26
|
+
attr_reader :issuing_country
|
27
|
+
|
28
|
+
#
|
29
|
+
# Document number (may include letters) from the document.
|
30
|
+
#
|
31
|
+
# @return [String]
|
32
|
+
#
|
33
|
+
attr_reader :document_number
|
34
|
+
|
35
|
+
#
|
36
|
+
# Expiration date of the document in DateTime format. If the document does not expire, this
|
37
|
+
# field will not be present. The time part of this DateTime will default to 00:00:00.
|
38
|
+
#
|
39
|
+
# @return [DateTime]
|
40
|
+
#
|
41
|
+
attr_reader :expiration_date
|
42
|
+
|
43
|
+
#
|
44
|
+
# Can either be a country code (for a state), or the name of the issuing authority.
|
45
|
+
#
|
46
|
+
# @return [String]
|
47
|
+
#
|
48
|
+
attr_reader :issuing_authority
|
49
|
+
|
50
|
+
#
|
51
|
+
# @param [String] value
|
52
|
+
#
|
53
|
+
def initialize(value)
|
54
|
+
parse_value(value)
|
55
|
+
end
|
56
|
+
|
57
|
+
private
|
58
|
+
|
59
|
+
#
|
60
|
+
# Parses provided value into separate attributes
|
61
|
+
#
|
62
|
+
# @param [String] value
|
63
|
+
#
|
64
|
+
def parse_value(value)
|
65
|
+
attributes = value.split(/ /)
|
66
|
+
raise(ArgumentError, "Invalid value for #{self.class.name}") if attributes.length < 3 || attributes.include?('')
|
67
|
+
|
68
|
+
@type = attributes[TYPE_INDEX]
|
69
|
+
@issuing_country = attributes[COUNTRY_INDEX]
|
70
|
+
@document_number = attributes[NUMBER_INDEX]
|
71
|
+
@expiration_date = parse_date_from_string(attributes[EXPIRATION_INDEX]) if attributes.length > 3
|
72
|
+
@issuing_authority = attributes[AUTHORITY_INDEX] if attributes.length > 4
|
73
|
+
end
|
74
|
+
|
75
|
+
#
|
76
|
+
# Converts provided date string into DateTime
|
77
|
+
#
|
78
|
+
# @param [String] date_string
|
79
|
+
#
|
80
|
+
# @return [DateTime]
|
81
|
+
#
|
82
|
+
def parse_date_from_string(date_string)
|
83
|
+
return nil if date_string == '-'
|
84
|
+
|
85
|
+
DateTime.iso8601(date_string)
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
require_relative 'base_profile'
|
2
|
+
|
1
3
|
module Yoti
|
2
4
|
#
|
3
5
|
# Encapsulates Yoti user profile
|
@@ -116,6 +118,47 @@ module Yoti
|
|
116
118
|
get_attribute(Yoti::Attribute::STRUCTURED_POSTAL_ADDRESS)
|
117
119
|
end
|
118
120
|
|
121
|
+
#
|
122
|
+
# Document Details.
|
123
|
+
#
|
124
|
+
# @return [Attribute, nil]
|
125
|
+
#
|
126
|
+
def document_details
|
127
|
+
get_attribute(Yoti::Attribute::DOCUMENT_DETAILS)
|
128
|
+
end
|
129
|
+
|
130
|
+
# Finds all the 'Age Over' and 'Age Under' derived attributes returned with the profile,
|
131
|
+
# and returns them wrapped in AgeVerification objects
|
132
|
+
#
|
133
|
+
# @return [Array]
|
134
|
+
#
|
135
|
+
def age_verifications
|
136
|
+
find_all_age_verifications
|
137
|
+
@age_verifications.values
|
138
|
+
end
|
139
|
+
|
140
|
+
#
|
141
|
+
# Searches for an AgeVerification corresponding to an 'Age Over' check for the given age
|
142
|
+
#
|
143
|
+
# @param [Integer] age
|
144
|
+
#
|
145
|
+
# @return [AgeVerification|nil]
|
146
|
+
#
|
147
|
+
def find_age_over_verification(age)
|
148
|
+
find_age_verification(Yoti::Attribute::AGE_OVER, age)
|
149
|
+
end
|
150
|
+
|
151
|
+
#
|
152
|
+
# Searches for an AgeVerification corresponding to an 'Age Under' check for the given age.
|
153
|
+
#
|
154
|
+
# @param [Integer] age
|
155
|
+
#
|
156
|
+
# @return [AgeVerification|nil]
|
157
|
+
#
|
158
|
+
def find_age_under_verification(age)
|
159
|
+
find_age_verification(Yoti::Attribute::AGE_UNDER, age)
|
160
|
+
end
|
161
|
+
|
119
162
|
protected
|
120
163
|
|
121
164
|
#
|
@@ -134,5 +177,38 @@ module Yoti
|
|
134
177
|
structured_postal_address.verifiers
|
135
178
|
)
|
136
179
|
end
|
180
|
+
|
181
|
+
private
|
182
|
+
|
183
|
+
#
|
184
|
+
# Searches for an AgeVerification corresponding to provided type and age.
|
185
|
+
#
|
186
|
+
# @param [String] type
|
187
|
+
# @param [Integer] age
|
188
|
+
#
|
189
|
+
# @return [Yoti::AgeVerification|nil]
|
190
|
+
#
|
191
|
+
def find_age_verification(type, age)
|
192
|
+
raise(ArgumentError, "#{age} is not a valid age") unless age.is_a?(Integer)
|
193
|
+
|
194
|
+
find_all_age_verifications
|
195
|
+
@age_verifications[type + age.to_s] || nil
|
196
|
+
end
|
197
|
+
|
198
|
+
#
|
199
|
+
# Find all age verifications and put in key value Hash.
|
200
|
+
#
|
201
|
+
def find_all_age_verifications
|
202
|
+
return @age_verifications unless @age_verifications.nil?
|
203
|
+
|
204
|
+
@age_verifications = {}
|
205
|
+
|
206
|
+
find_attributes_starting_with(Yoti::Attribute::AGE_OVER).each do |_name, attribute|
|
207
|
+
@age_verifications[attribute.name] = Yoti::AgeVerification.new(attribute)
|
208
|
+
end
|
209
|
+
find_attributes_starting_with(Yoti::Attribute::AGE_UNDER).each do |_name, attribute|
|
210
|
+
@age_verifications[attribute.name] = Yoti::AgeVerification.new(attribute)
|
211
|
+
end
|
212
|
+
end
|
137
213
|
end
|
138
214
|
end
|