multiwoven-integrations 0.15.5 → 0.15.7
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 32c240b4b7351393469c38c3a9350b48314081f8c86c3a47a1f5d2f8f5135551
|
4
|
+
data.tar.gz: 84ba1001f04a3aa82756309df45ab402ce602d1e87c9cca6a34228a6167e5129
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5657d3ad9501a1775fee054880615a0b8d181ce84e9ca05e63e6ad5629c8258266aa652e7aa37f10d817f71ab6df2c9bcb25fb8d6e036ce9eecf5d3bd8196cb6
|
7
|
+
data.tar.gz: 52be9d52894d822e4d003993ea4b5c82706cd740b70eb74ff917bb851bb9f5e48f18f43cfe3896bb996b75a51db2ebed31a70eeab4b057da91c4c1819f5349c5
|
@@ -65,9 +65,10 @@ module Multiwoven
|
|
65
65
|
properties = stream.json_schema[:properties]
|
66
66
|
records.each do |record_object|
|
67
67
|
record = extract_data(record_object, properties)
|
68
|
-
|
68
|
+
args = [stream.name, "Id", record]
|
69
|
+
response = send_data_to_salesforce(args)
|
69
70
|
write_success += 1
|
70
|
-
log_message_array << log_request_response("info",
|
71
|
+
log_message_array << log_request_response("info", args, response)
|
71
72
|
rescue StandardError => e
|
72
73
|
# TODO: add sync_id and sync_run_id to the logs
|
73
74
|
handle_exception(e, {
|
@@ -77,31 +78,14 @@ module Multiwoven
|
|
77
78
|
sync_run_id: @sync_config.sync_run_id
|
78
79
|
})
|
79
80
|
write_failure += 1
|
80
|
-
log_message_array << log_request_response("error",
|
81
|
+
log_message_array << log_request_response("error", args, e.message)
|
81
82
|
end
|
82
83
|
tracking_message(write_success, write_failure, log_message_array)
|
83
84
|
end
|
84
85
|
|
85
|
-
def
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
def send_data_to_salesforce(stream_name, record = {})
|
90
|
-
method_name = "#{@action}!"
|
91
|
-
args = build_args(@action, stream_name, record)
|
92
|
-
response = @client.send(method_name, *args)
|
93
|
-
[args, response]
|
94
|
-
end
|
95
|
-
|
96
|
-
def build_args(action, stream_name, record)
|
97
|
-
case action
|
98
|
-
when :upsert
|
99
|
-
[stream_name, record[:external_key], record]
|
100
|
-
when :destroy
|
101
|
-
[stream_name, record[:id]]
|
102
|
-
else
|
103
|
-
[stream_name, record]
|
104
|
-
end
|
86
|
+
def send_data_to_salesforce(args)
|
87
|
+
method_name = "upsert!"
|
88
|
+
@client.send(method_name, *args)
|
105
89
|
end
|
106
90
|
|
107
91
|
def authenticate_client
|
@@ -59,8 +59,9 @@ module Multiwoven::Integrations::Source
|
|
59
59
|
url_host = connection_config[:url_host]
|
60
60
|
headers = connection_config[:headers]
|
61
61
|
config = connection_config[:config]
|
62
|
+
http_method = connection_config[:http_method]
|
62
63
|
config[:timeout] ||= 30
|
63
|
-
response = send_request(url_host,
|
64
|
+
response = send_request(url_host, http_method, payload, headers, config)
|
64
65
|
process_response(response)
|
65
66
|
rescue StandardError => e
|
66
67
|
handle_exception(e, context: "HTTP MODEL:RUN_MODEL:EXCEPTION", type: "error")
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: multiwoven-integrations
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.15.
|
4
|
+
version: 0.15.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Subin T P
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-11-
|
11
|
+
date: 2024-11-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|