awacke1 commited on
Commit
4f527d4
Β·
verified Β·
1 Parent(s): 9796299

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +154 -45
app.py CHANGED
@@ -169,6 +169,7 @@ def handle_outlook_integration(access_token):
169
  st.subheader("πŸ“§ Outlook Integration")
170
  st.markdown(f"[Open Outlook]({PRODUCT_SCOPES['πŸ“§ Outlook']['link']})")
171
 
 
172
  emails = make_api_call(access_token, 'me/messages?$top=10&$orderby=receivedDateTime desc')
173
  if emails and 'value' in emails:
174
  for email in emails['value']:
@@ -177,12 +178,63 @@ def handle_outlook_integration(access_token):
177
  st.write(f"Body: {email['bodyPreview']}")
178
  else:
179
  st.write("No emails found or unable to fetch emails.")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
180
 
181
  def handle_calendar_integration(access_token):
182
  st.subheader("πŸ“… Calendar Integration")
183
  st.markdown(f"[Open Calendar]({PRODUCT_SCOPES['πŸ“… Calendar']['link']})")
184
 
185
- # Get the current month's start and end dates
186
  now = datetime.now()
187
  start_of_month = now.replace(day=1, hour=0, minute=0, second=0, microsecond=0)
188
  end_of_month = start_of_month.replace(month=start_of_month.month % 12 + 1, day=1) - timedelta(days=1)
@@ -190,28 +242,10 @@ def handle_calendar_integration(access_token):
190
  events = make_api_call(access_token, f"me/calendarView?startDateTime={start_of_month.isoformat()}&endDateTime={end_of_month.isoformat()}&$orderby=start/dateTime")
191
 
192
  if events and 'value' in events:
193
- # Create a calendar view
194
- cal = calendar.monthcalendar(now.year, now.month)
195
- st.write(f"Calendar for {now.strftime('%B %Y')}")
196
-
197
- # Create a placeholder for each day
198
- day_placeholders = {}
199
- for week in cal:
200
- cols = st.columns(7)
201
- for i, day in enumerate(week):
202
- if day != 0:
203
- day_placeholders[day] = cols[i].empty()
204
- day_placeholders[day].write(f"**{day}**")
205
-
206
- # Populate the calendar with events
207
- for event in events['value']:
208
- start_date = datetime.fromisoformat(event['start']['dateTime'][:-1]) # Remove 'Z' from the end
209
- day = start_date.day
210
- if day in day_placeholders:
211
- day_placeholders[day].write(f"{start_date.strftime('%H:%M')} - {event['subject']}")
212
- else:
213
- st.write("No events found or unable to fetch events.")
214
-
215
  st.write("Add a new event:")
216
  event_subject = st.text_input("Event Subject")
217
  event_date = st.date_input("Event Date")
@@ -235,11 +269,36 @@ def handle_calendar_integration(access_token):
235
  st.success("Event added successfully!")
236
  else:
237
  st.error("Failed to add event.")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
238
 
239
  def handle_tasks_integration(access_token):
240
  st.subheader("πŸ“‹ Tasks Integration")
241
  st.markdown(f"[Open Tasks]({PRODUCT_SCOPES['πŸ“‹ Tasks']['link']})")
242
 
 
243
  tasks = make_api_call(access_token, 'me/todo/lists')
244
  if tasks and 'value' in tasks:
245
  default_list = next((list for list in tasks['value'] if list['wellknownListName'] == 'defaultList'), None)
@@ -257,6 +316,7 @@ def handle_tasks_integration(access_token):
257
  else:
258
  st.write("Unable to fetch task lists.")
259
 
 
260
  st.write("Add a new task:")
261
  task_title = st.text_input("Task Title")
262
  if st.button("Add Task"):
@@ -268,11 +328,36 @@ def handle_tasks_integration(access_token):
268
  st.success("Task added successfully!")
269
  else:
270
  st.error("Failed to add task.")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
271
 
272
  def handle_onedrive_integration(access_token):
