Files
airano-ir f203ca88de
Some checks failed
Release / Test before release (push) Has been cancelled
Release / Publish to PyPI (push) Has been cancelled
Release / Publish to Docker Hub (push) Has been cancelled
Release / Create GitHub Release (push) Has been cancelled
feat(v3.12.0): media pipeline, AI image generation, capability probe, companion v2.9.0
Three-month batch sync from internal repo (~80 commits) covering Tracks F.5a, F.7e, F.8, F.17, F.18, F.X.

WordPress media pipeline
- Pillow-based optimization, AI image generation (OpenAI / Stability / Replicate / Google Nano Banana / OpenRouter), chunked + resumable uploads, bulk delete/reassign, idempotent retries.

Capability discovery (F.7e)
- Per-site credential probe + adapters for WordPress / WooCommerce / Gitea, tier-fit unions granted ∪ roles, capability badge UI with HTMX partial re-check, install hint in every companion-unreachable error.

Companion plugin overhaul
- Renamed wordpress-plugin/airano-mcp-seo-bridge → wordpress-plugin/airano-mcp-bridge.
- Eight new endpoints: /capabilities, /bulk-meta, /export, /cache-purge, /transient-flush, /site-health, /audit-hook, /upload-and-attach.
- wp.org Plugin Check pass: i18n, WP_Filesystem, scheme allowlist on audit-hook URL.

Other
- Gitea ergonomics (F.17): batch files, tree, search, compare, releases, fork.
- Opportunistic bcrypt upgrade for legacy SHA-256 admin keys (F.8).
- n8n refactor: structured errors, capability probe, missing tools backfilled.
- Idempotency-Key dedup for AI media upload retries; WP client fast-fails on unreachable sites.

Docs
- README + CLAUDE.md drop the fixed "633 tools" claim. The total grows with each release; per-plugin approximations + dashboard-surfaced counts replace it.
- Tools/Tests badges removed in favour of "Plugins: 10".

Deployment
- PyPI mirror chain, optional BUILD_HTTP_PROXY, Alpine→Yandex apk mirror, Debian-slim Plan-B Dockerfile, mirror.gcr.io variant.

CI
- Black + Ruff clean on Python 3.12; pytest tests/ green.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-25 16:25:58 +02:00

211 lines
7.0 KiB
Python

"""F.18.3 — Structured JSON export via companion plugin.
Wraps ``GET /airano-mcp/v1/export`` (companion plugin v2.3.0+). Returns
posts (posts, pages, products, custom post types) plus referenced media,
taxonomy terms, and meta in a single JSON envelope, with pagination
hints (``has_more`` + ``next_offset``). Intended for offline processing,
migrations, and content snapshots.
Tool: ``wordpress_export_content(post_type="post", status="publish", ...)``
"""
from __future__ import annotations
import json
import logging
from typing import Any
from plugins.wordpress.client import WordPressClient
from plugins.wordpress.handlers._companion_hint import (
companion_install_hint as _companion_install_hint,
)
logger = logging.getLogger("mcphub.wordpress.export")
# Matches EXPORT_MAX_LIMIT in airano-mcp-bridge.php.
EXPORT_MAX_LIMIT = 500
EXPORT_DEFAULT_LIMIT = 100
def get_tool_specifications() -> list[dict[str, Any]]:
return [
{
"name": "export_content",
"method_name": "export_content",
"description": (
"Export posts/pages/products as structured JSON via the "
"airano-mcp-bridge companion plugin (v2.3.0+). Includes "
"referenced media, taxonomy terms, and post_meta. Paginates "
"via offset/limit; response contains has_more + next_offset. "
"Not a WXR dump — intended for AI-pipeline processing, not "
"WP-to-WP import."
),
"schema": {
"type": "object",
"properties": {
"post_type": {
"type": "string",
"description": (
"Comma-separated list of post types "
"(e.g. 'post', 'post,page', 'product'). Default 'post'."
),
},
"status": {
"type": "string",
"description": (
"Comma-separated list of statuses, or 'any'. " "Default 'publish'."
),
},
"since": {
"type": "string",
"description": (
"Only return posts modified after this ISO8601 " "timestamp. Optional."
),
},
"limit": {
"type": "integer",
"description": (f"1..{EXPORT_MAX_LIMIT}, default {EXPORT_DEFAULT_LIMIT}."),
},
"offset": {"type": "integer", "description": "Default 0."},
"include_media": {
"type": "boolean",
"description": "Include featured media objects (default true).",
},
"include_terms": {
"type": "boolean",
"description": "Include taxonomy terms per post (default true).",
},
"include_meta": {
"type": "boolean",
"description": "Include post_meta (default true).",
},
},
},
"scope": "read",
}
]
def _normalise_bool(v: Any, default: bool) -> bool:
if v is None:
return default
if isinstance(v, bool):
return v
if isinstance(v, (int, float)):
return bool(v)
s = str(v).strip().lower()
if s in {"true", "1", "yes", "on"}:
return True
if s in {"false", "0", "no", "off"}:
return False
return default
def _build_query_params(
*,
post_type: str | None,
status: str | None,
since: str | None,
limit: int | None,
offset: int | None,
include_media: Any,
include_terms: Any,
include_meta: Any,
) -> dict[str, Any]:
params: dict[str, Any] = {
"post_type": post_type or "post",
"status": status or "publish",
}
if since:
params["since"] = since
if limit is None:
params["limit"] = EXPORT_DEFAULT_LIMIT
else:
lim = int(limit)
if lim <= 0:
lim = EXPORT_DEFAULT_LIMIT
if lim > EXPORT_MAX_LIMIT:
lim = EXPORT_MAX_LIMIT
params["limit"] = lim
params["offset"] = max(0, int(offset or 0))
# Pass booleans as "true"/"false" strings so the PHP side's
# bool_param() helper can parse them uniformly.
params["include_media"] = "true" if _normalise_bool(include_media, True) else "false"
params["include_terms"] = "true" if _normalise_bool(include_terms, True) else "false"
params["include_meta"] = "true" if _normalise_bool(include_meta, True) else "false"
return params
class ExportHandler:
"""Structured JSON export via the companion plugin."""
def __init__(self, client: WordPressClient) -> None:
self.client = client
async def export_content(
self,
post_type: str | None = None,
status: str | None = None,
since: str | None = None,
limit: int | None = None,
offset: int | None = None,
include_media: Any = True,
include_terms: Any = True,
include_meta: Any = True,
) -> str:
params = _build_query_params(
post_type=post_type,
status=status,
since=since,
limit=limit,
offset=offset,
include_media=include_media,
include_terms=include_terms,
include_meta=include_meta,
)
try:
payload = await self.client.get(
"airano-mcp/v1/export",
params=params,
use_custom_namespace=True,
)
except Exception as exc: # noqa: BLE001
logger.error("export_content companion call failed: %s", exc)
return json.dumps(
{
"ok": False,
"error": "companion_unreachable",
"message": str(exc),
"hint": (
"Requires airano-mcp-bridge companion plugin v2.3.0+. "
"Run wordpress_probe_capabilities to verify availability."
),
"install_hint": _companion_install_hint(
min_version="2.3.0",
required_capability="edit_posts",
route="airano-mcp/v1/export",
),
"params": params,
},
indent=2,
)
if not isinstance(payload, dict):
return json.dumps(
{
"ok": False,
"error": "invalid_response",
"message": "companion returned a non-object payload",
"params": params,
},
indent=2,
)
result = {"ok": True, **payload}
return json.dumps(result, indent=2)