salix/back/methods/chat/sendQueued.js

177 lines
5.3 KiB
JavaScript
Raw Normal View History

2022-06-01 11:49:45 +00:00
const axios = require('axios');
2024-05-21 13:11:32 +00:00
const isProduction = require('vn-loopback/server/boot/isProduction');
2022-06-01 11:49:45 +00:00
module.exports = Self => {
Self.remoteMethodCtx('sendQueued', {
description: 'Send a RocketChat message',
accessType: 'WRITE',
returns: {
type: 'object',
root: true
},
http: {
path: `/sendQueued`,
2022-09-13 11:53:44 +00:00
verb: 'POST'
2022-06-01 11:49:45 +00:00
}
});
2022-06-03 11:44:42 +00:00
Self.sendQueued = async() => {
2022-06-01 11:49:45 +00:00
const models = Self.app.models;
2022-06-02 12:55:39 +00:00
const chats = await models.Chat.find({
where: {
2023-01-04 10:23:06 +00:00
status: {
2023-03-21 10:26:25 +00:00
nin: [
'sent',
'sending'
]
2023-01-04 10:23:06 +00:00
},
attempts: {lt: 3}
2022-06-02 12:55:39 +00:00
}
});
2022-06-01 11:49:45 +00:00
2022-06-02 12:55:39 +00:00
for (let chat of chats) {
if (chat.checkUserStatus) {
try {
2022-06-03 11:36:21 +00:00
await Self.sendCheckingUserStatus(chat);
2023-03-21 10:26:25 +00:00
await Self.updateChat(chat, 'sent');
} catch (error) {
2023-03-21 10:26:25 +00:00
await Self.updateChat(chat, 'error', error);
}
} else {
try {
2022-06-03 11:36:21 +00:00
await Self.sendMessage(chat.senderFk, chat.recipient, chat.message);
2023-03-21 10:26:25 +00:00
await Self.updateChat(chat, 'sent');
} catch (error) {
2023-03-21 10:26:25 +00:00
await Self.updateChat(chat, 'error', error);
}
}
2022-06-01 11:49:45 +00:00
}
};
2022-06-03 11:44:42 +00:00
/**
* Check user status in Rocket
*
* @param {object} chat - The sender id
* @return {Promise} - The request promise
*/
2022-06-03 11:36:21 +00:00
Self.sendCheckingUserStatus = async function sendCheckingUserStatus(chat) {
2022-06-02 12:55:39 +00:00
const models = Self.app.models;
const recipientName = chat.recipient.slice(1);
const recipient = await models.VnUser.findOne({
2022-06-02 12:55:39 +00:00
where: {
name: recipientName
2022-06-02 12:55:39 +00:00
}
});
2022-06-03 11:36:21 +00:00
const {data} = await Self.getUserStatus(recipient.name);
if (data) {
if (data.status === 'offline' || data.status === 'busy') {
// Send message to department room
const workerDepartment = await models.WorkerDepartment.findById(recipient.id, {
include: {
relation: 'department'
}
});
const department = workerDepartment && workerDepartment.department();
const channelName = department && department.chatName;
if (channelName)
2022-07-27 07:16:49 +00:00
return Self.sendMessage(chat.senderFk, `#${channelName}`, `@${recipient.name}${chat.message}`);
else
2022-06-03 11:48:44 +00:00
return Self.sendMessage(chat.senderFk, `@${recipient.name}`, chat.message);
} else
2022-06-03 11:48:44 +00:00
return Self.sendMessage(chat.senderFk, `@${recipient.name}`, chat.message);
}
2022-06-03 11:36:21 +00:00
};
/**
2022-06-03 11:44:42 +00:00
* Send a rocket message
*
* @param {object} senderFk - The sender id
* @param {string} recipient - The user (@) or channel (#) to send the message
* @param {string} message - The message to send
* @return {Promise} - The request promise
*/
2022-06-03 11:36:21 +00:00
Self.sendMessage = async function sendMessage(senderFk, recipient, message) {
2024-05-21 13:11:32 +00:00
if (!isProduction(false)) {
2022-06-03 12:02:23 +00:00
return new Promise(resolve => {
return resolve({
statusCode: 200,
message: 'Fake notification sent'
});
});
}
2022-06-01 11:49:45 +00:00
const models = Self.app.models;
const sender = await models.VnUser.findById(senderFk);
2022-06-02 12:55:39 +00:00
2022-06-01 11:49:45 +00:00
const login = await Self.getServiceAuth();
const avatar = `${login.host}/avatar/${sender.name}`;
const options = {
headers: {
'X-Auth-Token': login.auth.token,
'X-User-Id': login.auth.userId
},
};
return axios.post(`${login.api}/chat.postMessage`, {
2022-06-03 12:02:23 +00:00
'channel': recipient,
2022-06-01 11:49:45 +00:00
'avatar': avatar,
'alias': sender.nickname,
'text': message
2022-06-01 11:49:45 +00:00
}, options);
2022-06-03 11:36:21 +00:00
};
/**
2022-06-03 11:36:21 +00:00
* Update status and attempts of a chat
*
* @param {object} chat - The chat
* @param {string} status - The new status
2022-07-27 07:16:49 +00:00
* @param {string} error - The error
2023-02-08 14:15:26 +00:00
* @param {object} options - Query options
2022-06-03 11:36:21 +00:00
* @return {Promise} - The request promise
2023-02-08 14:15:26 +00:00
*/
2023-01-04 10:23:06 +00:00
2023-02-08 14:15:26 +00:00
Self.updateChat = async(chat, status, error) => {
return chat.updateAttributes({
status: status,
2022-07-27 07:16:49 +00:00
attempts: ++chat.attempts,
error: error
});
2023-02-08 14:15:26 +00:00
};
/**
2022-06-03 11:36:21 +00:00
* Returns the current user status on Rocketchat
*
* @param {string} username - The recipient user name
* @return {Promise} - The request promise
*/
Self.getUserStatus = async function getUserStatus(username) {
2024-05-21 13:11:32 +00:00
if (!isProduction(false)) {
return new Promise(resolve => {
return resolve({
data: {
status: 'online'
}
});
});
}
const login = await Self.getServiceAuth();
const options = {
params: {username},
headers: {
'X-Auth-Token': login.auth.token,
'X-User-Id': login.auth.userId
},
};
return axios.get(`${login.api}/users.getStatus`, options);
2022-06-03 11:36:21 +00:00
};
2022-06-01 11:49:45 +00:00
};