4b6817381b
CI (OpenClaw E2E) / openclaw test (push) Has been cancelled
CI / coverage-report (push) Has been cancelled
CI / test-kubernetes (push) Has been cancelled
CI / should-run-thorough (push) Has been cancelled
CI / test-thorough (cloudwatch-demo) (push) Has been cancelled
CI / test-thorough (flink-ecs) (push) Has been cancelled
CI / test-thorough (upstream-lambda) (push) Has been cancelled
CI / test-thorough (prefect-ecs-fargate) (push) Has been cancelled
Release / build-binaries (zip, opensre.exe, onefile, windows-latest, windows-x64) (push) Has been cancelled
Benchmark image — build + push to ECR (any adapter) / build + push (push) Has been cancelled
CI / quality (ubuntu-latest) (push) Has been cancelled
CI / test (tools-runtime) (push) Has been cancelled
CI / test (e2e-general) (push) Has been cancelled
CI / test (cli-runtime) (push) Has been cancelled
CI / test (e2e-provider-and-openclaw) (push) Has been cancelled
CI / test (integrations-and-misc) (push) Has been cancelled
Release / verify (push) Has been cancelled
Release / build-python-dist (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, macos-15-intel, darwin-x64) (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, macos-latest, darwin-arm64) (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04, linux-x64) (push) Has been cancelled
Release / publish-release (push) Has been cancelled
Release / publish-main-release (push) Has been cancelled
Interactive Shell Live (PR + post-merge) / turn-checks (no-LLM) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Interactive Shell Live (PR + post-merge) / turn-live shard ${{ matrix.shard_index }} (push) Has been cancelled
Release / prepare (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04-arm, linux-arm64) (push) Has been cancelled
Synthetic Deterministic Tests / Synthetic offline (deterministic) (push) Has been cancelled
147 lines
4.6 KiB
Python
147 lines
4.6 KiB
Python
"""Notion API client for creating and updating investigation report pages."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
from typing import Any
|
|
|
|
import httpx
|
|
from pydantic import field_validator
|
|
|
|
from config.strict_config import StrictConfigModel
|
|
from platform.observability.errors.service import capture_service_error
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
_DEFAULT_TIMEOUT = 30
|
|
_NOTION_API_BASE = "https://api.notion.com/v1"
|
|
_NOTION_VERSION = "2022-06-28"
|
|
|
|
|
|
class NotionConfig(StrictConfigModel):
|
|
api_key: str
|
|
database_id: str
|
|
|
|
@field_validator("api_key", "database_id", mode="before")
|
|
@classmethod
|
|
def _normalize_str(cls, value: object) -> str:
|
|
return str(value or "").strip()
|
|
|
|
@property
|
|
def headers(self) -> dict[str, str]:
|
|
return {
|
|
"Authorization": f"Bearer {self.api_key}",
|
|
"Notion-Version": _NOTION_VERSION,
|
|
"Content-Type": "application/json",
|
|
}
|
|
|
|
|
|
class NotionClient:
|
|
"""Client for posting investigation reports and incident pages to Notion."""
|
|
|
|
def __init__(self, config: NotionConfig) -> None:
|
|
self.config = config
|
|
|
|
@property
|
|
def is_configured(self) -> bool:
|
|
return bool(self.config.api_key and self.config.database_id)
|
|
|
|
def _get_client(self) -> httpx.Client:
|
|
return httpx.Client(
|
|
base_url=_NOTION_API_BASE,
|
|
headers=self.config.headers,
|
|
timeout=_DEFAULT_TIMEOUT,
|
|
)
|
|
|
|
def create_investigation_page(
|
|
self,
|
|
title: str,
|
|
root_cause: str,
|
|
evidence: str,
|
|
timeline: str,
|
|
suggested_actions: str,
|
|
severity: str = "unknown",
|
|
) -> dict[str, Any]:
|
|
"""Create a new Notion page in the configured database with investigation findings."""
|
|
payload = {
|
|
"parent": {"database_id": self.config.database_id},
|
|
"properties": {
|
|
"Title": {"title": [{"text": {"content": title}}]},
|
|
"Severity": {"rich_text": [{"text": {"content": severity}}]},
|
|
},
|
|
"children": [
|
|
_heading("Root Cause"),
|
|
_paragraph(root_cause),
|
|
_heading("Evidence"),
|
|
_paragraph(evidence),
|
|
_heading("Timeline"),
|
|
_paragraph(timeline),
|
|
_heading("Suggested Actions"),
|
|
_paragraph(suggested_actions),
|
|
],
|
|
}
|
|
|
|
try:
|
|
with self._get_client() as client:
|
|
resp = client.post("/pages", json=payload)
|
|
resp.raise_for_status()
|
|
data = resp.json()
|
|
return {
|
|
"success": True,
|
|
"page_id": data.get("id"),
|
|
"url": data.get("url"),
|
|
}
|
|
except httpx.HTTPStatusError as exc:
|
|
capture_service_error(
|
|
exc, logger=logger, integration="notion", method="create_investigation_page"
|
|
)
|
|
return {
|
|
"success": False,
|
|
"error": f"HTTP {exc.response.status_code}: {exc.response.text[:200]}",
|
|
}
|
|
except Exception as exc:
|
|
capture_service_error(
|
|
exc, logger=logger, integration="notion", method="create_investigation_page"
|
|
)
|
|
return {"success": False, "error": str(exc)}
|
|
|
|
def update_page(
|
|
self,
|
|
page_id: str,
|
|
content: str,
|
|
) -> dict[str, Any]:
|
|
"""Append content blocks to an existing Notion page."""
|
|
payload = {
|
|
"children": [_paragraph(content)],
|
|
}
|
|
try:
|
|
with self._get_client() as client:
|
|
resp = client.patch(f"/blocks/{page_id}/children", json=payload)
|
|
resp.raise_for_status()
|
|
return {"success": True, "page_id": page_id}
|
|
except httpx.HTTPStatusError as exc:
|
|
capture_service_error(exc, logger=logger, integration="notion", method="update_page")
|
|
return {
|
|
"success": False,
|
|
"error": f"HTTP {exc.response.status_code}: {exc.response.text[:200]}",
|
|
}
|
|
except Exception as exc:
|
|
capture_service_error(exc, logger=logger, integration="notion", method="update_page")
|
|
return {"success": False, "error": str(exc)}
|
|
|
|
|
|
def _heading(text: str) -> dict:
|
|
return {
|
|
"object": "block",
|
|
"type": "heading_2",
|
|
"heading_2": {"rich_text": [{"type": "text", "text": {"content": text}}]},
|
|
}
|
|
|
|
|
|
def _paragraph(text: str) -> dict:
|
|
return {
|
|
"object": "block",
|
|
"type": "paragraph",
|
|
"paragraph": {"rich_text": [{"type": "text", "text": {"content": text[:2000]}}]},
|
|
}
|