awacke1 commited on
Commit
a325626
Β·
verified Β·
1 Parent(s): 41d9a07

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +213 -215
app.py CHANGED
@@ -179,229 +179,227 @@ def main():
179
  code_challenge_method="S256"
180
  )
181
  st.write('πŸ‘‹ Please [click here]({}) to log in and authorize the app.'.format(auth_url))
182
- st.stop()
183
- else:
184
 
185
-
186
-
187
- # πŸš€ Sidebar navigation
188
- st.sidebar.title("Navigation")
189
- menu = st.sidebar.radio("Go to", [
190
- "1️⃣ Dashboard with Widgets",
191
- "🏠 Landing Page",
192
- "πŸ“… Upcoming Events",
193
- "πŸ“† Schedule",
194
- "πŸ“ Agenda",
195
- "πŸ” Event Details",
196
- "βž• Add Event",
197
- "πŸ”Ž Filter By"
198
- ])
199
-
200
- # πŸ“ M365 Products with MS Graph Integration & AI Features
201
- st.sidebar.title("πŸ“ M365 Products")
202
- st.sidebar.write("Toggle integration for each product:")
203
-
204
- # πŸŽ›οΈ Product Integration Toggles
205
- products = {
206
- "πŸ“§ Outlook": {
207
- "ai_capabilities": "Copilot for enhanced email writing, calendar management, and scheduling.",
208
- "graph_api": "Access to mail, calendar, contacts, and events."
209
- },
210
- "πŸ“’ OneNote": {
211
- "ai_capabilities": "Content suggestion, note organization, and OCR for extracting text from images.",
212
- "graph_api": "Manage notebooks, sections, and pages."
213
- },
214
- "πŸ“Š Excel": {
215
- "ai_capabilities": "Copilot for advanced data analysis, data insights, and formula generation.",
216
- "graph_api": "Create and manage worksheets, tables, charts, and workbooks."
217
- },
218
- "πŸ“„ Word": {
219
- "ai_capabilities": "Copilot for document drafting, summarization, and grammar improvements.",
220
- "graph_api": "Document content access, templates, and file management."
221
- },
222
- "πŸ—ƒοΈ SharePoint": {
223
- "ai_capabilities": "Intelligent search, document tagging, and metadata extraction.",
224
- "graph_api": "Access to sites, lists, files, and document libraries."
225
- },
226
- "πŸ“… Teams": {
227
- "ai_capabilities": "Copilot for meeting summaries, transcription, and chat suggestions.",
228
- "graph_api": "Manage chats, teams, channels, and meetings."
229
- },
230
- "πŸ’¬ Viva": {
231
- "ai_capabilities": "Personalized learning insights, well-being insights, and productivity suggestions.",
232
- "graph_api": "Access to user analytics and learning modules."
233
- },
234
- "πŸš€ Power Platform": {
235
- "ai_capabilities": "Automation with AI Builder, data insights, and custom AI models.",
236
- "graph_api": "Automation workflows, app creation, and data visualization."
237
- },
238
- "🧠 Copilot": {
239
- "ai_capabilities": "Embedded across Word, Excel, Outlook, Teams, and more for AI-driven productivity.",
240
- "graph_api": "Underpins Copilot's access to data and integrations."
241
- },
242
- "πŸ—‚οΈ OneDrive": {
243
- "ai_capabilities": "Intelligent file organization and search.",
244
- "graph_api": "File and folder access, sharing, and metadata."
245
- },
246
- "πŸ’‘ PowerPoint": {
247
- "ai_capabilities": "Design suggestions, presentation summarization, and speaker coaching.",
248
- "graph_api": "Presentation creation, slide management, and templates."
249
- },
250
- "πŸ“š Microsoft Bookings": {
251
- "ai_capabilities": "Automated scheduling and reminders.",
252
- "graph_api": "Booking calendars, services, and appointment details."
253
- },
254
- "πŸ““ Loop": {
255
- "ai_capabilities": "Real-time collaboration and content suggestions.",
256
- "graph_api": "Access to shared workspaces and collaborative pages."
257
- },
258
- "πŸ—£οΈ Translator": {
259
- "ai_capabilities": "Real-time language translation and text-to-speech.",
260
- "graph_api": "Integrated into communication and translation services."
261
- },
262
- "πŸ“‹ To Do & Planner": {
263
- "ai_capabilities": "Task prioritization and smart reminders.",
264
- "graph_api": "Task creation, management, and synchronization."
265
- },
266
- "πŸ”— Azure OpenAI Service": {
267
- "ai_capabilities": "Access to GPT models for custom AI implementations.",
268
- "graph_api": "Used indirectly for building custom AI models into workflows."
269
- }
270
  }
