istox 0.2.5.2 → 0.2.5.3.pre.51
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +0 -0
- data/.rubocop.yml +0 -0
- data/.solargraph.yml +0 -0
- data/CODE_OF_CONDUCT.md +0 -0
- data/Gemfile +0 -0
- data/README.md +0 -0
- data/Rakefile +0 -0
- data/lib/istox/constants/error.rb +0 -0
- data/lib/istox/helpers/_tmp_07f8e7bcecafce66_common_helper.rb.rb +67 -0
- data/lib/istox/helpers/f_math.rb +0 -0
- data/lib/istox/helpers/graphql_client.rb +0 -0
- data/lib/istox/helpers/gruf_listener_hook.rb +0 -0
- data/lib/istox/helpers/messaging.rb +25 -3
- data/lib/istox/helpers/my_open_struct.rb +0 -0
- data/lib/istox/helpers/order_book_prorate.rb +0 -0
- data/lib/istox/helpers/rate_limit.rb +0 -0
- data/lib/istox/helpers/regex_helper.rb +0 -0
- data/lib/istox/helpers/result_handler.rb +0 -0
- data/lib/istox/helpers/vault.rb +0 -0
- data/lib/istox/interfaces/chainhub/transaction.rb +0 -0
- data/lib/istox/models/blockchain_receipt.rb +0 -0
- data/lib/istox/models/concerns/blockchain_receipt_query.rb +0 -0
- data/lib/istox/version.rb +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0f76254354c787d196965bd5503fefba1ee58f84a7a8cad6d966a0e7611a8d72
|
4
|
+
data.tar.gz: af5c05d1a64325f9c5d90134fa7d1665cb18e89a7560c1dc3884141eb1351b03
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bccd4e68fa2d2033b72998902ccccde5b235e2f757eca076dae20c11bae856e50ea33aca985d8a3c20258ef0b3a448bc4cd789c28a39cb61469b5c87200b59d6
|
7
|
+
data.tar.gz: 6ac27dae6bdda5df087c8631a6d1147433f7834016bb076bb53a53fb9eea49448f83afddbbc6df69f9fa9070b29271dc7dd1b60a7dc528c5cf6d6165215d58cb
|
data/.gitignore
CHANGED
File without changes
|
data/.rubocop.yml
CHANGED
File without changes
|
data/.solargraph.yml
CHANGED
File without changes
|
data/CODE_OF_CONDUCT.md
CHANGED
File without changes
|
data/Gemfile
CHANGED
File without changes
|
data/README.md
CHANGED
File without changes
|
data/Rakefile
CHANGED
File without changes
|
File without changes
|
@@ -0,0 +1,67 @@
|
|
1
|
+
module Istox
|
2
|
+
module CommonHelper
|
3
|
+
def self.to_datetime(input)
|
4
|
+
return nil if input.blank?
|
5
|
+
|
6
|
+
begin
|
7
|
+
is_numeric = true if Integer input
|
8
|
+
rescue StandardError
|
9
|
+
false
|
10
|
+
end
|
11
|
+
|
12
|
+
# is unix timestamp
|
13
|
+
is_numeric ? Time.at(input.to_i).to_datetime : Time.parse(input)
|
14
|
+
end
|
15
|
+
|
16
|
+
def self.to_boolean(input)
|
17
|
+
!(input.blank? || input.to_s.downcase == 'false' || input.to_s.downcase == '0')
|
18
|
+
end
|
19
|
+
|
20
|
+
def self.to_open_struct(model)
|
21
|
+
return nil if model.nil?
|
22
|
+
|
23
|
+
if model.is_a?(Array)
|
24
|
+
model.map do |item|
|
25
|
+
hash = deep_to_h(item).deep_transform_keys { |key| key.to_s.underscore.to_sym }
|
26
|
+
to_recursive_ostruct(hash)
|
27
|
+
end
|
28
|
+
else
|
29
|
+
hash = deep_to_h(model).deep_transform_keys { |key| key.to_s.underscore.to_sym }
|
30
|
+
to_recursive_ostruct(hash)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
def self.to_recursive_ostruct(obj)
|
35
|
+
if obj.is_a?(Hash)
|
36
|
+
::Istox::MyOpenStruct.new(obj.map { |key, val| [key, to_recursive_ostruct(val)] }.to_h)
|
37
|
+
elsif obj.is_a?(Array)
|
38
|
+
obj.map { |o| to_recursive_ostruct(o) }
|
39
|
+
elsif obj.is_a?(OpenStruct)
|
40
|
+
::Istox::MyOpenStruct.new(obj)
|
41
|
+
else # Assumed to be a primitive value
|
42
|
+
obj
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
def self.deep_to_h(obj)
|
47
|
+
if obj.is_a?(Array)
|
48
|
+
obj.map { |r| deep_to_h(r) }
|
49
|
+
elsif obj.is_a?(OpenStruct) || obj.is_a?(Hash) || (obj.methods.include?(:to_h) && obj.present?)
|
50
|
+
obj.to_h.transform_values do |v|
|
51
|
+
if v.is_a?(OpenStruct) || v.is_a?(Array)
|
52
|
+
deep_to_h(v)
|
53
|
+
else
|
54
|
+
v
|
55
|
+
end
|
56
|
+
end
|
57
|
+
else
|
58
|
+
obj
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
def self.get_currency_decimal(currency)
|
63
|
+
return 0 if currency&.downcase == 'jpy'
|
64
|
+
|
65
|
+
2 end
|
66
|
+
end
|
67
|
+
end
|
data/lib/istox/helpers/f_math.rb
CHANGED
File without changes
|
File without changes
|
File without changes
|
@@ -130,7 +130,8 @@ module Istox
|
|
130
130
|
email_data[:copy_emails].each do |ce|
|
131
131
|
next unless ce.present?
|
132
132
|
|
133
|
-
|
133
|
+
# uid and sid are reserved fields that should be not cloned
|
134
|
+
copy_email_data = email_data.clone.except(:sid).except(:uid)
|
134
135
|
|
135
136
|
# if it is just email to cc
|
136
137
|
if ce.is_a? String
|
@@ -148,8 +149,10 @@ module Istox
|
|
148
149
|
next unless ce[:email].present?
|
149
150
|
|
150
151
|
copy_email_data[:email] = ce[:email]
|
151
|
-
|
152
|
-
|
152
|
+
log.info "Checking copy email data after assigning #{copy_email_data.inspect}"
|
153
|
+
log.info "Checking ce #{ce[:params].inspect}"
|
154
|
+
|
155
|
+
copy_email_data = copy_email_data.merge(ce[:params])
|
153
156
|
end
|
154
157
|
|
155
158
|
copy_email_data.delete(:copy_emails)
|
@@ -160,6 +163,25 @@ module Istox
|
|
160
163
|
end
|
161
164
|
template_data_arr.concat(copy_email_data_arr)
|
162
165
|
end
|
166
|
+
|
167
|
+
def push_notification(template_name, template_data_arr)
|
168
|
+
raise ArgumentError, 'Template name and template data arr cannot be empty' if template_name.blank? || template_data_arr.nil?
|
169
|
+
|
170
|
+
return log.info 'Template data is empty, skipping this request' if template_data_arr.empty?
|
171
|
+
|
172
|
+
::Istox::Publisher.manual_publish(
|
173
|
+
exchange: 'message',
|
174
|
+
exchange_type: 'direct',
|
175
|
+
routing_key: 'push_notification.message',
|
176
|
+
message: {
|
177
|
+
type: 'SEND_PUSH_NOTIFICATION',
|
178
|
+
data: {
|
179
|
+
template_name: template_name,
|
180
|
+
template_data_arr_json: template_data_arr.to_json
|
181
|
+
}
|
182
|
+
}
|
183
|
+
)
|
184
|
+
end
|
163
185
|
end
|
164
186
|
end
|
165
187
|
end
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/lib/istox/helpers/vault.rb
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/lib/istox/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: istox
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.5.
|
4
|
+
version: 0.2.5.3.pre.51
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Siong Leng
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-05-
|
11
|
+
date: 2021-05-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: amazing_print
|
@@ -494,6 +494,7 @@ files:
|
|
494
494
|
- lib/istox.rb
|
495
495
|
- lib/istox/constants/error.rb
|
496
496
|
- lib/istox/consumers/blockchain_status_handler.rb
|
497
|
+
- lib/istox/helpers/_tmp_07f8e7bcecafce66_common_helper.rb.rb
|
497
498
|
- lib/istox/helpers/blockchain_service.rb
|
498
499
|
- lib/istox/helpers/bunny_boot.rb
|
499
500
|
- lib/istox/helpers/common_helper.rb
|
@@ -542,11 +543,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
542
543
|
version: '0'
|
543
544
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
544
545
|
requirements:
|
545
|
-
- - "
|
546
|
+
- - ">"
|
546
547
|
- !ruby/object:Gem::Version
|
547
|
-
version:
|
548
|
+
version: 1.3.1
|
548
549
|
requirements: []
|
549
|
-
rubygems_version: 3.
|
550
|
+
rubygems_version: 3.2.11
|
550
551
|
signing_key:
|
551
552
|
specification_version: 4
|
552
553
|
summary: istox backend shared gem
|