Add the trust and safety subsystem and the App Store compliance work

Implements the moderation and consent obligations a social platform carries,
so the web version and any client that speaks to it enforce the same rules.

Moderation core (services/moderation/, database/moderation.py): a reportable
target registry, the content filter and its choke points, the report queue with
atomic resolution, enforcement actions, consent tracking, maturity gating, and
account deletion with a grace window.

Surfaces: POST /reports plus the member report list, /admin/moderation and the
per-report admin view, /workspaces, terms acceptance at /auth/terms, consent and
account deletion under /profile, the report button and dialog partials, the
maturity gate, and the moderation stylesheet and ReportDialog client.

Every user-generated surface stays reportable by construction: new content tables
are registered in REPORTABLE_TARGETS or listed in UNREPORTABLE_TABLES with a
reason, and the registry test fails the suite on anything left unclassified.

Docs: community guidelines, content moderation, intellectual property, privacy,
terms, contact, and the admin-only moderation operations page, plus the
moderation API group and the Devii moderation actions.

Compliance record: applecomp.md is the requirement register, applechanges.md the
gap analysis against this codebase, and appleimpl.md the implementation design
they resolve to.

Tests cover the report flow, admin moderation, consent, account deletion, terms
acceptance, workspaces, and the registry invariant across the unit, api, and e2e
tiers.
This commit is contained in:
2026-08-09 00:18:20 +02:00
parent 68c2bbe387
commit 8e9d3fad98
348 changed files with 10633 additions and 238 deletions
+43
View File
@@ -21,6 +21,8 @@ def _signup_media(prefix="media"):
"email": f"{name}@test.devplace",
"password": "secret123",
"confirm_password": "secret123",
"birth_date": "1990-01-01",
"accept_terms": "1",
},
allow_redirects=True,
)
@@ -135,6 +137,47 @@ def test_devii_delete_media_is_confirm_gated():
assert "confirm" in blob
def test_admin_report_subject_is_the_redacted_admin_user_model():
from devplacepy.schemas import AdminReportOut, AdminUserOut
annotation = AdminReportOut.model_fields["subject"].annotation
assert AdminUserOut in getattr(annotation, "__args__", (annotation,))
assert "password_hash" not in AdminUserOut.model_fields
assert "api_key" not in AdminUserOut.model_fields
def test_accept_terms_page_reports_versions_not_consents():
from devplacepy.schemas import AcceptTermsOut
assert set(AcceptTermsOut.model_fields) == {"terms_version", "accepted_version"}
assert "consents" not in AcceptTermsOut.model_fields
def test_the_workspace_index_row_carries_its_uid_and_owner():
from devplacepy.schemas import WorkspaceIndexItemOut
for field in ("uid", "owner_uid", "description", "project_url"):
assert field in WorkspaceIndexItemOut.model_fields
def test_devii_reads_the_account_deletion_page_before_deleting():
from devplacepy.services.devii.actions.catalog import ACTIONS
from devplacepy.services.devii.actions.dispatcher import (
CONFIRM_REQUIRED,
confirmation_error,
)
by_name = {action.name: action for action in ACTIONS}
reader = by_name["view_account_deletion"]
assert reader.method == "GET"
assert reader.path == "/profile/{username}/delete"
assert "view_account_deletion" not in CONFIRM_REQUIRED
assert "delete_my_account" in CONFIRM_REQUIRED
assert confirmation_error("delete_my_account", {}) is not None
assert confirmation_error("delete_my_account", {"confirm": "true"}) is None
assert any(param.name == "confirm" for param in by_name["delete_my_account"].params)
def test_game_legacy_out_defaults():
from devplacepy.schemas import GameLegacyOut