forked from ookamiiixd/baileys-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
getMessages.js
37 lines (29 loc) · 1016 Bytes
/
getMessages.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import { getSession } from '../whatsapp.js'
import response from './../response.js'
const getMessages = async (req, res) => {
const session = getSession(res.locals.sessionId)
/* eslint-disable camelcase */
const { jid } = req.params
const { limit = 25, cursor_id = null, cursor_fromMe = null } = req.query
const cursor = {}
if (cursor_id) {
cursor.before = {
id: cursor_id,
fromMe: Boolean(cursor_fromMe && cursor_fromMe === 'true'),
}
}
/* eslint-enable camelcase */
try {
let messages
const useCursor = 'before' in cursor ? cursor : null
if (session.isLegacy) {
messages = await session.fetchMessagesFromWA(jid, limit, useCursor)
} else {
messages = await session.store.loadMessages(jid, limit, useCursor)
}
response(res, 200, true, '', messages)
} catch {
response(res, 500, false, 'Failed to load messages.')
}
}
export default getMessages