16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# File 'lib/securenative/api_manager.rb', line 16
def verify(event_options)
SecureNative::Log.debug('Verify event call')
event = SecureNative::SDKEvent.new(event_options, @options)
begin
res = @event_manager.send_sync(event, SecureNative::Enums::ApiRoute::VERIFY)
ver_result = JSON.parse(res.body)
if res.code != "200"
if @options.fail_over_strategy == SecureNative::FailOverStrategy::FAIL_OPEN
return SecureNative::VerifyResult.new(risk_level: SecureNative::Enums::RiskLevel::LOW, score: 0, triggers: [])
end
return VerifyResult.new(risk_level: SecureNative::Enums::RiskLevel::HIGH, score: 1, triggers: [])
end
return VerifyResult.new(risk_level: ver_result['riskLevel'], score: ver_result['score'], triggers: ver_result['triggers'])
rescue StandardError => e
SecureNative::Log.debug("Failed to call verify; #{e}")
end
if @options.fail_over_strategy == SecureNative::FailOverStrategy::FAIL_OPEN
return SecureNative::VerifyResult.new(risk_level: SecureNative::Enums::RiskLevel::LOW, score: 0, triggers: [])
end
VerifyResult.new(risk_level: SecureNative::Enums::RiskLevel::HIGH, score: 1, triggers: [])
end
|