271
-
272
- # πŸ—³οΈ Create toggles for each product
273
- selected_products = {}
274
- for product, info in products.items():
275
- selected = st.sidebar.checkbox(product)
276
- if selected:
277
- st.sidebar.write(f"**AI Capabilities:** {info['ai_capabilities']}")
278
- st.sidebar.write(f"**Graph API:** {info['graph_api']}")
279
- selected_products[product] = True
280
-
281
- # πŸ”‘ Authentication
282
- if 'access_token' not in st.session_state:
283
- # πŸ•΅οΈβ€β™‚οΈ Check for authorization code in query parameters
284
- query_params = st.query_params
285
- query = (query_params.get('code'))
286
- #if len(query) > 1:
287
-
288
- #st.write('Parsing query ' + query_params )
289
- if 'code' in query_params:
290
- #code = query_params['code'][0]
291
- code = query_params.get('code')
292
-
293
- st.write('πŸ”‘Access Code Obtained from MS Graph RedirectπŸ”‘!:' + code)
294
-
295
- st.write('πŸ”‘ Acquiring access token from redirect URL for code parameter.')
296
- access_token = get_access_token(code)
297
-
298
- st.session_state['access_token'] = access_token # πŸ”‘ Save it for later
299
-
300
- st.rerun() # Reload the app to clear the code from URL
301
- else:
302
- # πŸ“’ Prompt user to log in
303
- client_instance = get_msal_app()
304
- authorization_url = client_instance.get_authorization_request_url(
305
- scopes=SCOPES,
306
- redirect_uri=REDIRECT_URI
307
- )
308
- st.write('πŸ‘‹ Please [click here]({}) to log in and authorize the app.'.format(authorization_url))
309
- st.stop()
310
 
311
-
312
- else:
313
- # πŸ₯³ User is authenticated, proceed with the app
314
- access_token = st.session_state['access_token']
315
- headers = {'Authorization': 'Bearer ' + access_token}
316
-
317
- # πŸ€— Greet the user
318
- response = requests.get('https://graph.microsoft.com/v1.0/me', headers=headers)
319
- if response.status_code == 200:
320
- user_info = response.json()
321
- st.sidebar.write(f"πŸ‘‹ Hello, {user_info['displayName']}!")
322
- else:
323
- st.error('Failed to fetch user info.')
324
- st.write(response.text)
325
-
326
- # πŸŽ›οΈ Handle menu options
327
- if menu == "1️⃣ Dashboard with Widgets":
328
- st.header("1️⃣ Dashboard with Widgets")
329
- st.write("Widgets will be displayed here. πŸŽ›οΈ")
330
- # Add your widgets here
331
-
332
- elif menu == "🏠 Landing Page":
333
- st.header("🏠 Landing Page")
334
- st.write("Welcome to the app! πŸ₯³")
335
- # Add landing page content here
336
-
337
- elif menu == "πŸ“… Upcoming Events":
338
- st.header("πŸ“… Upcoming Events")
339
- events = get_upcoming_events(access_token)
340
- for event in events:
341
- st.write(f"πŸ“† {event['subject']} on {event['start']['dateTime']}")
342
- # Display upcoming events
343
 
344
- elif menu == "πŸ“† Schedule":
345
- st.header("πŸ“† Schedule")
346
- schedule = get_schedule(access_token)
347
- st.write(schedule)
348
- # Display schedule
349
 
350
- elif menu == "πŸ“ Agenda":
351
- st.header("πŸ“ Agenda")
352
- st.write("Your agenda for today. πŸ“‹")
353
- # Display agenda
354
 
355
- elif menu == "πŸ” Event Details":
356
- st.header("πŸ” Event Details")
357
- event_id = st.text_input("Enter Event ID")
358
- if event_id:
359
- event_details = get_event_details(access_token, event_id)
360
- st.write(event_details)
361
- # Display event details based on ID
362
 
