163 lines
5.0 KiB
Python
Raw Normal View History

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.
2026-08-09 00:18:20 +02:00
# retoor <retoor@molodetz.nl>
import time
import requests
from devplacepy.database import get_table, refresh_snapshot
from tests.conftest import BASE_URL
JSON = {"Accept": "application/json"}
_counter = [0]
def _unique(prefix="del"):
_counter[0] += 1
return f"{prefix}{int(time.time() * 1000)}{_counter[0]}"
def _member(prefix="del"):
name = _unique(prefix)
session = requests.Session()
session.post(
f"{BASE_URL}/auth/signup",
data={
"username": name,
"email": f"{name}@t.dev",
"password": "secret123",
"confirm_password": "secret123",
"birth_date": "1990-01-01",
"accept_terms": "1",
},
allow_redirects=True,
)
return session, name
def _post(session, title="Doomed post"):
response = session.post(
f"{BASE_URL}/posts/create",
data={"title": title, "content": "Content that disappears with the account."},
headers=JSON,
)
assert response.status_code == 200, response.text
return response.json()["data"]["uid"]
def test_the_page_states_what_is_removed_and_the_grace_window(app_server):
session, name = _member()
payload = session.get(f"{BASE_URL}/profile/{name}/delete", headers=JSON).json()
assert payload["username"] == name
assert payload["removed"]
assert payload["retained"]
assert payload["grace_hours"] >= 0
def test_a_wrong_password_does_not_delete(app_server):
session, name = _member()
response = session.post(
f"{BASE_URL}/profile/{name}/delete",
data={"password": "not-the-password"},
headers=JSON,
)
assert response.status_code == 403
refresh_snapshot()
assert get_table("users").find_one(username=name) is not None
def test_deletion_removes_content_revokes_sessions_and_anonymises(app_server):
session, name = _member()
post_uid = _post(session)
refresh_snapshot()
before = get_table("users").find_one(username=name)
response = session.post(
f"{BASE_URL}/profile/{name}/delete",
data={"password": "secret123"},
headers=JSON,
)
assert response.status_code == 200, response.text
stamp = response.json()["data"]["stamp"]
refresh_snapshot()
assert get_table("users").find_one(username=name) is None
row = get_table("users").find_one(uid=before["uid"])
assert row["username"].startswith("deleted_")
assert not row["email"]
assert not row["api_key"]
assert not row["password_hash"]
assert row["deletion_requested_at"] == stamp
post = get_table("posts").find_one(uid=post_uid)
assert post["deleted_at"] == stamp
assert session.get(f"{BASE_URL}/reports/mine", headers=JSON).status_code == 401
assert requests.get(f"{BASE_URL}/profile/{name}").status_code == 404
def test_only_the_account_holder_can_delete(app_server, seeded_db):
victim, victim_name = _member()
admin = requests.Session()
admin.post(
f"{BASE_URL}/auth/login",
data={"email": "alice@test.devplace", "password": "secret123"},
allow_redirects=True,
)
response = admin.post(
f"{BASE_URL}/profile/{victim_name}/delete",
data={"password": "secret123"},
headers=JSON,
)
assert response.status_code == 403
refresh_snapshot()
assert get_table("users").find_one(username=victim_name) is not None
def test_restore_from_trash_brings_the_whole_event_back(app_server, seeded_db):
session, name = _member()
post_uid = _post(session, title="Restorable post")
session.post(
f"{BASE_URL}/profile/{name}/delete",
data={"password": "secret123"},
headers=JSON,
)
refresh_snapshot()
assert get_table("posts").find_one(uid=post_uid)["deleted_at"]
admin = requests.Session()
admin.post(
f"{BASE_URL}/auth/login",
data={"email": "alice@test.devplace", "password": "secret123"},
allow_redirects=True,
)
response = admin.post(
f"{BASE_URL}/admin/trash/posts/{post_uid}/restore", headers=JSON
)
assert response.status_code == 200
refresh_snapshot()
assert get_table("posts").find_one(uid=post_uid)["deleted_at"] is None
def test_purging_after_the_grace_window_leaves_no_personal_data(app_server):
from devplacepy.services.moderation import deletion
session, name = _member()
post_uid = _post(session, title="Purged post")
refresh_snapshot()
uid = get_table("users").find_one(username=name)["uid"]
session.post(
f"{BASE_URL}/profile/{name}/delete",
data={"password": "secret123"},
headers=JSON,
)
refresh_snapshot()
assert get_table("users").find_one(uid=uid)["username"].startswith("deleted_")
from datetime import datetime, timedelta, timezone
later = datetime.now(timezone.utc) + timedelta(hours=deletion.grace_hours() + 1)
purged = deletion.purge_due(now=later)
assert purged >= 1
refresh_snapshot()
assert get_table("posts").find_one(uid=post_uid) is None
assert get_table("users").find_one(uid=uid) is None