Files
cowork-local/core/ms365_graph.py
T
f9f6bc01fd
CI / test (push) Canceled after 0s
Feature/delta team/epic r04 (#7)
## Summary

epic r04 - begin refactor

## Change Type

- [x] Cowork feature
- [ ] Bug fix
- [ ] Core AI contribution
- [ ] Test / hardening
- [ ] Performance
- [ ] Documentation

## Related Work

Cowork Task:

Core Repo: http://34.143.229.138/gitea-admin/fsg-ai-core-assets

Core AI Issue:

Core Task:

Related PR:

## Scope

What is intentionally included?

What is intentionally NOT included?

## Validation

- [ ] Unit tests
- [ ] Integration tests
- [ ] Manual verification
- [ ] Regression check

Commands / evidence:

## Security Impact

Permission / credential / network / customer data impact:

## Compatibility

- [ ] No breaking change
- [ ] Breaking change documented

## Reviewer Notes

Anything Cowork reviewers should pay attention to.

---------

Co-authored-by: Anh Tran Nguyen Minh <anhtnm1@fpt.com>
Co-authored-by: Huong Le Thi Thien <huongltt35@fpt.com>
Co-authored-by: Nam Pham Dinh Thanh <nampdt@fpt.com>
Co-authored-by: Vu Dam Tuan <vudt15@fpt.com>
Co-authored-by: Hiep Ha Van <hiephv3@fpt.com>
Co-authored-by: Lam Hoang Van <lamhv7@fpt.com>
Reviewed-on: #7
Co-authored-by: Duy Le Huu <duylh19@fpt.com>
2026-08-31 05:15:13 +00:00

255 lines
11 KiB
Python

"""Thin Microsoft Graph REST wrapper for the MS365 connectors.
Every function takes a bearer ``token`` (from ``ms365_auth.get_access_token``)
and returns plain dict/list data straight from Graph's JSON — the caller
(``ms365_tools.py``) is responsible for turning that into a tool result.
Raises :class:`Ms365GraphError` on any non-2xx response so callers can
surface the real Graph error message instead of a generic failure.
"""
from __future__ import annotations
import base64
import re
from typing import Any, Dict, List, Optional
from urllib.parse import parse_qs, quote, unquote, urlparse
import requests
from . import tls_trust
GRAPH_BASE = "https://graph.microsoft.com/v1.0"
TIMEOUT = 30
class Ms365GraphError(Exception):
"""Lỗi khi gọi Microsoft Graph API."""
pass
class TeamsLinkError(Exception):
"""Link Teams không phân giải được thành team/channel/chat hợp lệ."""
pass
def _headers(token: str, extra: Optional[dict] = None) -> Dict[str, str]:
"""Header cho một lượt gọi Graph: Bearer token cộng phần thêm (nếu có)."""
h = {"Authorization": f"Bearer {token}"}
if extra:
h.update(extra)
return h
def _request(method: str, url: str, token: str, **kwargs) -> requests.Response:
"""Gọi Graph API, tự ghép ``GRAPH_BASE`` cho đường dẫn tương đối và đổi lỗi HTTP
thành :class:`Ms365GraphError` kèm thông điệp đọc được.
"""
if not url.startswith("http"):
url = f"{GRAPH_BASE}{url}"
headers = _headers(token, kwargs.pop("headers", None))
# Same TLS auto-recovery every other outbound HTTPS call in this app uses
# (see core/tls_trust.py): a corporate network that intercepts traffic to
# the internal AI gateway with a self-signed certificate typically
# intercepts graph.microsoft.com the same way, so Graph calls need the
# same trust-on-first-use handling instead of failing outright.
kwargs["verify"] = tls_trust.verify_for(url, None)
try:
resp = requests.request(method, url, headers=headers, timeout=TIMEOUT, **kwargs)
except requests.exceptions.SSLError as exc:
if not tls_trust.looks_like_cert_trust_error(exc):
raise
pinned = tls_trust.capture_and_trust(url)
if not pinned:
raise
kwargs["verify"] = pinned
resp = requests.request(method, url, headers=headers, timeout=TIMEOUT, **kwargs)
if resp.status_code >= 400:
try:
detail = resp.json().get("error", {}).get("message", resp.text)
except ValueError:
detail = resp.text
raise Ms365GraphError(f"Graph API error {resp.status_code}: {detail}")
return resp
def _path_segment(path: str) -> str:
"""Encode a OneDrive/SharePoint relative path for the ``root:/{path}:``
addressing form Graph uses."""
return quote(path.strip("/"), safe="/")
# ---- Outlook ---------------------------------------------------------------
def list_mail(token: str, top: int = 10, folder: str = "inbox") -> List[dict]:
"""Danh sách thư trong một thư mục hộp thư (mặc định Inbox)."""
resp = _request("GET", f"/me/mailFolders/{quote(folder)}/messages"
f"?$top={int(top)}&$select=subject,from,receivedDateTime,bodyPreview,webLink",
token)
return resp.json().get("value", [])
def send_mail(token: str, to: str, subject: str, body: str) -> None:
"""Gửi một email qua tài khoản đang đăng nhập."""
payload = {
"message": {
"subject": subject,
"body": {"contentType": "Text", "content": body},
"toRecipients": [{"emailAddress": {"address": a.strip()}} for a in to.split(",") if a.strip()],
}
}
_request("POST", "/me/sendMail", token, json=payload)
def list_calendar_events(token: str, top: int = 10) -> List[dict]:
"""Danh sách sự kiện lịch sắp tới, xếp theo thời gian bắt đầu."""
resp = _request("GET", f"/me/events?$top={int(top)}"
"&$select=subject,start,end,organizer,location&$orderby=start/dateTime",
token)
return resp.json().get("value", [])
# ---- Teams ------------------------------------------------------------------
def list_teams(token: str) -> List[dict]:
"""Các team mà người dùng đang tham gia."""
resp = _request("GET", "/me/joinedTeams", token)
return resp.json().get("value", [])
def list_channels(token: str, team_id: str) -> List[dict]:
"""Các kênh trong một team."""
resp = _request("GET", f"/teams/{quote(team_id)}/channels", token)
return resp.json().get("value", [])
def list_channel_messages(token: str, team_id: str, channel_id: str, top: int = 20) -> List[dict]:
"""Tin nhắn gần đây trong một kênh."""
resp = _request("GET", f"/teams/{quote(team_id)}/channels/{quote(channel_id)}/messages"
f"?$top={int(top)}", token)
return resp.json().get("value", [])
def send_channel_message(token: str, team_id: str, channel_id: str, text: str) -> None:
"""Gửi tin nhắn vào một kênh Teams."""
payload = {"body": {"content": text}}
_request("POST", f"/teams/{quote(team_id)}/channels/{quote(channel_id)}/messages", token,
json=payload)
def get_channel(token: str, team_id: str, channel_id: str) -> dict:
"""Thông tin một kênh Teams."""
resp = _request("GET", f"/teams/{quote(team_id)}/channels/{quote(channel_id)}", token)
return resp.json()
def get_chat(token: str, chat_id: str) -> dict:
"""Thông tin một cuộc trò chuyện Teams."""
resp = _request("GET", f"/chats/{quote(chat_id)}", token)
return resp.json()
def send_chat_message(token: str, chat_id: str, text: str) -> None:
"""Gửi tin nhắn vào một cuộc trò chuyện Teams."""
_request("POST", f"/chats/{quote(chat_id)}/messages", token, json={"body": {"content": text}})
# ---- "paste a Teams link" convenience -----------------------------------
_LINK_THREAD_RE = re.compile(r"/l/(?:channel|chat|message)/([^/?]+)")
def parse_teams_link(url: str) -> Dict[str, str]:
"""Parse a link copied from Teams ("Get link to channel" or a message's
"Copy link") into a Graph-addressable target:
``{"kind": "channel", "team_id": ..., "channel_id": ...}`` or
``{"kind": "chat", "chat_id": ...}``."""
url = (url or "").strip()
if not url:
raise TeamsLinkError("Empty link.")
match = _LINK_THREAD_RE.search(url)
if not match:
raise TeamsLinkError(
"Unrecognized Teams link — paste a channel link ('Get link to channel') "
"or a chat/message link copied from Teams.")
thread_id = unquote(match.group(1))
group_id = (parse_qs(urlparse(url).query).get("groupId") or [""])[0]
if group_id:
return {"kind": "channel", "team_id": group_id, "channel_id": thread_id}
return {"kind": "chat", "chat_id": thread_id}
# ---- OneDrive -----------------------------------------------------------
def list_onedrive_files(token: str, path: str = "") -> List[dict]:
"""Liệt kê tệp/thư mục trong OneDrive; ``path`` rỗng là thư mục gốc."""
url = "/me/drive/root/children" if not path else f"/me/drive/root:/{_path_segment(path)}:/children"
resp = _request("GET", url, token)
return resp.json().get("value", [])
def read_onedrive_file(token: str, path: str, max_chars: int = 50_000) -> str:
"""Đọc nội dung một tệp OneDrive dưới dạng văn bản, cắt ở ``max_chars``."""
resp = _request("GET", f"/me/drive/root:/{_path_segment(path)}:/content", token)
return resp.content.decode("utf-8", errors="replace")[:max_chars]
def write_onedrive_file(token: str, path: str, content: str) -> dict:
"""Ghi nội dung văn bản vào một tệp OneDrive (tạo mới hoặc ghi đè)."""
resp = _request("PUT", f"/me/drive/root:/{_path_segment(path)}:/content", token,
data=content.encode("utf-8"),
headers={"Content-Type": "text/plain"})
return resp.json()
def _encode_share_url(url: str) -> str:
"""Encode a OneDrive/SharePoint sharing URL into Graph's ``u!<base64url>``
share-id form (see Microsoft's 'Get access to shared items' docs)."""
b64 = base64.urlsafe_b64encode(url.strip().encode("utf-8")).decode("ascii").rstrip("=")
return f"u!{b64}"
def read_shared_file(token: str, share_url: str, max_chars: int = 50_000) -> str:
"""Read the content of an item shared via a OneDrive/SharePoint sharing
LINK (e.g. an admin's "Anyone with the link" rules document) — resolved
through Graph's ``/shares`` endpoint, so it works for a link into anyone's
drive, not just the signed-in user's own OneDrive (unlike
:func:`read_onedrive_file`, which only reads by path in ``/me/drive``)."""
share_id = _encode_share_url(share_url)
resp = _request("GET", f"/shares/{share_id}/driveItem/content", token)
return resp.content.decode("utf-8", errors="replace")[:max_chars]
# ---- SharePoint --------------------------------------------------------
def list_sharepoint_sites(token: str, query: str) -> List[dict]:
"""Tìm site SharePoint theo từ khoá."""
resp = _request("GET", f"/sites?search={quote(query)}", token)
return resp.json().get("value", [])
def list_sharepoint_files(token: str, site_id: str, path: str = "") -> List[dict]:
"""Liệt kê tệp/thư mục trong thư viện tài liệu của một site SharePoint."""
url = (f"/sites/{quote(site_id)}/drive/root/children" if not path
else f"/sites/{quote(site_id)}/drive/root:/{_path_segment(path)}:/children")
resp = _request("GET", url, token)
return resp.json().get("value", [])
# ---- Teams meeting transcripts ------------------------------------------
def find_online_meeting(token: str, join_url: str) -> List[dict]:
"""Tìm cuộc họp online theo link tham gia."""
resp = _request("GET", f"/me/onlineMeetings?$filter=JoinWebUrl eq '{quote(join_url, safe='')}'",
token)
return resp.json().get("value", [])
def list_meeting_transcripts(token: str, meeting_id: str) -> List[dict]:
"""Danh sách bản ghi lời thoại của một cuộc họp."""
resp = _request("GET", f"/me/onlineMeetings/{quote(meeting_id)}/transcripts", token)
return resp.json().get("value", [])
def get_meeting_transcript_content(token: str, meeting_id: str, transcript_id: str,
max_chars: int = 50_000) -> str:
"""Nội dung một bản ghi lời thoại, cắt ở ``max_chars``."""
resp = _request(
"GET",
f"/me/onlineMeetings/{quote(meeting_id)}/transcripts/{quote(transcript_id)}/content"
"?$format=text/vtt",
token)
return resp.content.decode("utf-8", errors="replace")[:max_chars]