363
- elif menu == "βž• Add Event":
364
- st.header("βž• Add Event")
365
- event_subject = st.text_input("Event Subject")
366
- event_start = st.date_input("Event Start Date")
367
- event_start_time = st.time_input("Event Start Time")
368
- event_end = st.date_input("Event End Date")
369
- event_end_time = st.time_input("Event End Time")
370
- if st.button("Add Event"):
371
- event_details = {
372
- "subject": event_subject,
373
- "start": {
374
- "dateTime": f"{event_start}T{event_start_time}",
375
- "timeZone": "UTC"
376
- },
377
- "end": {
378
- "dateTime": f"{event_end}T{event_end_time}",
379
- "timeZone": "UTC"
380
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
381
  }
382
- add_event(access_token, event_details)
383
- st.success("Event added successfully! πŸŽ‰")
384
- # Form to add new event
385
-
386
- elif menu == "πŸ”Ž Filter By":
387
- st.header("πŸ”Ž Filter Events")
388
- filter_criteria = st.text_input("Enter filter criteria")
389
- if filter_criteria:
390
- filtered_events = filter_events(access_token, filter_criteria)
391
- for event in filtered_events:
392
- st.write(f"πŸ“… {event['subject']} on {event['start']['dateTime']}")
393
- # Filter events based on criteria
394
-
395
- # 🧩 Handle selected products
396
- if selected_products:
397
- st.header("🧩 M365 Product Integrations")
398
- for product in selected_products:
399
- st.subheader(f"{product}")
400
- # Call the function corresponding to the product
401
- handle_product_integration(access_token, product)
402
- else:
403
- st.write("No products selected.")
404
- pass
 
405
 
406
  # 🧩 Function to handle product integration
407
  def handle_product_integration(access_token, product):
 
179
  code_challenge_method="S256"
180
  )
181
  st.write('πŸ‘‹ Please [click here]({}) to log in and authorize the app.'.format(auth_url))
182
+ #st.stop()
 
183
 
