sanjeevbora commited on
Commit
504f73a
·
verified ·
1 Parent(s): 308296d

updated app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -5
app.py CHANGED
@@ -9,18 +9,18 @@ import spaces
9
  TENANT_ID = '2b093ced-2571-463f-bc3e-b4f8bcb427ee'
10
  CLIENT_ID = '2a7c884c-942d-49e2-9e5d-7a29d8a0d3e5'
11
  CLIENT_SECRET = 'EOF8Q~kKHCRgx8tnlLM-H8e93ifetxI6x7sU6bGW'
12
- REDIRECT_URI = 'https://sanjeevbora-chatbot.hf.space/callback' # Ensure this matches your app registration
13
  AUTH_URL = f"https://login.microsoftonline.com/{TENANT_ID}/oauth2/v2.0/authorize"
14
  TOKEN_URL = f"https://login.microsoftonline.com/{TENANT_ID}/oauth2/v2.0/token"
15
  SCOPE = 'User.Read'
16
  access_token = None
 
17
 
18
  class RequestHandler(BaseHTTPRequestHandler):
19
  def do_GET(self):
20
  global access_token
21
  if self.path.startswith("/callback"):
22
- # Capture the authorization code
23
- code = self.path.split("code=")[1].split("&")[0] # Ensure you get just the code
24
  response = requests.post(TOKEN_URL, data={
25
  'client_id': CLIENT_ID,
26
  'client_secret': CLIENT_SECRET,
@@ -29,7 +29,8 @@ class RequestHandler(BaseHTTPRequestHandler):
29
  'redirect_uri': REDIRECT_URI
30
  })
31
  token_data = response.json()
32
- access_token = token_data.get('access_token')
 
33
  self.send_response(200)
34
  self.end_headers()
35
  self.wfile.write(b"Login successful! You can close this window.")
@@ -66,7 +67,7 @@ def gradio_interface():
66
  return demo
67
 
68
  if __name__ == "__main__":
69
- # Start the HTTP server in a separate thread
70
  threading.Thread(target=start_http_server, daemon=True).start()
71
 
72
  # Launch Gradio app
 
9
  TENANT_ID = '2b093ced-2571-463f-bc3e-b4f8bcb427ee'
10
  CLIENT_ID = '2a7c884c-942d-49e2-9e5d-7a29d8a0d3e5'
11
  CLIENT_SECRET = 'EOF8Q~kKHCRgx8tnlLM-H8e93ifetxI6x7sU6bGW'
12
+ REDIRECT_URI = 'https://sanjeevbora-chatbot.hf.space/callback'
13
  AUTH_URL = f"https://login.microsoftonline.com/{TENANT_ID}/oauth2/v2.0/authorize"
14
  TOKEN_URL = f"https://login.microsoftonline.com/{TENANT_ID}/oauth2/v2.0/token"
15
  SCOPE = 'User.Read'
16
  access_token = None
17
+ lock = threading.Lock() # Create a lock
18
 
19
  class RequestHandler(BaseHTTPRequestHandler):
20
  def do_GET(self):
21
  global access_token
22
  if self.path.startswith("/callback"):
23
+ code = self.path.split("code=")[1].split("&")[0]
 
24
  response = requests.post(TOKEN_URL, data={
25
  'client_id': CLIENT_ID,
26
  'client_secret': CLIENT_SECRET,
 
29
  'redirect_uri': REDIRECT_URI
30
  })
31
  token_data = response.json()
32
+ with lock: # Lock access to the token
33
+ access_token = token_data.get('access_token')
34
  self.send_response(200)
35
  self.end_headers()
36
  self.wfile.write(b"Login successful! You can close this window.")
 
67
  return demo
68
 
69
  if __name__ == "__main__":
70
+ # Start the HTTP server in the main thread
71
  threading.Thread(target=start_http_server, daemon=True).start()
72
 
73
  # Launch Gradio app