From eaea93a68b03bf6de20e16a694c1d76c54ec8b53 Mon Sep 17 00:00:00 2001 From: Hugo SUBTIL <ext.sopra.husubtil@grandlyon.com> Date: Wed, 10 Aug 2022 11:36:36 +0200 Subject: [PATCH] fix: account id handling --- src/core/findUserPdl.js | 2 +- src/helpers/getAccountId.js | 12 ------------ src/index.js | 5 +++-- 3 files changed, 4 insertions(+), 15 deletions(-) delete mode 100644 src/helpers/getAccountId.js diff --git a/src/core/findUserPdl.js b/src/core/findUserPdl.js index e7c46bb..8afbd41 100644 --- a/src/core/findUserPdl.js +++ b/src/core/findUserPdl.js @@ -29,7 +29,7 @@ async function findUserPdl( 'Content-Type': 'text/xml;charset=UTF-8', apikey: apiAuthKey, } - + log('info', rechercherPoint(appLogin, name, postalCode, inseeCode, address)) const { response } = await soapRequest({ url: url, headers: sgeHeaders, diff --git a/src/helpers/getAccountId.js b/src/helpers/getAccountId.js deleted file mode 100644 index 5608da1..0000000 --- a/src/helpers/getAccountId.js +++ /dev/null @@ -1,12 +0,0 @@ -function getAccountId() { - try { - return process.env.NODE_ENV === 'development' || - process.env.NODE_ENV === 'test' - ? 'fakeAccountId' - : JSON.parse(process.env.COZY_FIELDS).account - } catch (err) { - throw new Error(`You must provide 'account' in COZY_FIELDS: ${err.message}`) - } -} - -module.exports = { getAccountId } diff --git a/src/index.js b/src/index.js index 91b0514..507e81f 100644 --- a/src/index.js +++ b/src/index.js @@ -33,7 +33,7 @@ const { verifyContract } = require('./core/contractVerification') const { terminateContract } = require('./core/contractTermination') const { getContractStartDate } = require('./core/contractStartDate') const { getAccount, saveAccountData } = require('./requests/cozy') -const { getAccountId } = require('./helpers/getAccountId') +const { iSLocal } = require('./helpers/env') moment.locale('fr') // set the language moment.tz.setDefault('Europe/Paris') // set the timezone @@ -48,6 +48,7 @@ let startDailyDateString = startDailyDate.format('YYYY-MM-DD') const startLoadDate = moment().subtract(7, 'day') const endDate = moment() const endDateString = endDate.format('YYYY-MM-DD') +const ACCOUNT_ID = iSLocal() ? 'default_account_id' : 'enedis-sge-grandlyon' module.exports = new BaseKonnector(start) @@ -62,7 +63,7 @@ module.exports = new BaseKonnector(start) */ async function start(fields, cozyParameters) { log('info', 'Konnector configuration ...') - const ACCOUNT_ID = await getAccountId() + const pointId = fields.pointId let baseUrl = fields.wso2BaseUrl let apiAuthKey = fields.apiToken -- GitLab