salix/back/methods/chat/sendQueued.js

169 lines
5.1 KiB
JavaScript
Raw Normal View History

2022-06-01 11:49:45 +00:00
const axios = require('axios');
module.exports = Self => {
Self.remoteMethodCtx('sendQueued', {
description: 'Send a RocketChat message',
accessType: 'WRITE',
2022-06-02 12:55:39 +00:00
accepts: [],
2022-06-01 11:49:45 +00:00
returns: {
type: 'object',
root: true
},
http: {
path: `/sendQueued`,
verb: 'POST'
}
});
2022-06-03 11:44:42 +00:00
Self.sendQueued = async() => {
2022-06-01 11:49:45 +00:00
const models = Self.app.models;
const maxAttempts = 3;
2022-06-02 12:55:39 +00:00
const sentStatus = 1;
const errorStatus = 2;
2022-06-02 12:55:39 +00:00
const chats = await models.Chat.find({
where: {
status: {neq: sentStatus},
attempts: {lt: maxAttempts}
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);
await updateChat(chat, sentStatus);
} catch (error) {
await updateChat(chat, errorStatus);
}
} else {
try {
2022-06-03 11:36:21 +00:00
await Self.sendMessage(chat.senderFk, chat.recipient, chat.message);
await updateChat(chat, sentStatus);
} catch (error) {
await updateChat(chat, errorStatus);
}
}
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);
2022-06-02 12:55:39 +00:00
const recipient = await models.Account.findOne({
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)
return sendMessage(chat.senderFk, `#${channelName}`, `@${recipient.name}${message}`);
else
return sendMessage(chat.senderFk, `@${recipient.name}`, chat.message);
} else
return 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) {
2022-06-01 11:49:45 +00:00
if (process.env.NODE_ENV !== 'production') {
return new Promise(resolve => {
return resolve({
statusCode: 200,
message: 'Fake notification sent'
});
});
}
const models = Self.app.models;
const sender = await models.Account.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`, {
'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
* @return {Promise} - The request promise
*/
async function updateChat(chat, status) {
return chat.updateAttributes({
status: status,
attempts: ++chat.attempts
});
}
/**
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) {
if (process.env.NODE_ENV !== 'production') {
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
};