The change shipped end-to-end (58/58 tasks; live on trails.cool since 2026-06-07, soaked against Mastodon and flagship⇄staging). Delta specs synced into the mainline: - specs/social-federation/spec.md created (8 requirements: actor objects + WebFinger, signing keypairs, narrow inbox, outbox, push delivery, trails-only outbound, poll ingestion, audience filtering) - specs/social-follows/spec.md: social-activity-feed requirement updated for remote rows + audience gating; pending lifecycle for outbound remote follows added - specs/public-profiles/spec.md: Pending follow-button state added openspec validate --all: green. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
6.6 KiB
public-profiles Specification
Purpose
Profile pages at /users/:username, including the locked-account model (private profiles render a stub for non-followers), per-route visibility (public / unlisted / private) and the social-share metadata (Open Graph) that public pages emit. The drilldown collection routes (/users/:username/followers and /users/:username/following) and the access rule that gates them live in social-follows — this spec links to them but does not duplicate the rule.
Requirements
Requirement: Public profile page
The Journal SHALL serve a profile page at /users/:username for any user who exists. The render SHALL depend on the viewer relationship to the profile owner:
- If the username does not exist, return HTTP 404.
- If the owner's
profile_visibility = 'public', render the full profile (display name, handle, follower/following counts, public routes, public activities) regardless of who is viewing. - If the owner's
profile_visibility = 'private', render a stub page (header + handle + counts + lock badge) for non-owner viewers who do NOT have an accepted follow relation. Render the full profile for the owner themselves and for accepted followers.
The page SHALL display follower and following counts (always, regardless of stub vs. full). The counts SHALL link into /users/:username/followers and /users/:username/following only when the viewer is permitted to see the underlying lists (per social-follows); otherwise they render as plain text. For signed-in viewers other than the owner, the page SHALL render a Follow button whose label depends on the relation: "Follow" against a public profile with no relation, "Request to follow" against a private profile with no relation, "Requested" (cancellable) when a Pending request exists, "Unfollow" when an accepted relation exists.
Scenario: Logged-out visitor views a public profile
- WHEN an unauthenticated visitor navigates to
/users/:usernamefor a user whoseprofile_visibilityispublic - THEN the page renders the full profile (display name, handle, counts, public routes, public activities)
Scenario: Logged-out visitor views a private profile
- WHEN an unauthenticated visitor navigates to
/users/:usernamefor a user whoseprofile_visibilityisprivate - THEN the page returns HTTP 200 and renders the stub layout — header with display name, handle, and counts; a 🔒 "Private" badge; a body block with "This profile is private" and a sign-in prompt; no routes or activities are rendered
Scenario: Signed-in visitor views a private profile they don't follow
- WHEN a signed-in user other than the owner navigates to
/users/:usernamefor a private profile, with no follow row OR a Pending follow row - THEN the page returns 200 and renders the stub layout, plus a Follow button (or Pending indicator) so the viewer can request access
Scenario: Signed-in viewer with accepted follow sees full private profile
- WHEN a signed-in user with an accepted follow against a private user navigates to that user's profile
- THEN the page returns 200 and renders the full profile — same as a public profile would render — plus an Unfollow button
Scenario: Owner sees their own profile
- WHEN a user navigates to their own
/users/:usernamewhile logged in - THEN the full profile renders regardless of
profile_visibility, plus a small owner-only banner (blue "ownNote" for public profiles, amber "private/locked" explanation for private profiles), plus a link to settings; no Follow button is shown
Scenario: Profile 404 only for nonexistent users
- WHEN a visitor navigates to
/users/:usernamefor a username that does not exist - THEN the server responds with HTTP 404
Scenario: Profile page emits social-share metadata
- WHEN any visitor loads a populated
/users/:username(full or stub) - THEN the page emits Open Graph tags (
og:title,og:site_name,og:type="profile") so links shared on social platforms render a meaningful preview
Scenario: Counts degrade to plain text for viewers who can't see the lists
- WHEN a viewer who is not permitted to see the followers/following lists per
social-follows(e.g. an anonymous visitor or non-follower of a private profile) loads any profile page - THEN the follower and following counts render as plain text rather than as anchors, so the visible count doesn't surface a clickable link to a route that would 404
Requirement: Profile visibility setting (locked accounts)
Every user SHALL have an explicit profile_visibility of public or private. New accounts SHALL default to private (locked: profile is reachable but content is gated behind follow approval). Users SHALL be able to change their profile visibility from account settings at any time. private is functionally Mastodon's "locked" / "manually approves followers" — visitors see a stub with a Request-to-follow button, follows land in a Pending state, and content is only revealed to accepted followers.
Scenario: Default for a new account
- WHEN a user registers
- THEN their
profile_visibilityisprivate
Scenario: Existing user backfilled to public
- WHEN the migration that introduces
profile_visibilityruns against pre-existing rows - THEN every existing user's
profile_visibilityis set topublic, preserving current effective behavior (no surprise lock-down at deploy)
Scenario: User toggles profile to private
- WHEN a user changes their profile visibility to
privatein settings and saves - THEN subsequent visitor requests to
/users/:usernamereturn HTTP 200 but render a stub page (header + Request-to-follow button) with no content; existing follow rows are unaffected; new follows from anyone other than already-accepted followers are recorded as Pending
Scenario: User toggles profile back to public
- WHEN a previously-private user switches
profile_visibilitytopublicand saves - THEN their
/users/:usernamerenders the full profile to anyone again, and any incoming follows auto-accept going forward
Requirement: Pending state on Follow button
When a signed-in viewer has an outgoing follow against a profile that is accepted_at IS NULL (awaiting Accept(Follow) from the remote), the Follow button SHALL render in a Pending state with a cancel option, distinct from both the unfollowed and followed states.
Scenario: Pending state visible
- WHEN a signed-in user has just initiated a follow against a remote trails actor's profile
- THEN the profile page renders a "Pending" indicator with a cancel-request control instead of the Follow or Unfollow button