feat: add per-user avatar seed regeneration with irreversible random avatar replacement

Implement a new `avatar_seed` column on the users table that overrides the username-based seed for Multiavatar generation. Introduce a null-safe `avatar_seed(user)` choke point in `avatar.py` that resolves `user.get("avatar_seed") or user.get("username")`, registered as a Jinja global so every render site (`_avatar_link.html`, `avatar_url(...)` calls, SEO `og_image`, issues ad-hoc dicts, devRant payload/PNG) propagates a regenerated seed. Add `POST /profile/{username}/regenerate-avatar` endpoint (owner-or-admin only) that writes a fresh `generate_uid()` to `avatar_seed`, invalidates the target's user cache, and audits `profile.avatar.regenerate`. The previous seed is overwritten and never stored, making regeneration irreversible. Document the feature in `AGENTS.md` and `README.md`, add the API endpoint to `docs_api.py`, and include the `regenerate_avatar` Devii tool in `CONFIRM_REQUIRED`.
This commit is contained in:
2026-06-27 22:31:34 +00:00
parent e773067106
commit 6f340a6818
60 changed files with 1626 additions and 97 deletions
+46
View File
@@ -28,3 +28,49 @@ def test_json_404_error_envelope(app_server):
r = requests.get(f"{BASE_URL}/posts/does-not-exist-xyz", headers=JSON_content_negotiation)
assert r.status_code == 404
assert r.json()["error"]["status"] == 404
def test_viewing_post_marks_notification_read(app_server):
from datetime import datetime, timezone
from devplacepy.database import (
get_table,
refresh_snapshot,
resolve_object_url,
)
from devplacepy.utils import generate_uid
session, name = _session_content_negotiation()
created = session.post(
f"{BASE_URL}/posts/create",
headers=JSON_content_negotiation,
data={
"title": f"mark read {int(time.time() * 1000)}",
"content": "post body for notification mark read",
"topic": "devlog",
},
).json()["data"]
post_uid = created["uid"]
refresh_snapshot()
user = get_table("users").find_one(username=name)
target_url = resolve_object_url("post", post_uid)
notif_uid = generate_uid()
get_table("notifications").insert(
{
"uid": notif_uid,
"user_uid": user["uid"],
"type": "comment",
"message": "someone commented",
"related_uid": post_uid,
"target_url": f"{target_url}#comment-x",
"read": False,
"created_at": datetime.now(timezone.utc).isoformat(),
}
)
refresh_snapshot()
r = session.get(f"{BASE_URL}{target_url}", allow_redirects=True)
assert r.status_code == 200
refresh_snapshot()
assert bool(get_table("notifications").find_one(uid=notif_uid)["read"]) is True