273
  st.subheader("πŸ—‚οΈ OneDrive Integration")
274
  st.markdown(f"[Open OneDrive]({PRODUCT_SCOPES['πŸ—‚οΈ OneDrive']['link']})")
275
 
 
276
  files = make_api_call(access_token, 'me/drive/root/children')
277
  if files and 'value' in files:
278
  for file in files['value']:
@@ -282,6 +367,48 @@ def handle_onedrive_integration(access_token):
282
  st.write("---")
283
  else:
284
  st.write("No files found or unable to fetch files.")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
285
 
286
  def main():
287
  st.title("πŸ¦„ MS Graph API with AI & Cloud Integration for M365")
@@ -290,10 +417,12 @@ def main():
290
  st.sidebar.write("Select products to integrate:")
291
 
292
  selected_products = {}
293
- for product in PRODUCT_SCOPES.keys():
294
  selected = st.sidebar.checkbox(product)
295
  if selected:
296
  selected_products[product] = True
 
 
297
 
298
  request_scopes = BASE_SCOPES.copy()
299
  for product in selected_products:
@@ -326,24 +455,4 @@ def main():
326
  else:
327
  access_token = st.session_state['access_token']
328
 
329
- user_info = make_api_call(access_token, 'me')
330
- if user_info:
331
- st.sidebar.write(f"πŸ‘‹ Hello, {user_info.get('displayName', 'User')}!")
332
-
333
- if selected_products:
334
- for product in selected_products:
335
- if product == "πŸ“§ Outlook":
336
- handle_outlook_integration(access_token)
337
- elif product == "πŸ“… Calendar":
338
- handle_calendar_integration(access_token)
339
- elif product == "πŸ“‹ Tasks":
340
- handle_tasks_integration(access_token)
341
- elif product == "πŸ—‚οΈ OneDrive":
342
- handle_onedrive_integration(access_token)
343
- # Add more product integrations here
344
- else:
345
- st.write("No products selected. Please select products from the sidebar.")
346
-
347
- if __name__ == "__main__":
348
- main()
349
-
 
169
  st.subheader("πŸ“§ Outlook Integration")
170
  st.markdown(f"[Open Outlook]({PRODUCT_SCOPES['πŸ“§ Outlook']['link']})")
171
 
172
+ # Read emails
173
  emails = make_api_call(access_token, 'me/messages?$top=10&$orderby=receivedDateTime desc')
174
  if emails and 'value' in emails:
175
  for email in emails['value']:
 
178
  st.write(f"Body: {email['bodyPreview']}")
179
  else:
180
  st.write("No emails found or unable to fetch emails.")
181
+
182
+ # Create (Send) email
183
+ st.write("Send a new email:")
184
+ recipient = st.text_input("Recipient Email")
185
+ subject = st.text_input("Subject")
186
+ body = st.text_area("Body")
187
+ if st.button("Send Email"):
188
+ new_email = {
189
+ "message": {
190
+ "subject": subject,
191
+ "body": {
192
+ "contentType": "Text",
193
+ "content": body
194
+ },
195
+ "toRecipients": [
196
+ {
197
+ "emailAddress": {
198
+ "address": recipient
199
+ }
200
+ }
201
+ ]
202
+ }
203
+ }
204
+ result = make_api_call(access_token, 'me/sendMail', method='POST', data=new_email)
205
+ if result is None: # sendMail doesn't return content on success
206
+ st.success("Email sent successfully!")
207
+ else:
208
+ st.error("Failed to send email.")
209
+
210
+ # Update email (mark as read)
211
+ st.write("Mark an email as read:")
212
+ email_id = st.text_input("Enter Email ID")
213
+ if st.button("Mark as Read"):
214
+ update_data = {
215
+ "isRead": True
216
+ }
217
+ result = make_api_call(access_token, f'me/messages/{email_id}', method='PATCH', data=update_data)
218
+ if result is None: # PATCH doesn't return content on success
219
+ st.success("Email marked as read!")
220
+ else:
221
+ st.error("Failed to mark email as read.")
222
+
223
+ # Delete email
224
+ st.write("Delete an email:")
225
+ email_id = st.text_input("Enter Email ID to delete")
226
+ if st.button("Delete Email"):
227
+ result = make_api_call(access_token, f'me/messages/{email_id}', method='DELETE')
228
+ if result is None: # DELETE doesn't return content on success
229
+ st.success("Email deleted successfully!")
230
+ else:
231
+ st.error("Failed to delete email.")
232
 
