Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 32 additions & 36 deletions backend/python/app/sources/external/microsoft/one_note/one_note.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@


import json
import logging
from dataclasses import asdict
Expand Down Expand Up @@ -111,29 +109,22 @@ def _handle_onenote_response(self, response: object) -> OneNoteResponse:
if response is None:
return OneNoteResponse(success=False, error="Empty response from OneNote API")

success = True
error_msg = None

# Enhanced error response handling for OneNote
if hasattr(response, 'error'):
success = False
error_msg = str(response.error)
elif isinstance(response, dict) and 'error' in response:
success = False
# Fastest checks first: dict, then hasattr
if isinstance(response, dict) and 'error' in response:
error_info = response['error']
if isinstance(error_info, dict):
error_msg = f"{error_info.get('code', 'Unknown')}: {error_info.get('message', 'No message')}"
else:
error_msg = str(error_info)
elif hasattr(response, 'code') and hasattr(response, 'message'):
success = False
error_msg = f"{response.code}: {response.message}"
return OneNoteResponse(success=False, data=response, error=error_msg)

return OneNoteResponse(
success=success,
data=response,
error=error_msg,
)
if hasattr(response, 'error'):
return OneNoteResponse(success=False, data=response, error=str(response.error))

if hasattr(response, 'code') and hasattr(response, 'message'):
return OneNoteResponse(success=False, data=response, error=f"{response.code}: {response.message}")

return OneNoteResponse(success=True, data=response, error=None)
except Exception as e:
logger.error(f"Error handling OneNote response: {e}")
return OneNoteResponse(success=False, error=str(e))
Expand Down Expand Up @@ -5776,38 +5767,43 @@ async def me_onenote_update_notebooks(
"""
# Build query parameters including OData for OneNote
try:
# Use typed query parameters
query_params = RequestConfiguration()
# Set query parameters using typed object properties
if select:
query_params.select = select if isinstance(select, list) else [select]
if expand:
query_params.expand = expand if isinstance(expand, list) else [expand]
# Reuse the same RequestConfiguration for query and request config to avoid double instantiation
config = RequestConfiguration()

_select = select if (select and isinstance(select, list)) else ([select] if select else None)
_expand = expand if (expand and isinstance(expand, list)) else ([expand] if expand else None)

# Direct attribute assignment is much faster than repeated setattr/copy or calling a builder func
if _select is not None:
config.query_parameters.select = _select
if _expand is not None:
config.query_parameters.expand = _expand
if filter:
query_params.filter = filter
config.query_parameters.filter = filter
if orderby:
query_params.orderby = orderby
config.query_parameters.orderby = orderby
if search:
query_params.search = search
config.query_parameters.search = search
if top is not None:
query_params.top = top
config.query_parameters.top = top
if skip is not None:
query_params.skip = skip
config.query_parameters.skip = skip

# Create proper typed request configuration
config = RequestConfiguration()
config.query_parameters = query_params

if headers:
config.headers = headers
config.headers = headers.copy() # copy for immutability of input reference


# Add consistency level for search operations in OneNote
if search:
if not config.headers:
config.headers = {}
config.headers['ConsistencyLevel'] = 'eventual'

response = await self.client.me.onenote.notebooks.by_notebook_id(notebook_id).patch(body=request_body, request_configuration=config)
response = await self.client.me.onenote.notebooks.by_notebook_id(notebook_id).patch(
body=request_body,
request_configuration=config
)
return self._handle_onenote_response(response)
except Exception as e:
return OneNoteResponse(
Expand Down