2017-06-07 17:24:48 +00:00
|
|
|
/**
|
|
|
|
* Interface between the graphical conversation system and the API
|
|
|
|
*
|
|
|
|
* @author Pierre HUBERT
|
|
|
|
*/
|
|
|
|
|
2020-04-10 11:51:36 +00:00
|
|
|
const ConversationsInterface = {
|
2017-06-11 13:14:23 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var {Object} __conversationsList Cached list of conversations
|
|
|
|
*/
|
2017-06-16 09:42:28 +00:00
|
|
|
__conversationsList: {},
|
2017-06-11 13:14:23 +00:00
|
|
|
|
2020-04-01 12:14:08 +00:00
|
|
|
/**
|
|
|
|
* @var {any} __registeredList The list of conversatins
|
|
|
|
*/
|
|
|
|
__registeredList: {},
|
|
|
|
|
2017-06-11 13:14:23 +00:00
|
|
|
/**
|
|
|
|
* Get and return the list of available conversations
|
|
|
|
*
|
|
|
|
* @param {Function} onceGotList What to do next
|
|
|
|
* @param {Boolean} force Force the list to be loaded even if present in the cache
|
|
|
|
* @return {Boolean} True for a success
|
|
|
|
*/
|
|
|
|
getList: function(onceGotList, force){
|
|
|
|
|
|
|
|
//First, check if the list is already present in the cache or not
|
|
|
|
if(this.__conversationsList && !force){
|
|
|
|
//Perform next action now
|
|
|
|
onceGotList(this.__conversationsList);
|
|
|
|
}
|
|
|
|
|
|
|
|
//Else, prepare an API request
|
|
|
|
var apiURI = "conversations/getList";
|
|
|
|
var params = {}; //No params required now
|
|
|
|
|
|
|
|
//Perform the API request
|
2021-03-05 14:41:31 +00:00
|
|
|
ComunicWeb.common.api.makeAPIrequest(apiURI, params, true, (results) => {
|
2017-06-11 13:14:23 +00:00
|
|
|
|
|
|
|
//Check for error
|
|
|
|
if(results.error){
|
|
|
|
//Log error
|
|
|
|
ComunicWeb.debug.logMessage("ERROR : couldn't get conversations list !");
|
|
|
|
|
|
|
|
//Perform next action
|
|
|
|
onceGotList(results);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
//Process the list
|
|
|
|
var conversationsList = {};
|
|
|
|
for(i in results){
|
2021-03-05 14:41:31 +00:00
|
|
|
conversationsList["conversation-"+results[i].id] = results[i];
|
2017-06-11 13:14:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//Save the list in the cache
|
|
|
|
ComunicWeb.components.conversations.interface.__conversationsList = conversationsList;
|
|
|
|
|
|
|
|
//Perform next action
|
|
|
|
onceGotList(conversationsList);
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2017-06-07 17:24:48 +00:00
|
|
|
/**
|
|
|
|
* Create a conversation
|
|
|
|
*
|
|
|
|
* @param {Object} infos Informations about the conversation to create
|
2017-06-10 07:42:09 +00:00
|
|
|
* * @info {Array} users A list of the members of the conversation
|
2017-06-17 15:32:21 +00:00
|
|
|
* * @info {Boolean} follow Defines if the current user wants to follow the conversation or not
|
2017-06-10 07:42:09 +00:00
|
|
|
* * @info {Mixed} conversationName The name of the conversation
|
2017-06-07 17:24:48 +00:00
|
|
|
* @param {Function} afterCreate What to do once the conversation is created
|
|
|
|
* @return {Boolean} True for a success
|
|
|
|
*/
|
2017-06-10 07:42:09 +00:00
|
|
|
createConversation: function(infos, afterCreate){
|
|
|
|
|
|
|
|
//Prepare an API request
|
|
|
|
var apiURI = "conversations/create";
|
|
|
|
var params = {
|
|
|
|
name: infos.conversationName,
|
|
|
|
follow : infos.follow,
|
|
|
|
users: infos.users,
|
2021-03-06 18:03:25 +00:00
|
|
|
color: infos.color == null ? "" : infos.color.replace("#", "").toUpperCase(),
|
2020-04-26 12:41:09 +00:00
|
|
|
canEveryoneAddMembers: infos.allowEveryoneToAddMembersInput
|
2017-06-10 07:42:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//Perform the API request
|
|
|
|
ComunicWeb.common.api.makeAPIrequest(apiURI, params, true, function(result){
|
|
|
|
|
|
|
|
//Check for errors
|
|
|
|
if(result.error){
|
|
|
|
//Log error
|
|
|
|
ComunicWeb.debug.logMessage("ERROR ! Couldn't create a conversation!");
|
|
|
|
}
|
|
|
|
|
|
|
|
//Perform next action
|
|
|
|
afterCreate(result);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
//Success
|
|
|
|
return true;
|
2017-06-11 13:14:23 +00:00
|
|
|
},
|
2017-06-16 09:42:28 +00:00
|
|
|
|
2017-06-17 15:32:21 +00:00
|
|
|
/**
|
|
|
|
* Update conversation settings
|
|
|
|
*
|
|
|
|
* @param {infos} infos Informations about the conversation to update
|
|
|
|
* @info {Integer} conversationID The ID of the conversation to update
|
|
|
|
* @info {Boolean} following Specify if the user is following the conversation or not
|
|
|
|
* @info {String} name Specify a new name for the conversation
|
2021-03-07 13:08:01 +00:00
|
|
|
* @info {String} color Specify a new color for the conversation
|
2017-06-17 15:32:21 +00:00
|
|
|
* @param {function} callback The function callback
|
|
|
|
*/
|
|
|
|
updateSettings: function(infos, callback){
|
2017-06-18 07:23:08 +00:00
|
|
|
//Prepare the API request
|
|
|
|
var apiURI = "conversations/updateSettings";
|
|
|
|
var params = {
|
|
|
|
conversationID: infos.conversationID
|
|
|
|
};
|
|
|
|
|
|
|
|
//Add conversation name (if specified)
|
2017-06-18 09:14:26 +00:00
|
|
|
if(infos.name !== undefined)
|
2021-03-07 13:12:47 +00:00
|
|
|
params.name = infos.name == null ? "" : infos.name;
|
2017-06-18 07:23:08 +00:00
|
|
|
|
|
|
|
//Add conversation following status (if specified)
|
|
|
|
if(infos.following !== undefined)
|
|
|
|
params.following = infos.following;
|
|
|
|
|
2020-04-25 16:20:29 +00:00
|
|
|
if(infos.canEveryoneAddMembers !== undefined)
|
|
|
|
params.canEveryoneAddMembers = infos.canEveryoneAddMembers;
|
|
|
|
|
2021-03-07 13:08:01 +00:00
|
|
|
if(infos.color !== undefined)
|
|
|
|
params.color = infos.color == null ? "" : infos.color.replace("#", "").toUpperCase();
|
|
|
|
|
2017-06-18 07:23:08 +00:00
|
|
|
//Perform API request
|
|
|
|
ComunicWeb.common.api.makeAPIrequest(apiURI, params, true, function(result){
|
2017-06-18 09:14:26 +00:00
|
|
|
//Empty the cache (considered as deprecated)
|
|
|
|
ComunicWeb.components.conversations.interface.emptyCache(true);
|
|
|
|
|
|
|
|
//Perform next action
|
|
|
|
callback(result);
|
|
|
|
|
2017-06-18 07:23:08 +00:00
|
|
|
});
|
2017-06-17 15:32:21 +00:00
|
|
|
},
|
|
|
|
|
2017-06-16 09:42:28 +00:00
|
|
|
/**
|
|
|
|
* Get informations about a unique conversation
|
|
|
|
*
|
|
|
|
* @param {Integer} conversationID The ID of the conversation
|
|
|
|
* @param {function} nextStep What to do once the operation is completed
|
|
|
|
* @param {Boolean} forceRefresh Force informations about the conversation to be fetched (ignore cached informations)
|
|
|
|
* @return {Boolan} True for a success
|
|
|
|
*/
|
|
|
|
getInfosOne: function(conversationID, nextStep, forceRefresh){
|
|
|
|
|
|
|
|
//First, if the conversation is available in the cache
|
|
|
|
if(!forceRefresh && this.__conversationsList['conversation-'+conversationID]){
|
|
|
|
|
|
|
|
//Perform next action now without getting fresh informations on the server
|
|
|
|
nextStep(this.__conversationsList['conversation-'+conversationID]);
|
|
|
|
|
|
|
|
//Success
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Else, perform an API request
|
2021-03-05 14:26:45 +00:00
|
|
|
var apiURI = "conversations/get_single";
|
2017-06-16 17:11:41 +00:00
|
|
|
var params = {
|
|
|
|
conversationID: conversationID,
|
|
|
|
};
|
|
|
|
|
|
|
|
//Perform the API request
|
|
|
|
ComunicWeb.common.api.makeAPIrequest(apiURI, params, true, function(result){
|
|
|
|
|
|
|
|
//Check for errors
|
|
|
|
if(result.error){
|
|
|
|
|
|
|
|
//Log error
|
2018-05-13 13:40:19 +00:00
|
|
|
ComunicWeb.debug.logMessage("Couldn't get informations about the conversation number "+conversationID+" !");
|
2017-06-16 17:11:41 +00:00
|
|
|
|
|
|
|
//Perform next action now
|
|
|
|
nextStep(result);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Else it is a success
|
|
|
|
//Cache the result
|
|
|
|
ComunicWeb.components.conversations.interface.__conversationsList["conversation-"+conversationID] = result;
|
|
|
|
|
|
|
|
//Perform next action
|
|
|
|
nextStep(result);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
});
|
2017-06-16 09:42:28 +00:00
|
|
|
|
|
|
|
//Success
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
|
2017-06-19 12:55:29 +00:00
|
|
|
/**
|
|
|
|
* Search for private conversation
|
|
|
|
*
|
|
|
|
* @param {Integer} otherUser The ID of the other user
|
|
|
|
* @param {Boolean} allowCreation Allow the server to create the conversation if not found
|
|
|
|
* @param {function} callback What to do once the request is completed
|
|
|
|
* @return {Boolean} True for a success
|
|
|
|
*/
|
|
|
|
searchPrivate: function(otherUser, allowCreation, callback){
|
|
|
|
|
|
|
|
//Perform an API request
|
|
|
|
var apiURI = "conversations/getPrivate";
|
|
|
|
var params = {
|
|
|
|
otherUser: otherUser,
|
|
|
|
allowCreate: allowCreation
|
|
|
|
}
|
|
|
|
|
|
|
|
//Perform API request
|
|
|
|
ComunicWeb.common.api.makeAPIrequest(apiURI, params, true, function(result){
|
|
|
|
|
|
|
|
//Check for errors
|
|
|
|
if(result.error)
|
|
|
|
ComunicWeb.debug.logMessage("An error occured while trying to get a private conversation ID !");
|
|
|
|
|
|
|
|
//Perfrorm next action
|
|
|
|
callback(result);
|
|
|
|
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2017-06-22 09:16:53 +00:00
|
|
|
/**
|
|
|
|
* Send a new message
|
|
|
|
*
|
2021-03-06 09:35:54 +00:00
|
|
|
* @param {number} convID The ID of the conversation
|
|
|
|
* @param {string} message The message to send (if not a file)
|
|
|
|
* @param {HTMLInputElement} file The file to send (if any)
|
2017-06-22 09:16:53 +00:00
|
|
|
*/
|
2021-03-06 09:35:54 +00:00
|
|
|
sendMessage: async function(convID, message, file){
|
2017-06-22 09:16:53 +00:00
|
|
|
|
|
|
|
//Perform an API request
|
2017-06-23 17:01:15 +00:00
|
|
|
var apiURI = "conversations/sendMessage";
|
2018-04-21 09:00:13 +00:00
|
|
|
|
2021-03-06 09:35:54 +00:00
|
|
|
// Check whether a file has to be sent or not
|
|
|
|
if(!file){
|
2018-04-21 09:00:13 +00:00
|
|
|
|
|
|
|
//Prepare request
|
|
|
|
var params = {
|
2021-03-06 09:35:54 +00:00
|
|
|
message: message,
|
|
|
|
conversationID: convID,
|
2018-04-21 09:00:13 +00:00
|
|
|
};
|
2017-06-22 09:16:53 +00:00
|
|
|
|
2018-04-21 09:00:13 +00:00
|
|
|
//Perform an API request
|
2021-03-06 09:35:54 +00:00
|
|
|
await api(apiURI, params, true);
|
2018-04-21 09:00:13 +00:00
|
|
|
}
|
|
|
|
|
2021-03-06 09:35:54 +00:00
|
|
|
//If we have a file, we must do a formdata request
|
2018-04-21 09:00:13 +00:00
|
|
|
else {
|
|
|
|
|
|
|
|
var fd = new FormData();
|
2021-03-06 09:35:54 +00:00
|
|
|
fd.append("conversationID", convID);
|
|
|
|
fd.append("file", file.files[0], file.files[0].name);
|
2018-04-21 09:00:13 +00:00
|
|
|
|
|
|
|
//Perform an API request
|
2021-03-06 09:35:54 +00:00
|
|
|
await APIClient.execFormData(apiURI, fd, true);
|
2018-04-21 09:00:13 +00:00
|
|
|
}
|
2017-06-22 09:16:53 +00:00
|
|
|
},
|
|
|
|
|
2021-03-07 13:55:00 +00:00
|
|
|
/**
|
|
|
|
* Send a new conversation image
|
|
|
|
*
|
|
|
|
* @param {number} convID The ID of the target conversation
|
|
|
|
* @param {HTMLInputElement} input The file to send
|
|
|
|
*/
|
|
|
|
sendNewConversationImage: async function(convID, input) {
|
|
|
|
let fd = new FormData();
|
|
|
|
fd.append("convID", convID);
|
|
|
|
fd.append("file", input.files[0], input.files[0].name);
|
|
|
|
|
|
|
|
await APIClient.execFormData("conversations/change_image", fd, true)
|
|
|
|
},
|
|
|
|
|
2021-03-07 14:25:18 +00:00
|
|
|
/**
|
|
|
|
* Delete current conversation image
|
|
|
|
*
|
|
|
|
* @param {number} convID Target converstain ID
|
|
|
|
*/
|
|
|
|
deleteConversationImage: async function(convID) {
|
|
|
|
await api("conversations/delete_image", {
|
|
|
|
convID: convID
|
|
|
|
}, true)
|
|
|
|
},
|
|
|
|
|
2017-06-25 14:15:23 +00:00
|
|
|
/**
|
|
|
|
* Refresh a conversation
|
|
|
|
*
|
|
|
|
* @param {Array} newConversations New conversations (which requires the 10 last messages)
|
|
|
|
* @param {Object} toRefresh Conversations to refresh
|
|
|
|
* @param {Function} callback The callback function
|
|
|
|
* @return {Boolean} True for a success
|
|
|
|
*/
|
|
|
|
refreshConversations: function(newConversations, toRefresh, callback){
|
|
|
|
|
|
|
|
//Perform a request on the API
|
|
|
|
var apiURI = "conversations/refresh";
|
|
|
|
var params = {
|
|
|
|
newConversations: newConversations,
|
|
|
|
toRefresh: JSON.stringify(toRefresh),
|
|
|
|
}
|
|
|
|
|
|
|
|
//Perform an API request
|
|
|
|
ComunicWeb.common.api.makeAPIrequest(apiURI, params, true, callback);
|
|
|
|
|
|
|
|
//Success
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
|
2018-02-24 13:24:33 +00:00
|
|
|
/**
|
|
|
|
* Get the list of unread conversations
|
|
|
|
*
|
2021-03-05 13:37:22 +00:00
|
|
|
* @returns {Promise<UnreadConversation[]>}
|
2018-02-24 13:24:33 +00:00
|
|
|
*/
|
2021-03-05 13:37:22 +00:00
|
|
|
getUnreadConversations: async function() {
|
|
|
|
return await api("conversations/get_list_unread", null, true);
|
2018-02-24 13:24:33 +00:00
|
|
|
},
|
|
|
|
|
2018-04-26 15:55:38 +00:00
|
|
|
/**
|
|
|
|
* Get older message of a conversation
|
|
|
|
*
|
|
|
|
* @param {number} conversationID The ID of the conversation
|
|
|
|
* @param {number} oldestMessageID The ID of the oldest message known
|
|
|
|
* @param {number} limit The limit
|
|
|
|
* @param {function} callback
|
|
|
|
*/
|
|
|
|
getOlderMessages: function(conversationID, oldestMessageID, limit, callback){
|
|
|
|
|
|
|
|
//Perform a request on the API
|
|
|
|
var apiURI = "conversations/get_older_messages";
|
|
|
|
var params = {
|
|
|
|
conversationID: conversationID,
|
|
|
|
oldest_message_id: oldestMessageID,
|
|
|
|
limit: limit
|
|
|
|
};
|
|
|
|
|
|
|
|
ComunicWeb.common.api.makeAPIrequest(apiURI, params, true, callback);
|
|
|
|
},
|
|
|
|
|
2018-05-14 15:23:33 +00:00
|
|
|
/**
|
|
|
|
* Get the the lastest messages of a single conversation
|
|
|
|
*
|
|
|
|
* @param {Number} convID Target conversation ID
|
|
|
|
* @param {Number} lastMessageID The ID of the last known message
|
|
|
|
* @param {function} callback
|
|
|
|
*/
|
|
|
|
refreshSingleConversation: function(convID, lastMessageID, callback){
|
|
|
|
|
|
|
|
//Perform a request on the API
|
|
|
|
var apiURI = "conversations/refresh_single";
|
|
|
|
var params = {
|
|
|
|
conversationID: convID,
|
|
|
|
last_message_id: lastMessageID
|
|
|
|
};
|
|
|
|
|
|
|
|
ComunicWeb.common.api.makeAPIrequest(apiURI, params, true, callback);
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2020-04-01 12:14:08 +00:00
|
|
|
/**
|
|
|
|
* Asynchronoulsy refresh a single conversation
|
|
|
|
*
|
|
|
|
* @param convID The ID of the target conversation
|
|
|
|
* @param lastMessageID The ID of the last known message
|
|
|
|
*/
|
|
|
|
asyncRefreshSingle: function(convID, lastMessageID) {
|
|
|
|
return new Promise((res, err) => {
|
|
|
|
this.refreshSingleConversation(convID, lastMessageID, (list) => {
|
|
|
|
if(list.error)
|
|
|
|
err(list.error);
|
|
|
|
else
|
|
|
|
res(list);
|
|
|
|
})
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register a conversation remotly
|
|
|
|
*
|
|
|
|
* @param {Number} convID
|
|
|
|
*/
|
|
|
|
register: async function(convID) {
|
|
|
|
if(this.__registeredList.hasOwnProperty(convID))
|
|
|
|
this.__registeredList[convID]++;
|
|
|
|
|
|
|
|
else {
|
|
|
|
this.__registeredList[convID] = 1;
|
|
|
|
|
|
|
|
await ws("$main/register_conv", {
|
|
|
|
convID: convID
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unregister to new messages of a conversation
|
|
|
|
*
|
|
|
|
* @param {Number} convID
|
|
|
|
*/
|
|
|
|
unregister: async function(convID) {
|
|
|
|
|
|
|
|
if(!this.__registeredList.hasOwnProperty(convID))
|
|
|
|
return;
|
|
|
|
|
|
|
|
this.__registeredList[convID]--;
|
|
|
|
|
|
|
|
if(this.__registeredList[convID] == 0) {
|
|
|
|
delete this.__registeredList[convID];
|
|
|
|
|
|
|
|
await ws("$main/unregister_conv", {
|
|
|
|
convID: convID
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2019-01-11 16:57:55 +00:00
|
|
|
/**
|
2019-01-11 17:17:37 +00:00
|
|
|
* Intend to update the content of a single message
|
|
|
|
*
|
|
|
|
* @param {Number} messageID The ID of the message to update
|
|
|
|
* @param {String} content New content for the message
|
|
|
|
* @param {(success : Boolean) => any} callback Function called when
|
|
|
|
* the request is terminated
|
|
|
|
*/
|
|
|
|
UpdateSingleMessage: function(messageID, content, callback){
|
|
|
|
ComunicWeb.common.api.makeAPIrequest(
|
|
|
|
"conversations/updateMessage",
|
|
|
|
{
|
|
|
|
"messageID": messageID,
|
|
|
|
"content": content
|
|
|
|
},
|
|
|
|
true,
|
|
|
|
|
|
|
|
function(result){
|
|
|
|
callback(result.error ? false : true);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2019-01-11 16:57:55 +00:00
|
|
|
* Intend to delete a single conversation message
|
|
|
|
*
|
|
|
|
* @param {Number} messageID The ID of the message to delete
|
|
|
|
* @param {(success: Boolean) => any} callback Function to call once the
|
|
|
|
* conversation message has been deleted
|
|
|
|
*/
|
|
|
|
DeleteSingleMessage: function(messageID, callback){
|
|
|
|
|
|
|
|
ComunicWeb.common.api.makeAPIrequest(
|
|
|
|
"conversations/deleteMessage",
|
|
|
|
{"messageID": messageID},
|
|
|
|
true,
|
|
|
|
|
|
|
|
function(result){
|
|
|
|
callback(result.error ? false : true);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2021-03-06 16:43:27 +00:00
|
|
|
/**
|
|
|
|
* Add a user to a conversation
|
|
|
|
*
|
|
|
|
* @param {number} convID Conversation ID
|
|
|
|
* @param {number} userID Target user
|
|
|
|
*/
|
|
|
|
addUser: async function(convID, userID) {
|
|
|
|
await api("conversations/addMember", {
|
|
|
|
convID: convID,
|
|
|
|
userID: userID
|
|
|
|
}, true);
|
|
|
|
},
|
|
|
|
|
2021-03-06 17:15:21 +00:00
|
|
|
/**
|
|
|
|
* Toggle admin status of a user
|
|
|
|
*
|
|
|
|
* @param {number} convID Conversation ID
|
|
|
|
* @param {number} userID User ID
|
|
|
|
* @param {boolean} setAdmin
|
|
|
|
*/
|
|
|
|
toggleAdminStatus: async function(convID, userID, setAdmin) {
|
|
|
|
await api("conversations/setAdmin", {
|
|
|
|
convID: convID,
|
|
|
|
userID: userID,
|
|
|
|
setAdmin: setAdmin
|
|
|
|
}, true);
|
|
|
|
},
|
|
|
|
|
2021-03-06 17:05:53 +00:00
|
|
|
/**
|
|
|
|
* Remove a user from a conversation
|
|
|
|
*
|
|
|
|
* @param {number} convID Conversation ID
|
|
|
|
* @param {number} userID Target user
|
|
|
|
*/
|
|
|
|
removeUser: async function(convID, userID) {
|
|
|
|
await api("conversations/removeMember", {
|
|
|
|
convID: convID,
|
|
|
|
userID: userID
|
|
|
|
}, true);
|
|
|
|
},
|
|
|
|
|
2021-03-07 13:28:38 +00:00
|
|
|
/**
|
|
|
|
* Leave a conversation
|
|
|
|
*
|
|
|
|
* @param {number} convID Conversation ID
|
|
|
|
* @param {number} userID Target user
|
|
|
|
*/
|
|
|
|
leaveConversation: async function(convID, userID) {
|
|
|
|
await api("conversations/delete", {
|
|
|
|
conversationID: convID,
|
|
|
|
userID: userID
|
|
|
|
}, true);
|
|
|
|
},
|
2021-03-06 17:05:53 +00:00
|
|
|
|
2017-06-16 09:42:28 +00:00
|
|
|
/**
|
|
|
|
* Empty conversations cache
|
|
|
|
*
|
2017-06-18 09:14:26 +00:00
|
|
|
* @param {Boolean} notHard Specify that the object hasn't to be recursively cleaned
|
2017-06-16 09:42:28 +00:00
|
|
|
* @return {Boolean} True for a success
|
|
|
|
*/
|
2017-06-18 09:14:26 +00:00
|
|
|
emptyCache: function(notHard){
|
2017-06-16 09:42:28 +00:00
|
|
|
//Empty cache
|
2017-06-18 09:14:26 +00:00
|
|
|
if(!notHard)
|
|
|
|
clearObject(this.__conversationsList);
|
|
|
|
else
|
|
|
|
this.__conversationsList = {}; //"Light" clean
|
2017-06-16 09:42:28 +00:00
|
|
|
|
|
|
|
//Success
|
|
|
|
return true;
|
2017-06-19 12:55:29 +00:00
|
|
|
},
|
2017-06-16 09:42:28 +00:00
|
|
|
}
|
|
|
|
|
2020-04-10 11:51:36 +00:00
|
|
|
ComunicWeb.components.conversations.interface = ConversationsInterface;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get information about a single conversation
|
|
|
|
*
|
|
|
|
* @param {number} convID The ID of the target conversation
|
2021-03-05 16:49:51 +00:00
|
|
|
* @returns {Promise<Conversation>}
|
2020-04-10 11:51:36 +00:00
|
|
|
*/
|
|
|
|
async function getSingleConversation(convID) {
|
|
|
|
return new Promise((res, err) => {
|
|
|
|
ConversationsInterface.getInfosOne(convID, (info) => {
|
|
|
|
if(info.error)
|
|
|
|
err(info.error)
|
|
|
|
else
|
|
|
|
res(info)
|
|
|
|
}, false)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-06-16 09:42:28 +00:00
|
|
|
//Register conversations cache cleaning function
|
2020-04-01 12:14:08 +00:00
|
|
|
ComunicWeb.common.cacheManager.registerCacheCleaner("ComunicWeb.components.conversations.interface.emptyCache");
|
|
|
|
|
|
|
|
document.addEventListener("wsClosed", () => {
|
|
|
|
ComunicWeb.components.conversations.interface.__registeredList = {};
|
|
|
|
})
|