233
  def handle_calendar_integration(access_token):
234
  st.subheader("πŸ“… Calendar Integration")
235
  st.markdown(f"[Open Calendar]({PRODUCT_SCOPES['πŸ“… Calendar']['link']})")
236
 
237
+ # Read events
238
  now = datetime.now()
239
  start_of_month = now.replace(day=1, hour=0, minute=0, second=0, microsecond=0)
240
  end_of_month = start_of_month.replace(month=start_of_month.month % 12 + 1, day=1) - timedelta(days=1)
 
242
  events = make_api_call(access_token, f"me/calendarView?startDateTime={start_of_month.isoformat()}&endDateTime={end_of_month.isoformat()}&$orderby=start/dateTime")
243
 
244
  if events and 'value' in events:
245
+ # Display events (implementation remains the same)
246
+ # ...
247
+
248
+ # Create event
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
249
  st.write("Add a new event:")
250
  event_subject = st.text_input("Event Subject")
251
  event_date = st.date_input("Event Date")
 
269
  st.success("Event added successfully!")
270
  else:
271
  st.error("Failed to add event.")
272
+
273
+ # Update event
274
+ st.write("Update an event:")
275
+ event_id = st.text_input("Enter Event ID")
276
+ new_subject = st.text_input("New Subject")
277
+ if st.button("Update Event"):
278
+ update_data = {
279
+ "subject": new_subject
280
+ }
281
+ result = make_api_call(access_token, f'me/events/{event_id}', method='PATCH', data=update_data)
282
+ if result is None: # PATCH doesn't return content on success
283
+ st.success("Event updated successfully!")
284
+ else:
285
+ st.error("Failed to update event.")
286
+
287
+ # Delete event
288
+ st.write("Delete an event:")
289
+ event_id_to_delete = st.text_input("Enter Event ID to delete")
290
+ if st.button("Delete Event"):
291
+ result = make_api_call(access_token, f'me/events/{event_id_to_delete}', method='DELETE')
292
+ if result is None: # DELETE doesn't return content on success
293
+ st.success("Event deleted successfully!")
294
+ else:
295
+ st.error("Failed to delete event.")
296
 
297
  def handle_tasks_integration(access_token):
298
  st.subheader("πŸ“‹ Tasks Integration")
299
  st.markdown(f"[Open Tasks]({PRODUCT_SCOPES['πŸ“‹ Tasks']['link']})")
300
 
301
+ # Read tasks
302
  tasks = make_api_call(access_token, 'me/todo/lists')
303
  if tasks and 'value' in tasks:
304
  default_list = next((list for list in tasks['value'] if list['wellknownListName'] == 'defaultList'), None)
 
316
  else:
317
  st.write("Unable to fetch task lists.")
318
 
319
+ # Create task
320
  st.write("Add a new task:")
321
  task_title = st.text_input("Task Title")
322
  if st.button("Add Task"):
 
328
  st.success("Task added successfully!")
329
  else:
330
  st.error("Failed to add task.")
