wolf_core 1.0.3 → 1.0.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 467718ebaa55cd285ad3ad48f6fe81f5761babc4fc57b572a0ef3b0ed4a2d1d3
4
- data.tar.gz: 919e616942a92e41fca97a5a1c691d981ef1828854bae48884f6a5ac92953170
3
+ metadata.gz: c0e3cc6599cc90e949b7d9ddde2cfa15bc9f63dcbd380ca5e5f2ee4acc8a0756
4
+ data.tar.gz: ac1c8315bbf24077e387eef1c6ff0dfc9cf007dc6d98e91c6d677fc99bbe4ff5
5
5
  SHA512:
6
- metadata.gz: 0a8bec56f698622cec3d3762a54c068c036441c7246d809f061035da2f6ad56c3e4d7c374beb53b888d3dd5a01d0181c996f4b2ed880e4c0bce1e91b7ab7ddc4
7
- data.tar.gz: 510ebc0e39ad8be34b13a204e0110496967dd5b6bebf9eeed4a85f38b49e059c32929b8fe008eddbe50810daed232607506ba2b190dcf1f28031ad9b4578cfbe
6
+ metadata.gz: 74ea58ec0cdeaa230ce9778c5960e445504e7f18f985cb9eca85c0772da1753caeba672f141b800aaf3ecc2a5c59f4acc3192e8710de04ef1a189a6ba6686db6
7
+ data.tar.gz: f560892556880ba27792590fee58502125488f15dc98e85719bf2a90179105ff593e38e7af965a50dd53f44645fc14c31147572564345a40317eee6397c1bf2b
@@ -5,39 +5,40 @@ module WolfCore
5
5
 
6
6
  def fetch_jobseeker!(wolf_token:, jobseeker_id:, tenant:, wolf_platform_url:, error_message:)
7
7
  response = safe_http_get(
8
- headers: { 'Authorization' => "Bearer #{wolf_token}" },
8
+ headers: { "Authorization" => "Bearer #{wolf_token}" },
9
9
  url: "#{wolf_platform_url}/api/v2/jobseekers/#{jobseeker_id}",
10
10
  query: { tenant: tenant },
11
- error_message: error_message,
11
+ error_message: error_message
12
12
  )
13
13
  response_body = response.body
14
- response_body.dig('data', 'table', 'jobseeker')
14
+ response_body.dig("data", "table", "jobseeker")
15
15
  end
16
16
 
17
17
  def fetch_jobseeker(wolf_token:, jobseeker_id:, tenant:, wolf_platform_url:)
18
- response = http_get(
19
- headers: { 'Authorization' => "Bearer #{wolf_token}" },
18
+ response = parsed_http_get(
19
+ headers: { "Authorization" => "Bearer #{wolf_token}" },
20
20
  url: "#{wolf_platform_url}/api/v2/jobseekers/#{jobseeker_id}",
21
- query: { tenant: tenant },
21
+ query: { tenant: tenant }
22
22
  )
23
23
  response_body = response.body
24
24
  return unless response_body.instance_of?(Hash)
25
- response_body.dig('data', 'table', 'jobseeker')
25
+
26
+ response_body.dig("data", "table", "jobseeker")
26
27
  end
27
28
 
28
29
  def create_jobseeker!(wolf_token:, jobseeker:, tenant:, wolf_platform_url:, error_message:)
29
30
  safe_http_post(
30
- headers: { 'Authorization' => "Bearer #{wolf_token}" },
31
+ headers: { "Authorization" => "Bearer #{wolf_token}" },
31
32
  query: { tenant: tenant },
32
33
  url: "#{wolf_platform_url}/api/v2/jobseekers",
33
34
  body: jobseeker,
34
- error_message: error_message,
35
+ error_message: error_message
35
36
  )
36
37
  end
37
38
 
38
39
  def create_jobseeker(wolf_token:, jobseeker:, tenant:, wolf_platform_url:)
39
- http_post(
40
- headers: { 'Authorization' => "Bearer #{wolf_token}" },
40
+ parsed_http_post(
41
+ headers: { "Authorization" => "Bearer #{wolf_token}" },
41
42
  query: { tenant: tenant },
42
43
  url: "#{wolf_platform_url}/api/v2/jobseekers",
43
44
  body: jobseeker
@@ -46,17 +47,17 @@ module WolfCore
46
47
 
47
48
  def update_jobseeker!(wolf_token:, jobseeker:, tenant:, wolf_platform_url:, error_message:, jobseeker_id:)
48
49
  safe_http_put(
49
- headers: { 'Authorization' => "Bearer #{wolf_token}" },
50
+ headers: { "Authorization" => "Bearer #{wolf_token}" },
50
51
  query: { tenant: tenant },
51
52
  url: "#{wolf_platform_url}/api/v2/jobseekers/#{jobseeker_id}",
52
53
  body: jobseeker,
53
- error_message: error_message,
54
+ error_message: error_message
54
55
  )
55
56
  end
56
57
 
57
58
  def update_jobseeker(wolf_token:, jobseeker:, tenant:, wolf_platform_url:, jobseeker_id:)
58
- http_put(
59
- headers: { 'Authorization' => "Bearer #{wolf_token}" },
59
+ parsed_http_put(
60
+ headers: { "Authorization" => "Bearer #{wolf_token}" },
60
61
  query: { tenant: tenant },
61
62
  url: "#{wolf_platform_url}/api/v2/jobseekers/#{jobseeker_id}",
62
63
  body: jobseeker
@@ -64,4 +65,4 @@ module WolfCore
64
65
  end
65
66
  end
66
67
  end
67
- end
68
+ end
@@ -1,6 +1,7 @@
1
1
  module WolfCore
2
2
  module LambdaFunctionOperations
3
3
  include WolfCore::ExceptionOperations
4
+ include WolfCore::StringUtils
4
5
 
5
6
  def invoke_lambda(function_name:, payload:, invocation_type: nil)
6
7
  WolfCore::LambdaFunctionDataSource.invoke(
@@ -28,20 +29,12 @@ module WolfCore
28
29
 
29
30
  def get_event_params(event)
30
31
  event_body = event['body']
31
- return deep_parse_json(event_body) if event_body.present?
32
- event.with_indifferent_access
33
- end
34
-
35
- def deep_parse_json(input)
36
- while input.is_a?(String)
37
- begin
38
- input = JSON.parse(input)
39
- rescue JSON::ParserError
40
- break
41
- end
32
+ params = if event_body.present?
33
+ deep_parse_json(event_body)
34
+ else
35
+ event
42
36
  end
43
-
44
- input&.with_indifferent_access || {}
37
+ params&.with_indifferent_access
45
38
  end
46
39
 
47
40
  def result_to_response(result)
@@ -19,5 +19,17 @@ module WolfCore
19
19
  def hash_str_to_json(hash_str)
20
20
  hash_str&.gsub('=>', ':')&.gsub('\"', '"')&.gsub('{', '{')&.gsub('}', '}')&.gsub(/(\w+)(?=\s*:)/) { |key| "\"#{key}\"" }
21
21
  end
22
+
23
+ def deep_parse_json(input)
24
+ while input.is_a?(String)
25
+ begin
26
+ input = JSON.parse(input)
27
+ rescue JSON::ParserError
28
+ break
29
+ end
30
+ end
31
+
32
+ input || {}
33
+ end
22
34
  end
23
35
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WolfCore
4
- VERSION = "1.0.3"
4
+ VERSION = "1.0.5"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wolf_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Javier Roncallo
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-10-15 00:00:00.000000000 Z
11
+ date: 2024-10-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty