wolf_core 0.1.20 → 0.1.21
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: '0274981540a1811180820e729b5b52de812a589c293ab969414930075d247214'
|
4
|
+
data.tar.gz: 504afbef81bf4632d7362189fcb53491256c90fa1f89f1608b4ff661d78a3c8a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 93bc4c4b9e40f81364df19cabed16d0c979d07336278fb4041ab78fc78fdcfb31ae1fd744d022de9b410092f9212b62c3cf04db4a8fbd41c578ea6066c088de5
|
7
|
+
data.tar.gz: bb59ecc1975e2e21fbbba4babb98aa91159bbdbe407e8a76f1d9351d4022a66b1dfa5d0c4c30737d11b80ab657ceca765ff7780dcc3b92abd5411a4c67524951
|
@@ -40,13 +40,9 @@ module WolfCore
|
|
40
40
|
return permitted
|
41
41
|
end
|
42
42
|
|
43
|
-
def
|
43
|
+
def route_event_request(path:, body:)
|
44
44
|
domain_url = ENV['CURRENT_SAM_URL']
|
45
|
-
|
46
|
-
validate_http_response(
|
47
|
-
response: response, message: error_message, error_data: { url: path }
|
48
|
-
)
|
49
|
-
response
|
45
|
+
async_http_post(url: "#{domain_url}/#{path}", body: body)
|
50
46
|
end
|
51
47
|
|
52
48
|
def get_salesforce_access_token
|
@@ -1,9 +1,10 @@
|
|
1
1
|
module WolfCore
|
2
2
|
module HttpOperations
|
3
3
|
include WolfCore::ExceptionOperations
|
4
|
+
include WolfCore::AsyncUtils
|
4
5
|
|
5
6
|
def async_http_get(**args)
|
6
|
-
|
7
|
+
run_async { http_get(**args) }
|
7
8
|
end
|
8
9
|
|
9
10
|
def http_get(url:, headers: {}, query: nil)
|
@@ -11,7 +12,7 @@ module WolfCore
|
|
11
12
|
end
|
12
13
|
|
13
14
|
def async_http_post(**args)
|
14
|
-
|
15
|
+
run_async { http_post(**args) }
|
15
16
|
end
|
16
17
|
|
17
18
|
def http_post(url:, headers: {}, body: nil, query: nil)
|
@@ -19,7 +20,7 @@ module WolfCore
|
|
19
20
|
end
|
20
21
|
|
21
22
|
def async_http_put(**args)
|
22
|
-
|
23
|
+
run_async { http_put(**args) }
|
23
24
|
end
|
24
25
|
|
25
26
|
def http_put(url:, headers: {}, body: nil, query: nil)
|
data/lib/wolf_core/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wolf_core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.21
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Javier Roncallo
|
@@ -70,6 +70,7 @@ files:
|
|
70
70
|
- lib/wolf_core/infrastructure/http_operations.rb
|
71
71
|
- lib/wolf_core/infrastructure/lambda_function_data_source.rb
|
72
72
|
- lib/wolf_core/infrastructure/lambda_function_operations.rb
|
73
|
+
- lib/wolf_core/utils/async_utils.rb
|
73
74
|
- lib/wolf_core/utils/file_utils.rb
|
74
75
|
- lib/wolf_core/utils/result.rb
|
75
76
|
- lib/wolf_core/version.rb
|