331
+
332
+ # Update task
333
+ st.write("Update a task:")
334
+ task_id = st.text_input("Enter Task ID")
335
+ new_title = st.text_input("New Title")
336
+ if st.button("Update Task"):
337
+ update_data = {
338
+ "title": new_title
339
+ }
340
+ result = make_api_call(access_token, f"me/todo/lists/{default_list['id']}/tasks/{task_id}", method='PATCH', data=update_data)
341
+ if result is None: # PATCH doesn't return content on success
342
+ st.success("Task updated successfully!")
343
+ else:
344
+ st.error("Failed to update task.")
345
+
346
+ # Delete task
347
+ st.write("Delete a task:")
348
+ task_id_to_delete = st.text_input("Enter Task ID to delete")
349
+ if st.button("Delete Task"):
350
+ result = make_api_call(access_token, f"me/todo/lists/{default_list['id']}/tasks/{task_id_to_delete}", method='DELETE')
351
+ if result is None: # DELETE doesn't return content on success
352
+ st.success("Task deleted successfully!")
353
+ else:
354
+ st.error("Failed to delete task.")
355
 
356
  def handle_onedrive_integration(access_token):
357
  st.subheader("πŸ—‚οΈ OneDrive Integration")
358
  st.markdown(f"[Open OneDrive]({PRODUCT_SCOPES['πŸ—‚οΈ OneDrive']['link']})")
359
 
360
+ # Read files
361
  files = make_api_call(access_token, 'me/drive/root/children')
362
  if files and 'value' in files:
363
  for file in files['value']:
 
367
  st.write("---")
368
  else:
369
  st.write("No files found or unable to fetch files.")
370
+
371
+ # Create file
372
+ st.write("Create a new text file:")
373
+ file_name = st.text_input("File Name (include .txt extension)")
374
+ file_content = st.text_area("File Content")
375
+ if st.button("Create File"):
376
+ create_file_url = f"https://graph.microsoft.com/v1.0/me/drive/root:/{file_name}:/content"
377
+ headers = {
378
+ 'Authorization': f'Bearer {access_token}',
379
+ 'Content-Type': 'text/plain'
380
+ }
381
+ response = requests.put(create_file_url, headers=headers, data=file_content.encode('utf-8'))
382
+ if response.status_code == 201:
383
+ st.success("File created successfully!")
384
+ else:
385
+ st.error("Failed to create file.")
386
+
387
+ # Update file
388
+ st.write("Update a file:")
389
+ file_path = st.text_input("File Path (e.g., /Documents/file.txt)")
390
+ new_content = st.text_area("New Content")
391
+ if st.button("Update File"):
392
+ update_file_url = f"https://graph.microsoft.com/v1.0/me/drive/root:{file_path}:/content"
393
+ headers = {
394
+ 'Authorization': f'Bearer {access_token}',
395
+ 'Content-Type': 'text/plain'
396
+ }
397
+ response = requests.put(update_file_url, headers=headers, data=new_content.encode('utf-8'))
398
+ if response.status_code == 200:
399
+ st.success("File updated successfully!")
400
+ else:
401
+ st.error("Failed to update file.")
402
+
403
+ # Delete file
404
+ st.write("Delete a file:")
405
+ file_path_to_delete = st.text_input("File Path to delete (e.g., /Documents/file.txt)")
406
+ if st.button("Delete File"):
407
+ result = make_api_call(access_token, f"me/drive/root:{file_path_to_delete}", method='DELETE')
408
+ if result is None: # DELETE doesn't return content on success
409
+ st.success("File deleted successfully!")
410
+ else:
411
+ st.error("Failed to delete file.")
412
 
413
  def main():
414
  st.title("πŸ¦„ MS Graph API with AI & Cloud Integration for M365")
 
417
  st.sidebar.write("Select products to integrate:")
418
 
419
  selected_products = {}
420
+ for product, details in PRODUCT_SCOPES.items():
421
  selected = st.sidebar.checkbox(product)
422
  if selected:
423
  selected_products[product] = True
424
+ st.sidebar.write(f"AI Capabilities: {details['ai_capabilities']}")
425
+ st.sidebar.write(f"Graph Solution: {details['graph_solution']}")
426
 
427
  request_scopes = BASE_SCOPES.copy()
428
  for product in selected_products:
 
455
  else:
456
  access_token = st.session_state['access_token']
457
 
458
+