2017-06-03 11:41:09 -04:00
|
|
|
pragma Singleton
|
|
|
|
|
|
|
|
import QtQml 2.7
|
|
|
|
import QtQuick.Controls 2.0
|
|
|
|
import org.retroshare.qml_components.LibresapiLocalClient 1.0
|
|
|
|
import Qt.labs.settings 1.0
|
|
|
|
|
|
|
|
QtObject {
|
|
|
|
|
|
|
|
id: chatCache
|
|
|
|
|
|
|
|
property QtObject lastMessageCache: QtObject
|
|
|
|
{
|
2017-06-05 10:06:59 -04:00
|
|
|
id: lastMessageCache
|
2017-06-03 11:41:09 -04:00
|
|
|
property var lastMessageList: ({})
|
|
|
|
|
2017-06-05 14:17:19 -04:00
|
|
|
signal lastMessageChanged(var chatI, var newLastMessage)
|
2017-06-05 10:06:59 -04:00
|
|
|
|
|
|
|
|
2017-06-03 11:41:09 -04:00
|
|
|
function updateLastMessageCache (chatId, chatModel){
|
|
|
|
console.log("updateLastMessageCache (chatId, chatModel)", chatId)
|
2017-06-05 14:17:19 -04:00
|
|
|
// First creates the chat id object for don't wait to work with the object if is needed to call RS api
|
|
|
|
if (!lastMessageList[chatId]) {
|
|
|
|
lastMessageList[chatId] = {}
|
|
|
|
console.log("Last message cache created!")
|
|
|
|
}
|
2017-06-03 11:41:09 -04:00
|
|
|
if (!chatModel) {
|
|
|
|
rsApi.request( "/chat/messages/"+chatId, "", function (par){
|
|
|
|
updateLastMessage(chatId, par.response)
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
updateLastMessage (chatId, chatModel)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateLastMessage (chatId, chatModel){
|
2017-06-03 12:09:52 -04:00
|
|
|
console.log("updateLastMessage (chatId, chatModel)")
|
2017-06-05 10:06:59 -04:00
|
|
|
var lastMessage = findChatLastMessage (chatModel)
|
2017-06-05 14:17:19 -04:00
|
|
|
lastMessageList[chatId].lastMessage = lastMessage
|
|
|
|
if (!lastMessageList[chatId].remoteGXS) {
|
|
|
|
var firstMessage = findChatFirstMessage (chatModel)
|
|
|
|
setRemoteGXS(chatId, firstMessage.author_id)
|
|
|
|
}
|
|
|
|
lastMessageChanged(chatId, lastMessage)
|
2017-06-03 11:41:09 -04:00
|
|
|
}
|
|
|
|
|
2017-06-05 10:06:59 -04:00
|
|
|
function findChatLastMessage (chatModel){
|
2017-06-03 12:09:52 -04:00
|
|
|
var messagesData = JSON.parse(chatModel).data
|
2017-06-03 11:41:09 -04:00
|
|
|
return messagesData.slice(-1)[0]
|
|
|
|
}
|
2017-06-05 10:06:59 -04:00
|
|
|
|
2017-06-05 14:17:19 -04:00
|
|
|
function findChatFirstMessage (chatModel){
|
|
|
|
var messagesData = JSON.parse(chatModel).data
|
|
|
|
return messagesData.slice[0]
|
|
|
|
}
|
|
|
|
|
|
|
|
function setRemoteGXS (chatId, remoteGXS){
|
|
|
|
if (lastMessageList[chatId] && !lastMessageList[chatId].remoteGXS){
|
|
|
|
lastMessageList[chatId].remoteGXS = remoteGXS
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
2017-06-05 10:06:59 -04:00
|
|
|
|
|
|
|
function getChatIdFromGxs (gxs){
|
|
|
|
for (var key in lastMessageList) {
|
2017-06-05 14:17:19 -04:00
|
|
|
if ( lastMessageList[key].remoteGXS === gxs ) {
|
2017-06-05 10:06:59 -04:00
|
|
|
return key
|
|
|
|
}
|
|
|
|
}
|
2017-06-05 14:17:19 -04:00
|
|
|
return ""
|
2017-06-05 10:06:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function getChatLastMessage (chatId){
|
|
|
|
if (lastMessageList[chatId]) {
|
2017-06-05 14:17:19 -04:00
|
|
|
return lastMessageList[chatId].lastMessage
|
2017-06-05 10:06:59 -04:00
|
|
|
}
|
2017-06-05 14:17:19 -04:00
|
|
|
return ""
|
2017-06-05 10:06:59 -04:00
|
|
|
|
|
|
|
}
|
2017-06-03 11:41:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|