184
+
185
+ # πŸš€ Sidebar navigation
186
+ st.sidebar.title("Navigation")
187
+ menu = st.sidebar.radio("Go to", [
188
+ "1️⃣ Dashboard with Widgets",
189
+ "🏠 Landing Page",
190
+ "πŸ“… Upcoming Events",
191
+ "πŸ“† Schedule",
192
+ "πŸ“ Agenda",
193
+ "πŸ” Event Details",
194
+ "βž• Add Event",
195
+ "πŸ”Ž Filter By"
196
+ ])
197
+
198
+ # πŸ“ M365 Products with MS Graph Integration & AI Features
199
+ st.sidebar.title("πŸ“ M365 Products")
200
+ st.sidebar.write("Toggle integration for each product:")
201
+
202
+ # πŸŽ›οΈ Product Integration Toggles
203
+ products = {
204
+ "πŸ“§ Outlook": {
205
+ "ai_capabilities": "Copilot for enhanced email writing, calendar management, and scheduling.",
206
+ "graph_api": "Access to mail, calendar, contacts, and events."
207
+ },
208
+ "πŸ“’ OneNote": {
209
+ "ai_capabilities": "Content suggestion, note organization, and OCR for extracting text from images.",
210
+ "graph_api": "Manage notebooks, sections, and pages."
211
+ },
212
+ "πŸ“Š Excel": {
213
+ "ai_capabilities": "Copilot for advanced data analysis, data insights, and formula generation.",
214
+ "graph_api": "Create and manage worksheets, tables, charts, and workbooks."
215
+ },
216
+ "πŸ“„ Word": {
217
+ "ai_capabilities": "Copilot for document drafting, summarization, and grammar improvements.",
218
+ "graph_api": "Document content access, templates, and file management."
219
+ },
220
+ "πŸ—ƒοΈ SharePoint": {
221
+ "ai_capabilities": "Intelligent search, document tagging, and metadata extraction.",
222
+ "graph_api": "Access to sites, lists, files, and document libraries."
223
+ },
224
+ "πŸ“… Teams": {
225
+ "ai_capabilities": "Copilot for meeting summaries, transcription, and chat suggestions.",
226
+ "graph_api": "Manage chats, teams, channels, and meetings."
227
+ },
228
+ "πŸ’¬ Viva": {
229
+ "ai_capabilities": "Personalized learning insights, well-being insights, and productivity suggestions.",
230
+ "graph_api": "Access to user analytics and learning modules."
231
+ },
232
+ "πŸš€ Power Platform": {
233
+ "ai_capabilities": "Automation with AI Builder, data insights, and custom AI models.",
234
+ "graph_api": "Automation workflows, app creation, and data visualization."
235
+ },
236
+ "🧠 Copilot": {
237
+ "ai_capabilities": "Embedded across Word, Excel, Outlook, Teams, and more for AI-driven productivity.",
238
+ "graph_api": "Underpins Copilot's access to data and integrations."
239
+ },
240
+ "πŸ—‚οΈ OneDrive": {
241
+ "ai_capabilities": "Intelligent file organization and search.",
242
+ "graph_api": "File and folder access, sharing, and metadata."
243
+ },
244
+ "πŸ’‘ PowerPoint": {
245
+ "ai_capabilities": "Design suggestions, presentation summarization, and speaker coaching.",
246
+ "graph_api": "Presentation creation, slide management, and templates."
247
+ },
248
+ "πŸ“š Microsoft Bookings": {
249
+ "ai_capabilities": "Automated scheduling and reminders.",
250
+ "graph_api": "Booking calendars, services, and appointment details."
251
+ },
252
+ "πŸ““ Loop": {
253
+ "ai_capabilities": "Real-time collaboration and content suggestions.",
254
+ "graph_api": "Access to shared workspaces and collaborative pages."
255
+ },
256
+ "πŸ—£οΈ Translator": {
257
+ "ai_capabilities": "Real-time language translation and text-to-speech.",
258
+ "graph_api": "Integrated into communication and translation services."
259
+ },
260
+ "πŸ“‹ To Do & Planner": {
261
+ "ai_capabilities": "Task prioritization and smart reminders.",
262
+ "graph_api": "Task creation, management, and synchronization."
263
+ },
264
+ "πŸ”— Azure OpenAI Service": {
265
+ "ai_capabilities": "Access to GPT models for custom AI implementations.",
266
+ "graph_api": "Used indirectly for building custom AI models into workflows."
 
 
267
  }
268
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
269
 
270
+ # πŸ—³οΈ Create toggles for each product
271
+ selected_products = {}
272
+ for product, info in products.items():
273
+ selected = st.sidebar.checkbox(product)
274
+ if selected:
275
+ st.sidebar.write(f"**AI Capabilities:** {info['ai_capabilities']}")
276
+ st.sidebar.write(f"**Graph API:** {info['graph_api']}")
277
+ selected_products[product] = True
278
+
279
+ # πŸ”‘ Authentication
280
+ if 'access_token' not in st.session_state:
281
+ # πŸ•΅οΈβ€β™‚οΈ Check for authorization code in query parameters
282
+ query_params = st.query_params
283
+ query = (query_params.get('code'))
284
+ #if len(query) > 1:
285
+
286
+ #st.write('Parsing query ' + query_params )
287
+ if 'code' in query_params:
288
+ #code = query_params['code'][0]
289
+ code = query_params.get('code')
 
 
 
 
 
 
 
 
 
 
 
 
290
 
291
+ st.write('πŸ”‘Access Code Obtained from MS Graph RedirectπŸ”‘!:' + code)
 
 
 
 
292
 
293
+ st.write('πŸ”‘ Acquiring access token from redirect URL for code parameter.')
294
+ access_token = get_access_token(code)
 
 
295
 
296
+ st.session_state['access_token'] = access_token # πŸ”‘ Save it for later
 
 
 
 
 
 
297
 
298
+ st.rerun() # Reload the app to clear the code from URL
299
+ else:
300
+ # πŸ“’ Prompt user to log in
301
+ client_instance = get_msal_app()
302
+ authorization_url = client_instance.get_authorization_request_url(
303
+ scopes=SCOPES,
304
+ redirect_uri=REDIRECT_URI
305
+ )
306
+ st.write('πŸ‘‹ Please [click here]({}) to log in and authorize the app.'.format(authorization_url))
307
+ st.stop()
308
+
309
+
310
+ else:
311
+ # πŸ₯³ User is authenticated, proceed with the app
312
+ access_token = st.session_state['access_token']
313
+ headers = {'Authorization': 'Bearer ' + access_token}
314
+
315
+ # πŸ€— Greet the user
316
+ response = requests.get('https://graph.microsoft.com/v1.0/me', headers=headers)
317
+ if response.status_code == 200:
318
+ user_info = response.json()
319
+ st.sidebar.write(f"πŸ‘‹ Hello, {user_info['displayName']}!")
320
+ else:
321
+ st.error('Failed to fetch user info.')
322
+ st.write(response.text)
323
+
324
+ # πŸŽ›οΈ Handle menu options
325
+ if menu == "1️⃣ Dashboard with Widgets":
326
+ st.header("1️⃣ Dashboard with Widgets")
327
+ st.write("Widgets will be displayed here. πŸŽ›οΈ")
328
+ # Add your widgets here
329
+
330
+ elif menu == "🏠 Landing Page":
331
+ st.header("🏠 Landing Page")
332
+ st.write("Welcome to the app! πŸ₯³")
333
+ # Add landing page content here
334
+
335
+ elif menu == "πŸ“… Upcoming Events":
336
+ st.header("πŸ“… Upcoming Events")
337
+ events = get_upcoming_events(access_token)
338
+ for event in events:
339
+ st.write(f"πŸ“† {event['subject']} on {event['start']['dateTime']}")
340
+ # Display upcoming events
341
+
342
+ elif menu == "πŸ“† Schedule":
343
+ st.header("πŸ“† Schedule")
344
+ schedule = get_schedule(access_token)
345
+ st.write(schedule)
346
+ # Display schedule
347
+
348
+ elif menu == "πŸ“ Agenda":
349
+ st.header("πŸ“ Agenda")
350
+ st.write("Your agenda for today. πŸ“‹")
351
+ # Display agenda
352
+
353
+ elif menu == "πŸ” Event Details":
354
+ st.header("πŸ” Event Details")
355
+ event_id = st.text_input("Enter Event ID")
356
+ if event_id:
357
+ event_details = get_event_details(access_token, event_id)
358
+ st.write(event_details)
359
+ # Display event details based on ID
360
+
361
+ elif menu == "βž• Add Event":
362
+ st.header("βž• Add Event")
363
+ event_subject = st.text_input("Event Subject")
364
+ event_start = st.date_input("Event Start Date")
365
+ event_start_time = st.time_input("Event Start Time")
366
+ event_end = st.date_input("Event End Date")
367
+ event_end_time = st.time_input("Event End Time")
368
+ if st.button("Add Event"):
369
+ event_details = {
370
+ "subject": event_subject,
371
+ "start": {
372
+ "dateTime": f"{event_start}T{event_start_time}",
373
+ "timeZone": "UTC"
374
+ },
375
+ "end": {
376
+ "dateTime": f"{event_end}T{event_end_time}",
377
+ "timeZone": "UTC"
378
  }
379
+ }
380
+ add_event(access_token, event_details)
381
+ st.success("Event added successfully! πŸŽ‰")
382
+ # Form to add new event
383
+
384
+ elif menu == "πŸ”Ž Filter By":
385
+ st.header("πŸ”Ž Filter Events")
386
+ filter_criteria = st.text_input("Enter filter criteria")
387
+ if filter_criteria:
388
+ filtered_events = filter_events(access_token, filter_criteria)
389
+ for event in filtered_events:
390
+ st.write(f"πŸ“… {event['subject']} on {event['start']['dateTime']}")
391
+ # Filter events based on criteria
392
+
393
+ # 🧩 Handle selected products
394
+ if selected_products:
395
+ st.header("🧩 M365 Product Integrations")
396
+ for product in selected_products:
397
+ st.subheader(f"{product}")
398
+ # Call the function corresponding to the product
399
+ handle_product_integration(access_token, product)
400
+ else:
401
+ st.write("No products selected.")
402
+ pass
403
 
404
  # 🧩 Function to handle product integration
405
  def handle_product_integration(access_token, product):