feat(v3.12.0): media pipeline, AI image generation, capability probe, companion v2.9.0
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

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>
This commit is contained in:
2026-04-25 16:25:58 +02:00
parent 788439e377
commit f203ca88de
140 changed files with 23802 additions and 2253 deletions

View File

@@ -0,0 +1,188 @@
"""F.X.fix #7 — AI image upload sends Idempotency-Key to the companion.
Regression: when the MCP client timed out mid-call the companion had
already created the attachment. The client retried and the companion
created a second ``-2.webp`` orphan, leaving admins to clean up by
hand. Fix: generate a stable key per logical call, send it as an
``Idempotency-Key`` header, and let the companion dedupe.
These tests cover the Python side — the key is deterministic for the
same inputs, differs when any input changes, and is actually put on
the wire when ``_companion_upload_and_attach`` fires.
"""
from __future__ import annotations
from unittest.mock import AsyncMock, patch
import pytest
from plugins.wordpress.client import WordPressClient
from plugins.wordpress.handlers import _media_core
from plugins.wordpress.handlers.ai_media import (
_content_sha,
_idempotency_key_for,
)
class TestIdempotencyKeyBuilder:
def test_matches_companion_regex(self):
key = _idempotency_key_for(
provider="openrouter",
model="google/gemini-2.5-flash-image",
prompt="a cat",
size="1024x1024",
attach_to_post=42,
set_featured=True,
site_url="https://blog.example.com",
user_id="user-1",
content_sha=_content_sha(b"bytes"),
)
# Companion PHP validates ^[A-Za-z0-9_-]{1,128}$ before use.
import re
assert re.match(r"^[A-Za-z0-9_\-]{1,128}$", key)
assert 1 <= len(key) <= 128
def test_deterministic_for_same_inputs(self):
kwargs = {
"provider": "openrouter",
"model": "google/gemini-2.5-flash-image",
"prompt": "a cat",
"size": "1024x1024",
"attach_to_post": 42,
"set_featured": True,
"site_url": "https://blog.example.com",
"user_id": "user-1",
"content_sha": "abc123",
}
assert _idempotency_key_for(**kwargs) == _idempotency_key_for(**kwargs)
def test_differs_when_prompt_changes(self):
base = {
"provider": "openrouter",
"model": "m",
"prompt": "cat",
"size": "1024x1024",
"attach_to_post": 0,
"set_featured": False,
"site_url": "https://x",
"user_id": None,
"content_sha": "a",
}
other = {**base, "prompt": "dog"}
assert _idempotency_key_for(**base) != _idempotency_key_for(**other)
def test_differs_when_attach_to_post_changes(self):
base = {
"provider": "openrouter",
"model": "m",
"prompt": "x",
"size": "1024x1024",
"attach_to_post": None,
"set_featured": False,
"site_url": "https://x",
"user_id": None,
"content_sha": "a",
}
other = {**base, "attach_to_post": 42}
assert _idempotency_key_for(**base) != _idempotency_key_for(**other)
class TestHeaderPropagation:
@pytest.mark.asyncio
async def test_idempotency_key_reaches_companion_route(self):
"""_companion_upload_and_attach must put the key in the header."""
client = WordPressClient("https://example.com", "u", "app_pw")
captured: dict = {}
class _FakeResp:
status = 200
async def text(self):
return "{}"
async def json(self, content_type=None):
return {"id": 99, "source_url": "https://example.com/a.png"}
def _request(url, data=None, headers=None, params=None):
captured["headers"] = headers
captured["params"] = params
return AsyncMock(
__aenter__=AsyncMock(return_value=_FakeResp()),
__aexit__=AsyncMock(return_value=False),
)
session = AsyncMock()
session.post = _request
with patch(
"plugins.wordpress.handlers._media_core.aiohttp.ClientSession",
return_value=AsyncMock(
__aenter__=AsyncMock(return_value=session),
__aexit__=AsyncMock(return_value=False),
),
):
await _media_core._companion_upload_and_attach(
client,
b"\x89PNG\r\n\x1a\n",
sniffed="image/png",
disposition='attachment; filename="a.png"',
attach_to_post=42,
set_featured=True,
title=None,
alt_text=None,
caption=None,
description=None,
idempotency_key="mcphub_ai_abc123",
)
assert captured["headers"]["Idempotency-Key"] == "mcphub_ai_abc123"
@pytest.mark.asyncio
async def test_idempotency_key_absent_header_when_none(self):
client = WordPressClient("https://example.com", "u", "app_pw")
captured: dict = {}
class _FakeResp:
status = 200
async def text(self):
return "{}"
async def json(self, content_type=None):
return {"id": 7}
def _request(url, data=None, headers=None, params=None):
captured["headers"] = headers
return AsyncMock(
__aenter__=AsyncMock(return_value=_FakeResp()),
__aexit__=AsyncMock(return_value=False),
)
session = AsyncMock()
session.post = _request
with patch(
"plugins.wordpress.handlers._media_core.aiohttp.ClientSession",
return_value=AsyncMock(
__aenter__=AsyncMock(return_value=session),
__aexit__=AsyncMock(return_value=False),
),
):
await _media_core._companion_upload_and_attach(
client,
b"x",
sniffed="image/png",
disposition='attachment; filename="a.png"',
attach_to_post=None,
set_featured=False,
title=None,
alt_text=None,
caption=None,
description=None,
idempotency_key=None,
)
# No Idempotency-Key header when the caller didn't supply one;
# the companion must still handle the request normally.
assert "Idempotency-Key" not in captured["headers"]