wolf_core 1.0.4 → 1.0.5
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: c0e3cc6599cc90e949b7d9ddde2cfa15bc9f63dcbd380ca5e5f2ee4acc8a0756
|
4
|
+
data.tar.gz: ac1c8315bbf24077e387eef1c6ff0dfc9cf007dc6d98e91c6d677fc99bbe4ff5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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: {
|
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(
|
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 =
|
19
|
-
headers: {
|
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
|
-
|
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: {
|
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
|
-
|
40
|
-
headers: {
|
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: {
|
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
|
-
|
59
|
-
headers: {
|
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
|
data/lib/wolf_core/version.rb
CHANGED
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.
|
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-
|
11
|
+
date: 2024-10-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httparty
|