Tims-Chat/files_wcf/js/Bastelstu.be/Chat/Messenger.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

81 lines
2.0 KiB
JavaScript
Raw Normal View History

2018-08-16 22:30:59 +00:00
/*
2021-02-04 22:04:35 +00:00
* Copyright (c) 2010-2021 Tim Düsterhus.
2018-08-16 22:30:59 +00:00
*
* Use of this software is governed by the Business Source License
* included in the LICENSE file.
*
2022-03-04 20:21:52 +00:00
* Change Date: 2026-03-04
2018-08-16 22:30:59 +00:00
*
* On the date above, in accordance with the Business Source
* License, use of this software will be governed by version 2
* or later of the General Public License.
*/
define(['./console', 'Bastelstu.be/PromiseWrap/Ajax', './Room'], function (
console,
Ajax,
Room
) {
'use strict'
const DEPENDENCIES = ['sessionID', 'Room', 'Message']
class Messenger {
constructor(sessionID, room, Message) {
if (!(room instanceof Room))
throw new TypeError('You must pass a Room to the Messenger')
this.sessionID = sessionID
this.room = room
this.Message = Message
}
async pull(from = 0, to = 0, inLog = false) {
console.debug(`Messenger.pull`, 'from', from, 'to', to, 'inLog', inLog)
const payload = { actionName: 'pull', parameters: { inLog } }
if (from !== 0 && to !== 0) {
throw new Error('You must not set both from and to')
}
if (from !== 0) payload.parameters.from = from
if (to !== 0) payload.parameters.to = to
const data = await Ajax.api(this, payload)
const messages = Object.values(data.returnValues.messages).map((item) =>
this.Message.instance(item)
2020-11-01 16:41:19 +00:00
)
2018-08-16 22:30:59 +00:00
const { from: newFrom, to: newTo } = data.returnValues
return { messages, from: newFrom, to: newTo }
}
async push({ commandID, parameters }) {
const payload = {
actionName: 'push',
parameters: { commandID, parameters: JSON.stringify(parameters) },
}
return Ajax.api(this, payload)
}
async pushAttachment(tmpHash) {
2020-11-01 11:03:04 +00:00
const payload = { actionName: 'pushAttachment', parameters: { tmpHash } }
return Ajax.api(this, payload)
}
2018-08-16 22:30:59 +00:00
_ajaxSetup() {
return {
silent: true,
ignoreError: true,
data: {
className: 'chat\\data\\message\\MessageAction',
parameters: { roomID: this.room.roomID, sessionID: this.sessionID },
},
}
}
}
Messenger.DEPENDENCIES = DEPENDENCIES
return Messenger
})