sr-npm 1.7.456 → 1.7.458

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/consts.js CHANGED
@@ -73,15 +73,6 @@ const TASKS = {
73
73
  }
74
74
 
75
75
 
76
- const TEMPLATE_TYPE = {
77
- INTERNAL: 'INTERNAL',
78
- EXTERNAL: 'PUBLIC',
79
- }
80
-
81
- const TOKEN_NAME = {
82
- COMPANY_ID: 'companyId',
83
- SMART_TOKEN: 'x-smarttoken',
84
- }
85
76
 
86
77
  const TASK_TYPE = {
87
78
  SCHEDULED: 'scheduled',
@@ -92,7 +83,5 @@ const TASK_TYPE = {
92
83
  TASKS_NAMES,
93
84
  TASK_TYPE,
94
85
  TASKS,
95
- QUERY_MAX_LIMIT,
96
- TEMPLATE_TYPE,
97
- TOKEN_NAME,
86
+ QUERY_MAX_LIMIT
98
87
  };
package/backend/data.js CHANGED
@@ -4,7 +4,6 @@ const { createCollectionIfMissing } = require('@hisense-staging/velo-npm/backend
4
4
  const { COLLECTIONS, COLLECTIONS_FIELDS,JOBS_COLLECTION_FIELDS } = require('./collectionConsts');
5
5
  const { chunkedBulkOperation, countJobsPerGivenField, fillCityLocationAndLocationAddress ,prepareToSaveArray,normalizeCityName} = require('./utils');
6
6
  const { getAllPositions } = require('./queries');
7
- const{TEMPLATE_TYPE,TOKEN_NAME} = require('./consts');
8
7
  const { getCompanyId, getSmartToken } = require('./secretsData');
9
8
 
10
9
  function validatePosition(position) {
@@ -347,17 +346,16 @@ async function clearCollections() {
347
346
  }
348
347
 
349
348
  async function markTemplateAsExternal() {
350
- console.log("TEMPLATE_TYPE$#@#$$@#@#$",TEMPLATE_TYPE);
351
349
  await createCollectionIfMissing(COLLECTIONS.TEMPLATE_TYPE, COLLECTIONS_FIELDS.TEMPLATE_TYPE,null,'singleItem');
352
350
  await wixData.save(COLLECTIONS.TEMPLATE_TYPE, {
353
- templateType: TEMPLATE_TYPE.EXTERNAL
351
+ templateType: "PUBLIC"
354
352
  });
355
353
  }
356
354
 
357
355
  async function markTemplateAsInternal() {
358
356
  await createCollectionIfMissing(COLLECTIONS.TEMPLATE_TYPE, COLLECTIONS_FIELDS.TEMPLATE_TYPE,null,'singleItem');
359
357
  await wixData.save(COLLECTIONS.TEMPLATE_TYPE, {
360
- templateType: TEMPLATE_TYPE.INTERNAL
358
+ templateType: "INTERNAL"
361
359
  });
362
360
  }
363
361
 
@@ -366,14 +364,14 @@ async function fillSecretManagerMirror() {
366
364
  const companyId = await getCompanyId();
367
365
  console.log("companyId is : ", companyId);
368
366
  await wixData.insert(COLLECTIONS.SECRET_MANAGER_MIRROR, {
369
- tokenName: TOKEN_NAME.COMPANY_ID,
367
+ tokenName: "companyId",
370
368
  tokenValue: companyId.value
371
369
  });
372
370
  console.log("companyId inserted into the SecretManagerMirror collection");
373
371
  try{
374
372
  const token = await getSmartToken();
375
373
  await wixData.insert(COLLECTIONS.SECRET_MANAGER_MIRROR, {
376
- tokenName: TOKEN_NAME.SMART_TOKEN,
374
+ tokenName: "x-smarttoken",
377
375
  tokenValue: token.value
378
376
  });
379
377
  console.log("x-smarttoken inserted into the SecretManagerMirror collection");
@@ -1,7 +1,6 @@
1
1
  const { fetch } = require('wix-fetch');
2
2
  const { items: wixData } = require('@wix/data');
3
3
  const { COLLECTIONS } = require('./collectionConsts');
4
- const { TEMPLATE_TYPE,TOKEN_NAME } = require('./consts');
5
4
 
6
5
  async function makeSmartRecruitersRequest(path,templateType) {
7
6
  const baseUrl = 'https://api.smartrecruiters.com';
@@ -15,8 +14,8 @@ async function makeSmartRecruitersRequest(path,templateType) {
15
14
  'Cookie': 'AWSALB=GYltFw3fLKortMxHR5vIOT1CuUROyhWNIX/qL8ZnPl1/8mhOcnIsBKYslzmNJPEzSy/jvNbO+6tXpH8yqcpQJagYt57MhbKlLqTSzoNq1G/w7TjOxPGR3UTdXW0d; AWSALBCORS=GYltFw3fLKortMxHR5vIOT1CuUROyhWNIX/qL8ZnPl1/8mhOcnIsBKYslzmNJPEzSy/jvNbO+6tXpH8yqcpQJagYt57MhbKlLqTSzoNq1G/w7TjOxPGR3UTdXW0d'
16
15
  };
17
16
  //here is the only place where we check templateType
18
- if (templateType === TEMPLATE_TYPE.INTERNAL) {
19
- const smartToken = await getTokenFromCMS(TOKEN_NAME.SMART_TOKEN);
17
+ if (templateType === 'INTERNAL') {
18
+ const smartToken = await getSmartTokenFromCMS();
20
19
  headers['x-smarttoken'] = smartToken;
21
20
  }
22
21
  const response = await fetch(fullUrl, {
@@ -106,13 +105,21 @@ async function fetchJobDescription(jobId) {
106
105
  return await makeSmartRecruitersRequest(`/v1/companies/${companyId}/postings/${jobId}`,templateType);
107
106
  }
108
107
 
108
+ async function getCompanyIdFromCMS() {
109
+ const result = await wixData.query(COLLECTIONS.SECRET_MANAGER_MIRROR).eq('tokenName','companyId').find();
110
+ if (result.items.length > 0) {
111
+ return result.items[0].tokenValue;
112
+ } else {
113
+ throw new Error('[getCompanyIdFromCMS], No companyId found');
114
+ }
115
+ }
109
116
 
110
- async function getTokenFromCMS(tokenName) {
111
- const result = await wixData.query(COLLECTIONS.SECRET_MANAGER_MIRROR).eq('tokenName',tokenName).find();
117
+ async function getSmartTokenFromCMS() {
118
+ const result = await wixData.query(COLLECTIONS.SECRET_MANAGER_MIRROR).eq('tokenName','x-smarttoken').find();
112
119
  if (result.items.length > 0) {
113
120
  return result.items[0].tokenValue;
114
121
  } else {
115
- throw new Error(`[getTokenFromCMS], No ${tokenName} found`);
122
+ throw new Error('[getSmartTokenFromCMS], No smarttoken found');
116
123
  }
117
124
  }
118
125
  async function getTemplateTypeFromCMS() {
@@ -125,7 +132,7 @@ async function getTemplateTypeFromCMS() {
125
132
  }
126
133
 
127
134
  async function getApiKeys() {
128
- const companyId = await getTokenFromCMS(TOKEN_NAME.COMPANY_ID);
135
+ const companyId = await getCompanyIdFromCMS();
129
136
  const templateType = await getTemplateTypeFromCMS();
130
137
  return {companyId,templateType};
131
138
  }
@@ -133,5 +140,5 @@ async function getApiKeys() {
133
140
  module.exports = {
134
141
  fetchPositionsFromSRAPI,
135
142
  fetchJobDescription,
136
- getTokenFromCMS
143
+ getCompanyIdFromCMS
137
144
  };
@@ -11,6 +11,7 @@ function getSmartToken() {
11
11
  }
12
12
 
13
13
  function getCompanyId() {
14
+ console.log("Getting the company ID$#%%$# from the ^$%$^^%secrets");
14
15
  return getSecretValue("companyID")
15
16
  .then((secret) => {
16
17
  return secret;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sr-npm",
3
- "version": "1.7.456",
3
+ "version": "1.7.458",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {