sr-npm 1.7.469 → 1.7.471
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.
package/backend/data.js
CHANGED
|
@@ -336,8 +336,7 @@ async function clearCollections() {
|
|
|
336
336
|
await Promise.all([
|
|
337
337
|
wixData.truncate(COLLECTIONS.CITIES),
|
|
338
338
|
wixData.truncate(COLLECTIONS.AMOUNT_OF_JOBS_PER_DEPARTMENT),
|
|
339
|
-
wixData.truncate(COLLECTIONS.JOBS)
|
|
340
|
-
wixData.truncate(COLLECTIONS.SECRET_MANAGER_MIRROR)
|
|
339
|
+
wixData.truncate(COLLECTIONS.JOBS)
|
|
341
340
|
]);
|
|
342
341
|
console.log("cleared collections successfully");
|
|
343
342
|
}
|
|
@@ -380,6 +379,8 @@ async function fillSecretManagerMirror() {
|
|
|
380
379
|
}
|
|
381
380
|
|
|
382
381
|
|
|
382
|
+
|
|
383
|
+
|
|
383
384
|
module.exports = {
|
|
384
385
|
syncJobsFast,
|
|
385
386
|
referenceJobs,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const { fetch } = require('wix-fetch');
|
|
2
|
-
const {
|
|
3
|
-
const {
|
|
2
|
+
const { TEMPLATE_TYPE,TOKEN_NAME } = require('./collectionConsts');
|
|
3
|
+
const { getTokenFromCMS,getApiKeys } = require('./secretsData');
|
|
4
4
|
async function makeSmartRecruitersRequest(path,templateType) {
|
|
5
5
|
const baseUrl = 'https://api.smartrecruiters.com';
|
|
6
6
|
const fullUrl = `${baseUrl}${path}`;
|
|
@@ -114,32 +114,10 @@ async function fetchJobDescription(jobId,testObject=undefined) {
|
|
|
114
114
|
}
|
|
115
115
|
|
|
116
116
|
|
|
117
|
-
async function getTokenFromCMS(tokenName) {
|
|
118
|
-
const result = await wixData.query(COLLECTIONS.SECRET_MANAGER_MIRROR).eq('tokenName',tokenName).find();
|
|
119
|
-
if (result.items.length > 0) {
|
|
120
|
-
return result.items[0].tokenValue;
|
|
121
|
-
} else {
|
|
122
|
-
throw new Error(`[getTokenFromCMS], No ${tokenName} found`);
|
|
123
|
-
}
|
|
124
|
-
}
|
|
125
|
-
async function getTemplateTypeFromCMS() {
|
|
126
|
-
const result = await wixData.query(COLLECTIONS.TEMPLATE_TYPE).limit(1).find();
|
|
127
|
-
if (result.items.length > 0) {
|
|
128
|
-
return result.items[0].templateType;
|
|
129
|
-
} else {
|
|
130
|
-
throw new Error('[getTemplateTypeFromCMS], No templateType found');
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
117
|
|
|
134
|
-
async function getApiKeys() {
|
|
135
|
-
const companyId = await getTokenFromCMS(TOKEN_NAME.COMPANY_ID);
|
|
136
|
-
const templateType = await getTemplateTypeFromCMS();
|
|
137
|
-
return {companyId,templateType};
|
|
138
|
-
}
|
|
139
118
|
|
|
140
119
|
module.exports = {
|
|
141
120
|
fetchPositionsFromSRAPI,
|
|
142
121
|
fetchJobDescription,
|
|
143
|
-
getTokenFromCMS,
|
|
144
122
|
makeSmartRecruitersRequest
|
|
145
123
|
};
|
package/backend/secretsData.js
CHANGED
|
@@ -1,22 +1,57 @@
|
|
|
1
1
|
const { secrets } = require("@wix/secrets");
|
|
2
2
|
const { auth } = require('@wix/essentials');
|
|
3
|
+
const { items: wixData } = require('@wix/data');
|
|
4
|
+
const { COLLECTIONS,TOKEN_NAME } = require('./collectionConsts');
|
|
3
5
|
|
|
4
6
|
const getSecretValue = auth.elevate(secrets.getSecretValue);
|
|
5
7
|
|
|
6
8
|
function getSmartToken() {
|
|
7
|
-
return
|
|
9
|
+
return retrieveSecretVal(TOKEN_NAME.SMART_TOKEN)
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
function getCompanyId() {
|
|
13
|
+
return retrieveSecretVal(TOKEN_NAME.COMPANY_ID)
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
async function retrieveSecretVal(tokenName)
|
|
17
|
+
{
|
|
18
|
+
return getSecretValue(tokenName)
|
|
8
19
|
.then((secret) => {
|
|
9
20
|
return secret;
|
|
21
|
+
}).catch(async (error) => {
|
|
22
|
+
console.error("Error retrieving secret value: ", error)
|
|
23
|
+
console.error("Retrying with getTokenFromCMS")
|
|
24
|
+
const secret = await getTokenFromCMS(tokenName);
|
|
25
|
+
return secret
|
|
10
26
|
})
|
|
11
|
-
}
|
|
27
|
+
}
|
|
12
28
|
|
|
13
|
-
function
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
return
|
|
17
|
-
|
|
29
|
+
async function getTokenFromCMS(tokenName) {
|
|
30
|
+
const result = await wixData.query(COLLECTIONS.SECRET_MANAGER_MIRROR).eq('tokenName',tokenName).find();
|
|
31
|
+
if (result.items.length > 0) {
|
|
32
|
+
return result.items[0].tokenValue;
|
|
33
|
+
} else {
|
|
34
|
+
throw new Error(`[getTokenFromCMS], No ${tokenName} found`);
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
async function getTemplateTypeFromCMS() {
|
|
38
|
+
const result = await wixData.query(COLLECTIONS.TEMPLATE_TYPE).limit(1).find();
|
|
39
|
+
if (result.items.length > 0) {
|
|
40
|
+
return result.items[0].templateType;
|
|
41
|
+
} else {
|
|
42
|
+
throw new Error('[getTemplateTypeFromCMS], No templateType found');
|
|
43
|
+
}
|
|
18
44
|
}
|
|
45
|
+
|
|
46
|
+
async function getApiKeys() {
|
|
47
|
+
const companyId = await getTokenFromCMS(TOKEN_NAME.COMPANY_ID);
|
|
48
|
+
const templateType = await getTemplateTypeFromCMS();
|
|
49
|
+
return {companyId,templateType};
|
|
50
|
+
}
|
|
51
|
+
|
|
19
52
|
module.exports = {
|
|
20
53
|
getCompanyId,
|
|
21
|
-
getSmartToken
|
|
54
|
+
getSmartToken,
|
|
55
|
+
getTokenFromCMS,
|
|
56
|
+
getApiKeys
|
|
22
57
|
};
|
package/package.json
CHANGED