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
+32 -1
View File
@@ -5,7 +5,7 @@ from datetime import datetime, timedelta, timezone
import uuid_utils
from devplacepy.config import PRESENCE_TIMEOUT_SECONDS, PRESENCE_WRITE_SECONDS
from devplacepy.database import get_table
from devplacepy.database import get_table, set_consent
from devplacepy.services import presence
@@ -57,10 +57,12 @@ def test_touch_writes_once_then_throttles(local_db):
{
"uid": uid,
"username": f"presence_{uid[:8]}",
"terms_version": "1",
"email": f"{uid[:8]}@presence.test",
"last_seen": None,
}
)
set_consent("user", uid, "activity_recording", True)
presence._last_write.pop(uid, None)
presence.touch(uid)
@@ -182,3 +184,32 @@ def test_online_candidates_tracks_beyond_the_display_limit(local_db):
made.append(uid)
tracked = {u["uid"] for u in presence.online_candidates()}
assert set(made) <= tracked
def test_touch_is_silent_without_activity_recording_consent(local_db):
uid = str(uuid_utils.uuid7())
users = get_table("users")
users.insert(
{
"uid": uid,
"username": f"presence_{uid[:8]}",
"terms_version": "1",
"email": f"{uid[:8]}@presence.test",
"last_seen": None,
}
)
presence._last_write.pop(uid, None)
presence.touch(uid)
assert users.find_one(uid=uid)["last_seen"] is None
set_consent("user", uid, "activity_recording", True)
presence._last_write.pop(uid, None)
presence.touch(uid)
assert users.find_one(uid=uid)["last_seen"]
set_consent("user", uid, "activity_recording", False)
presence._last_write.pop(uid, None)
written = users.find_one(uid=uid)["last_seen"]
presence.touch(uid)
assert users.find_one(uid=uid)["last_seen"] == written