From 2708edb46fa76db7bbaba5471370e90a7c1474ca Mon Sep 17 00:00:00 2001
From: Thomas Van Vark <thomas.van.vark@cern.ch>
Date: Mon, 4 Dec 2023 11:16:41 +0100
Subject: [PATCH] Feauture/azure ad

---
 main.py | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/main.py b/main.py
index 37fe223..d5f1040 100644
--- a/main.py
+++ b/main.py
@@ -4,10 +4,21 @@ import requests
 import json
 
 host = os.environ["HOST"]
+caimira_id = os.environ["CAIMIRA_ID"]  # The Application (client) ID of the caimira application
+app_id = os.environ["APP_ID"]  # The Application (client) ID of the secret
+client_secret = os.environ["APP_SECRET"]  # The secret you generated
+tenant_id = os.environ["TENANT_ID"]  # The tenant ID
+scope = [f"api://{caimira_id}/.default"]
 
 
 def login():
-    response = requests.post(f"{host}/login", json={"email": os.environ["EMAIL"], "password": os.environ["PASS"]})
+    response = requests.post(f"https://login.microsoftonline.com/{tenant_id}/oauth2/v2.0/token", data={
+        "grant_type": "client_credentials",
+        "client_id": app_id,
+        "client_secret": client_secret,
+        "scope": scope
+    })
+
     return response.json()["access_token"]
 
 
-- 
GitLab