trustcaptcha-ruby 0.0.1
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
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: d78761eef52835f808e6d3ee33558c690a568aadb9ab1ec4c27620ba05d6a1c5
|
4
|
+
data.tar.gz: 183647f8234e6b834e5ac277ae580d487e353790f1d0cb84dd88abc65fc5a980
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 5257883ec25f2fe55f521879a53a8beefb8d4628a70cf7bfde975bfb1f04e15e95f41cec4e2c6ad94a31eb000b49ebc826ec4943772c60a9b68867a0bf40b981
|
7
|
+
data.tar.gz: 0eca12736d3b9e5144600c52caaefd726590d544bcb4ed5615ceb9d48a6fc4108fdda7ebad7c7e4b68e37d0a3e876b24cceb57dfe5d9a7ec7d3444f6f0452155
|
@@ -0,0 +1,26 @@
|
|
1
|
+
require 'openssl'
|
2
|
+
require 'base64'
|
3
|
+
|
4
|
+
class AesEncryption
|
5
|
+
STANDARD_BLOCK_SIZE = 16
|
6
|
+
|
7
|
+
def self.to_aes_secret_key(key_string)
|
8
|
+
Base64.decode64(key_string)
|
9
|
+
end
|
10
|
+
|
11
|
+
def self.decrypt_to_string(key, encrypted_text)
|
12
|
+
decoded = Base64.decode64(encrypted_text)
|
13
|
+
decrypt(key, decoded)
|
14
|
+
end
|
15
|
+
|
16
|
+
def self.decrypt(key, encrypted_data)
|
17
|
+
iv = encrypted_data[0, STANDARD_BLOCK_SIZE]
|
18
|
+
cipher_text = encrypted_data[STANDARD_BLOCK_SIZE..-1]
|
19
|
+
decipher = OpenSSL::Cipher::AES256.new(:CBC)
|
20
|
+
decipher.decrypt
|
21
|
+
decipher.key = key
|
22
|
+
decipher.iv = iv
|
23
|
+
decrypted = decipher.update(cipher_text) + decipher.final
|
24
|
+
decrypted.force_encoding('UTF-8')
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,51 @@
|
|
1
|
+
require 'net/http'
|
2
|
+
require 'uri'
|
3
|
+
require 'json'
|
4
|
+
require_relative 'aes_encryption'
|
5
|
+
require_relative 'model/verification_token'
|
6
|
+
require_relative 'model/verification_result'
|
7
|
+
|
8
|
+
class CaptchaManager
|
9
|
+
class SecretKeyInvalidException < StandardError; end
|
10
|
+
class TokenDecryptionFailedException < StandardError; end
|
11
|
+
class VerificationTokenInvalidException < StandardError; end
|
12
|
+
class VerificationNotFoundException < StandardError; end
|
13
|
+
|
14
|
+
def self.get_verification_result(base64_secret_key, base64_verification_token)
|
15
|
+
verification_token = get_verification_token(base64_verification_token)
|
16
|
+
secret_key = get_secret_key(base64_secret_key)
|
17
|
+
decrypted_access_token = decrypt_access_token(secret_key, verification_token)
|
18
|
+
fetch_verification_result(verification_token, decrypted_access_token)
|
19
|
+
end
|
20
|
+
|
21
|
+
private
|
22
|
+
|
23
|
+
def self.get_secret_key(base64_secret_key)
|
24
|
+
AesEncryption.to_aes_secret_key(base64_secret_key)
|
25
|
+
rescue StandardError => e
|
26
|
+
raise SecretKeyInvalidException, "Invalid secret key: #{e.message}"
|
27
|
+
end
|
28
|
+
|
29
|
+
def self.get_verification_token(verification_token)
|
30
|
+
VerificationToken.from_base64(verification_token)
|
31
|
+
rescue StandardError => e
|
32
|
+
raise VerificationTokenInvalidException, "Invalid verification token: #{e.message}"
|
33
|
+
end
|
34
|
+
|
35
|
+
def self.decrypt_access_token(secret_key, verification_token)
|
36
|
+
AesEncryption.decrypt_to_string(secret_key, verification_token.encrypted_access_token)
|
37
|
+
rescue StandardError => e
|
38
|
+
raise TokenDecryptionFailedException, "Failed to decrypt access token: #{e.message}"
|
39
|
+
end
|
40
|
+
|
41
|
+
def self.fetch_verification_result(verification_token, access_token)
|
42
|
+
url = URI("#{verification_token.api_endpoint}/verifications/#{verification_token.verification_id}/assessments?accessToken=#{access_token}")
|
43
|
+
response = Net::HTTP.get_response(url)
|
44
|
+
raise VerificationNotFoundException, "Verification not found" if response.code == '404'
|
45
|
+
raise "Failed to retrieve verification result: HTTP #{response.code}" unless response.is_a?(Net::HTTPSuccess)
|
46
|
+
|
47
|
+
VerificationResult.from_json(response.body)
|
48
|
+
rescue StandardError => e
|
49
|
+
raise "Failed to retrieve verification result: #{e.message}"
|
50
|
+
end
|
51
|
+
end
|
@@ -0,0 +1,48 @@
|
|
1
|
+
require 'json'
|
2
|
+
|
3
|
+
class VerificationResult
|
4
|
+
attr_reader :captcha_id, :verification_id, :score, :reason, :mode, :origin, :ip_address,
|
5
|
+
:device_family, :operating_system, :browser, :creation_timestamp,
|
6
|
+
:release_timestamp, :retrieval_timestamp, :verification_passed
|
7
|
+
|
8
|
+
def initialize(data)
|
9
|
+
@captcha_id = data['captchaId']
|
10
|
+
@verification_id = data['verificationId']
|
11
|
+
@score = data['score']
|
12
|
+
@reason = data['reason']
|
13
|
+
@mode = data['mode']
|
14
|
+
@origin = data['origin']
|
15
|
+
@ip_address = data['ipAddress']
|
16
|
+
@device_family = data['deviceFamily']
|
17
|
+
@operating_system = data['operatingSystem']
|
18
|
+
@browser = data['browser']
|
19
|
+
@creation_timestamp = data['creationTimestamp']
|
20
|
+
@release_timestamp = data['releaseTimestamp']
|
21
|
+
@retrieval_timestamp = data['retrievalTimestamp']
|
22
|
+
@verification_passed = data['verificationPassed']
|
23
|
+
end
|
24
|
+
|
25
|
+
def self.from_json(json_data)
|
26
|
+
data = JSON.parse(json_data)
|
27
|
+
new(data)
|
28
|
+
end
|
29
|
+
|
30
|
+
def to_json(*_args)
|
31
|
+
{
|
32
|
+
captchaId: @captcha_id,
|
33
|
+
verificationId: @verification_id,
|
34
|
+
score: @score,
|
35
|
+
reason: @reason,
|
36
|
+
mode: @mode,
|
37
|
+
origin: @origin,
|
38
|
+
ipAddress: @ip_address,
|
39
|
+
deviceFamily: @device_family,
|
40
|
+
operatingSystem: @operating_system,
|
41
|
+
browser: @browser,
|
42
|
+
creationTimestamp: @creation_timestamp,
|
43
|
+
releaseTimestamp: @release_timestamp,
|
44
|
+
retrievalTimestamp: @retrieval_timestamp,
|
45
|
+
verificationPassed: @verification_passed
|
46
|
+
}.to_json
|
47
|
+
end
|
48
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require 'json'
|
2
|
+
require 'securerandom'
|
3
|
+
|
4
|
+
class VerificationToken
|
5
|
+
attr_reader :api_endpoint, :verification_id, :encrypted_access_token
|
6
|
+
|
7
|
+
def initialize(api_endpoint, verification_id, encrypted_access_token)
|
8
|
+
@api_endpoint = api_endpoint
|
9
|
+
@verification_id = verification_id
|
10
|
+
@encrypted_access_token = encrypted_access_token
|
11
|
+
end
|
12
|
+
|
13
|
+
def self.from_base64(base64_string)
|
14
|
+
json_string = Base64.decode64(base64_string)
|
15
|
+
data = JSON.parse(json_string)
|
16
|
+
new(data['apiEndpoint'], data['verificationId'], data['encryptedAccessToken'])
|
17
|
+
end
|
18
|
+
end
|
metadata
ADDED
@@ -0,0 +1,77 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: trustcaptcha-ruby
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Trustcaptcha GmbH
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-06-06 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: json
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: net-http
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description: This gem provides integration with Trustcaptcha for Ruby applications,
|
42
|
+
offering CAPTCHA verification with a focus on security and privacy.
|
43
|
+
email:
|
44
|
+
- mail@trustcaptcha.com
|
45
|
+
executables: []
|
46
|
+
extensions: []
|
47
|
+
extra_rdoc_files: []
|
48
|
+
files:
|
49
|
+
- lib/trustcaptcha/aes_encryption.rb
|
50
|
+
- lib/trustcaptcha/captcha_manager.rb
|
51
|
+
- lib/trustcaptcha/model/verification_result.rb
|
52
|
+
- lib/trustcaptcha/model/verification_token.rb
|
53
|
+
homepage: https://www.trustcaptcha.com
|
54
|
+
licenses:
|
55
|
+
- Apache-2.0
|
56
|
+
metadata:
|
57
|
+
allowed_push_host: https://rubygems.org
|
58
|
+
post_install_message:
|
59
|
+
rdoc_options: []
|
60
|
+
require_paths:
|
61
|
+
- lib
|
62
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
63
|
+
requirements:
|
64
|
+
- - ">="
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: '0'
|
67
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
68
|
+
requirements:
|
69
|
+
- - ">="
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
version: '0'
|
72
|
+
requirements: []
|
73
|
+
rubygems_version: 3.3.7
|
74
|
+
signing_key:
|
75
|
+
specification_version: 4
|
76
|
+
summary: Trustcaptcha library for Ruby
|
77
|
+
test_files: []
|