Add /updates endpoint — unified polling for mail, status, social#568
Merged
Add /updates endpoint — unified polling for mail, status, social#568
Conversation
Single lightweight endpoint the client polls instead of fetching
full HTML fragments or hitting multiple services:
GET /updates?since=1713254400
→ {"mail":3,"status":2,"social":1,"ts":1713254401}
- mail: unread count (personal, always current, not since-based)
- status: new status entries since the given unix timestamp
- social: new messages since timestamp
- ts: server timestamp to send back on next poll
Implementation:
- user.StatusCountSince(since, viewerID) — counts status entries
newer than the given time, respects ban visibility
- social.CountSince(since) — counts messages newer than the given
time
- mail.GetUnreadCount(userID) — already existed
Home page JS updated: instead of fetching /user/status/stream every
10 seconds regardless, polls /updates, and only fetches the stream
fragment when status > 0. Also updates the mail badge from the same
poll — replacing the separate fetch in mu.js. Much cheaper: one
tiny JSON response vs a full HTML fragment on every tick.
https://claude.ai/code/session_01GRGLA9yj7BpqKiyi6xFwnm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Single lightweight endpoint the client polls instead of fetching full HTML fragments or hitting multiple services:
GET /updates?since=1713254400
→ {"mail":3,"status":2,"social":1,"ts":1713254401}
Implementation:
Home page JS updated: instead of fetching /user/status/stream every 10 seconds regardless, polls /updates, and only fetches the stream fragment when status > 0. Also updates the mail badge from the same poll — replacing the separate fetch in mu.js. Much cheaper: one tiny JSON response vs a full HTML fragment on every tick.
https://claude.ai/code/session_01GRGLA9yj7BpqKiyi6xFwnm