ravelin 0.1.38 → 0.1.42
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/ravelin/authentication_mechanism.rb +4 -0
- data/lib/ravelin/authentication_mechanisms/social.rb +31 -0
- data/lib/ravelin/event.rb +16 -14
- data/lib/ravelin/login.rb +2 -1
- data/lib/ravelin/supplier.rb +30 -0
- data/lib/ravelin/version.rb +1 -1
- data/lib/ravelin.rb +4 -0
- metadata +8 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fa12cde476bee9cbbd88613942bdca7746191a57f9601a0c106635b462c98703
|
4
|
+
data.tar.gz: 6e0773ee2c05982c058f3f3f38c731a7d01e1552b6891285ea196748ee759039
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b5296e27a8c83234c765a6fe7a66a347ec8319a37db8f3d0e7cb93bfff052228810eac8d3d05d13214a35cf8aab12e80d2a76694cc63fd579f6f19e2ba9ac103
|
7
|
+
data.tar.gz: fb0ef69631b4f712f0600f3147c186352359c3371464e8c7d16cd48c79a5e41e403ed3a38082bbc4bdd2ba1de7eaedae532872129282c64630de4232cbea6626
|
@@ -0,0 +1,31 @@
|
|
1
|
+
module Ravelin
|
2
|
+
module AuthenticationMechanisms
|
3
|
+
class Social < RavelinObject
|
4
|
+
PROVIDERS = %w(apple azure facebook google linkedin microsoft okta onelogin ping twitter)
|
5
|
+
FAILURE_REASONS = %w(TIMEOUT UNKNOWN_USERNAME INTERNAL_ERROR RATE_LIMIT SOCIAL_FAILURE BANNED_USER)
|
6
|
+
|
7
|
+
attr_accessor :success, :social_provider, :failure_reason
|
8
|
+
attr_required :success, :social_provider
|
9
|
+
|
10
|
+
def social_provider=(provider)
|
11
|
+
@social_provider = provider.to_s.downcase
|
12
|
+
end
|
13
|
+
|
14
|
+
def failure_reason=(reason)
|
15
|
+
@failure_reason = reason.to_s.upcase
|
16
|
+
end
|
17
|
+
|
18
|
+
def validate
|
19
|
+
super
|
20
|
+
|
21
|
+
if !success && !FAILURE_REASONS.include?(failure_reason)
|
22
|
+
raise ArgumentError.new("Failure reason value must be one of #{FAILURE_REASONS.join(', ')}")
|
23
|
+
end
|
24
|
+
|
25
|
+
if !PROVIDERS.include?(social_provider)
|
26
|
+
raise ArgumentError.new("Social provider value must be one of #{PROVIDERS.join(', ')}")
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
data/lib/ravelin/event.rb
CHANGED
@@ -27,21 +27,23 @@ module Ravelin
|
|
27
27
|
|
28
28
|
def object_classes
|
29
29
|
{
|
30
|
-
ato_login:
|
30
|
+
ato_login: AtoLogin,
|
31
31
|
authentication_mechanism: AuthenticationMechanism,
|
32
|
-
chargeback:
|
33
|
-
customer:
|
34
|
-
ato_reclaim:
|
35
|
-
device:
|
36
|
-
location:
|
37
|
-
login:
|
38
|
-
order:
|
39
|
-
password:
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
32
|
+
chargeback: Chargeback,
|
33
|
+
customer: Customer,
|
34
|
+
ato_reclaim: AtoReclaim,
|
35
|
+
device: Device,
|
36
|
+
location: Location,
|
37
|
+
login: Login,
|
38
|
+
order: Order,
|
39
|
+
password: Password,
|
40
|
+
social: AuthenticationMechanisms::Social,
|
41
|
+
payment_method: PaymentMethod,
|
42
|
+
supplier: Supplier,
|
43
|
+
voucher_redemption: VoucherRedemption,
|
44
|
+
transaction: transaction,
|
45
|
+
label: Label,
|
46
|
+
voucher: Voucher,
|
45
47
|
}
|
46
48
|
end
|
47
49
|
|
data/lib/ravelin/login.rb
CHANGED
@@ -0,0 +1,30 @@
|
|
1
|
+
module Ravelin
|
2
|
+
class Supplier < RavelinObject
|
3
|
+
attr_accessor :supplier_id,
|
4
|
+
:type,
|
5
|
+
:group_id,
|
6
|
+
:group_name,
|
7
|
+
:registration_time,
|
8
|
+
:email,
|
9
|
+
:email_verified_time,
|
10
|
+
:name,
|
11
|
+
:telephone,
|
12
|
+
:telephone_verified_time,
|
13
|
+
:telephone_country,
|
14
|
+
:home_location,
|
15
|
+
:market,
|
16
|
+
:market_country,
|
17
|
+
:level,
|
18
|
+
:employment_type,
|
19
|
+
:transport_type,
|
20
|
+
:category,
|
21
|
+
:tags,
|
22
|
+
:custom
|
23
|
+
|
24
|
+
attr_required :supplier_id, :type
|
25
|
+
|
26
|
+
def home_location=(obj)
|
27
|
+
@home_location = Ravelin::Location.new(obj)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
data/lib/ravelin/version.rb
CHANGED
data/lib/ravelin.rb
CHANGED
@@ -27,6 +27,7 @@ require 'ravelin/app'
|
|
27
27
|
require 'ravelin/payment_method'
|
28
28
|
require 'ravelin/password'
|
29
29
|
require 'ravelin/pre_transaction'
|
30
|
+
require 'ravelin/supplier'
|
30
31
|
require 'ravelin/three_d_secure'
|
31
32
|
require 'ravelin/transaction'
|
32
33
|
require 'ravelin/voucher'
|
@@ -39,6 +40,9 @@ require 'ravelin/response'
|
|
39
40
|
require 'ravelin/client'
|
40
41
|
require 'ravelin/proxy_client'
|
41
42
|
|
43
|
+
require 'ravelin/authentication_mechanisms/social'
|
44
|
+
|
45
|
+
|
42
46
|
module Ravelin
|
43
47
|
@faraday_adapter = Faraday.default_adapter
|
44
48
|
@faraday_timeout = 1
|
metadata
CHANGED
@@ -1,17 +1,17 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ravelin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.42
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sam Levy
|
8
8
|
- Tommy Palmer
|
9
9
|
- Gurkan Oluc
|
10
10
|
- Mathilda Thompson
|
11
|
-
autorequire:
|
11
|
+
autorequire:
|
12
12
|
bindir: exe
|
13
13
|
cert_chain: []
|
14
|
-
date: 2021-10
|
14
|
+
date: 2021-12-10 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: faraday
|
@@ -112,6 +112,7 @@ files:
|
|
112
112
|
- lib/ravelin/ato_login.rb
|
113
113
|
- lib/ravelin/ato_reclaim.rb
|
114
114
|
- lib/ravelin/authentication_mechanism.rb
|
115
|
+
- lib/ravelin/authentication_mechanisms/social.rb
|
115
116
|
- lib/ravelin/chargeback.rb
|
116
117
|
- lib/ravelin/checkout_transaction.rb
|
117
118
|
- lib/ravelin/client.rb
|
@@ -134,6 +135,7 @@ files:
|
|
134
135
|
- lib/ravelin/proxy_client.rb
|
135
136
|
- lib/ravelin/ravelin_object.rb
|
136
137
|
- lib/ravelin/response.rb
|
138
|
+
- lib/ravelin/supplier.rb
|
137
139
|
- lib/ravelin/tag.rb
|
138
140
|
- lib/ravelin/three_d_secure.rb
|
139
141
|
- lib/ravelin/transaction.rb
|
@@ -144,7 +146,7 @@ homepage: https://developer.ravelin.com
|
|
144
146
|
licenses:
|
145
147
|
- MIT
|
146
148
|
metadata: {}
|
147
|
-
post_install_message:
|
149
|
+
post_install_message:
|
148
150
|
rdoc_options: []
|
149
151
|
require_paths:
|
150
152
|
- lib
|
@@ -159,9 +161,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
159
161
|
- !ruby/object:Gem::Version
|
160
162
|
version: '0'
|
161
163
|
requirements: []
|
162
|
-
|
163
|
-
|
164
|
-
signing_key:
|
164
|
+
rubygems_version: 3.0.9
|
165
|
+
signing_key:
|
165
166
|
specification_version: 4
|
166
167
|
summary: Ruby bindings for the Ravelin API
|
167
168
|
test_files: []
|