From 66fd49c0d822971b25d49dae81a41ea1983458f6 Mon Sep 17 00:00:00 2001
From: Hugo SUBTIL <ext.sopra.husubtil@grandlyon.com>
Date: Wed, 10 Aug 2022 11:13:01 +0200
Subject: [PATCH] fix: add configuration protection

---
 src/index.js | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/src/index.js b/src/index.js
index e3f4794..2b71ee5 100644
--- a/src/index.js
+++ b/src/index.js
@@ -79,6 +79,12 @@ async function start(fields, cozyParameters) {
     sgeLogin = cozyParameters.secret.sgeLogin
   }
 
+  // Prevent missing configuration
+  if (!baseUrl || !apiAuthKey || !contractId || !sgeLogin) {
+    log('error', `Missing configuration secrets`)
+    throw errors.VENDOR_DOWN
+  }
+
   /**
    * If it's first start we have to do the following operations:
    * - verify pdl are matching
-- 
GitLab