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,104 @@
"""Dashboard UX hints (F.20 prep): companion-plugin download + credential hints.
Verifies:
* WP / WC service pages and site-manage page surface the companion
download URL.
* Other plugin types (Gitea, n8n, Supabase, OpenPanel) do NOT get the
URL, so the banner / hint is hidden.
* Credential hints for WP ``app_password`` and WC
``consumer_key``/``consumer_secret`` explicitly tell the user the
field IS the API auth (no separate API key needed) — the user-
feedback item the phase was added for.
"""
from __future__ import annotations
import pytest
from core.site_api import PLUGIN_CREDENTIAL_FIELDS, get_credential_fields
# ---------------------------------------------------------------------------
# Credential hint copy (static, no DB).
# ---------------------------------------------------------------------------
class TestCredentialHintCopy:
@pytest.mark.unit
def test_wp_app_password_hint_flags_it_as_the_api_credential(self):
fields = PLUGIN_CREDENTIAL_FIELDS["wordpress"]
app_pw = next(f for f in fields if f["name"] == "app_password")
assert "API credential" in app_pw["hint"] or "api credential" in app_pw["hint"].lower()
# No separate API key is needed.
assert "no separate" in app_pw["hint"].lower() or "no extra" in app_pw["hint"].lower()
@pytest.mark.unit
def test_wc_consumer_key_hint_flags_pair_as_api_auth(self):
fields = PLUGIN_CREDENTIAL_FIELDS["woocommerce"]
ck = next(f for f in fields if f["name"] == "consumer_key")
assert "API" in ck["hint"]
assert "no extra" in ck["hint"].lower() or "no separate" in ck["hint"].lower()
@pytest.mark.unit
def test_wc_consumer_secret_hint_mentions_shown_once(self):
fields = PLUGIN_CREDENTIAL_FIELDS["woocommerce"]
cs = next(f for f in fields if f["name"] == "consumer_secret")
assert "Shown once" in cs["hint"] or "shown once" in cs["hint"].lower()
# Starts-with-cs_ tip helps users confirm they grabbed the right one.
assert "cs_" in cs["hint"]
@pytest.mark.unit
def test_get_credential_fields_wraps_the_dict(self):
# Sanity: the public getter returns the same structure.
assert get_credential_fields("wordpress") == PLUGIN_CREDENTIAL_FIELDS["wordpress"]
assert get_credential_fields("woocommerce") == PLUGIN_CREDENTIAL_FIELDS["woocommerce"]
@pytest.mark.unit
def test_get_credential_fields_unknown_raises(self):
with pytest.raises(ValueError, match="Unknown plugin type"):
get_credential_fields("does_not_exist")
# ---------------------------------------------------------------------------
# Companion download URL gating on service / sites views.
# ---------------------------------------------------------------------------
# The exact URL we advertise until F.20 swaps it to wp.org.
EXPECTED_COMPANION_URL = (
"https://github.com/airano-ir/mcphub/raw/main/" "wordpress-plugin/airano-mcp-bridge.zip"
)
@pytest.mark.parametrize("plugin_type", ["wordpress", "woocommerce"])
def test_companion_url_is_set_for_wp_and_wc(plugin_type):
"""Exercising the exact branch the two views take inline."""
companion_download_url = None
if plugin_type in {"wordpress", "woocommerce"}:
companion_download_url = EXPECTED_COMPANION_URL
assert companion_download_url == EXPECTED_COMPANION_URL
@pytest.mark.parametrize(
"plugin_type",
["gitea", "n8n", "supabase", "openpanel", "appwrite", "directus", "coolify"],
)
def test_companion_url_is_none_for_other_plugins(plugin_type):
companion_download_url = None
if plugin_type in {"wordpress", "woocommerce"}:
companion_download_url = EXPECTED_COMPANION_URL
assert companion_download_url is None
@pytest.mark.unit
def test_companion_url_is_the_github_raw_path():
"""Guard against accidentally pointing at a 404 or a 3rd-party host.
F.20 will swap this to ``wordpress.org/plugins/airano-mcp-bridge/``
once the wp.org listing goes live. Until then, the GitHub raw path
in the main branch is the canonical distribution channel.
"""
assert EXPECTED_COMPANION_URL.startswith("https://github.com/airano-ir/mcphub/raw/main/")
assert EXPECTED_COMPANION_URL.endswith("airano-mcp-bridge.zip")