feat(messages): add GET chat history endpoint with optional media#96
Open
jgalea wants to merge 1 commit into
Open
feat(messages): add GET chat history endpoint with optional media#96jgalea wants to merge 1 commit into
jgalea wants to merge 1 commit into
Conversation
Adds GET /api/sessions/:sessionId/messages/:chatId/history?limit&includeMedia to fetch chat history live from the WhatsApp client, bypassing the local DB. Useful for retrieving messages that arrived before the gateway started. When includeMedia=true, the adapter downloads media (base64) per message that has it. Defaults to text-only for smaller payloads. - Add IWhatsAppEngine.getChatHistory(chatId, limit?, includeMedia?) - Implement in whatsapp-web-js adapter via chat.fetchMessages() - Wire through MessageService and MessageController - Cover with unit tests
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.
Description
Adds a new endpoint to fetch chat history live from the WhatsApp client, bypassing the gateway's local DB. The current
GET /messagesonly returns messages persisted since the gateway started, so historical context for any given chat is unreachable through the API today.GET /api/sessions/:sessionId/messages/:chatId/history?limit=50&includeMedia=falselimit(default 50): max messages to returnincludeMedia(default false): when true, downloads media (base64) for messages that have it. Skipped by default to keep payloads small.Implementation
getChatHistory(chatId, limit?, includeMedia?)toIWhatsAppEnginewhatsapp-web-js.adapter.tsviachat.fetchMessages({ limit })MessageServiceandMessageControllerType of Change
Checklist
Testing
Tested locally against a live session:
?limit=60and got the full 60-message history.?includeMedia=trueand got base64 for 2 image messages (successfully decoded).