|
|
|
@ -14,22 +14,28 @@ class LokiPublicChatAPI extends EventEmitter {
|
|
|
|
|
this.servers = [];
|
|
|
|
|
}
|
|
|
|
|
findOrCreateServer(hostport) {
|
|
|
|
|
let thisServer = null;
|
|
|
|
|
log.info(`LokiPublicChatAPI looking for ${hostport}`);
|
|
|
|
|
this.servers.some(server => {
|
|
|
|
|
// if we already have this hostport registered
|
|
|
|
|
if (server.server === hostport) {
|
|
|
|
|
thisServer = server;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
});
|
|
|
|
|
if (thisServer === null) {
|
|
|
|
|
let thisServer = this.servers.find(server => server.server === hostport);
|
|
|
|
|
if (!thisServer) {
|
|
|
|
|
thisServer = new LokiPublicServerAPI(this, hostport);
|
|
|
|
|
this.servers.push(thisServer);
|
|
|
|
|
}
|
|
|
|
|
return thisServer;
|
|
|
|
|
}
|
|
|
|
|
unregisterChannel(hostport, channelId) {
|
|
|
|
|
const thisServer = this.servers.find(server => server.server === hostport);
|
|
|
|
|
if (!thisServer) {
|
|
|
|
|
log.warn(`Tried to unregister from nonexistent server ${hostport}`);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
thisServer.unregisterChannel(channelId);
|
|
|
|
|
if (thisServer.channels.length === 0) {
|
|
|
|
|
const index = this.servers.indexOf(thisServer);
|
|
|
|
|
if (index > -1) {
|
|
|
|
|
this.servers.splice(index, 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class LokiPublicServerAPI {
|
|
|
|
@ -39,25 +45,23 @@ class LokiPublicServerAPI {
|
|
|
|
|
this.channels = [];
|
|
|
|
|
}
|
|
|
|
|
findOrCreateChannel(channelId, conversationId) {
|
|
|
|
|
let thisChannel = null;
|
|
|
|
|
this.channels.forEach(channel => {
|
|
|
|
|
if (
|
|
|
|
|
channel.channelId === channelId &&
|
|
|
|
|
channel.conversationId === conversationId
|
|
|
|
|
) {
|
|
|
|
|
thisChannel = channel;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
if (thisChannel === null) {
|
|
|
|
|
let thisChannel = this.channels.find(channel => channel.channelId === channelId);
|
|
|
|
|
if (!thisChannel) {
|
|
|
|
|
thisChannel = new LokiPublicChannelAPI(this, channelId, conversationId);
|
|
|
|
|
this.channels.push(thisChannel);
|
|
|
|
|
}
|
|
|
|
|
return thisChannel;
|
|
|
|
|
}
|
|
|
|
|
unregisterChannel(channelId) {
|
|
|
|
|
// find it, remove it
|
|
|
|
|
// if no channels left, request we deregister server
|
|
|
|
|
return channelId || this; // this is just to make eslint happy
|
|
|
|
|
const thisChannel = this.channels.find(channel => channel.channelId === channelId);
|
|
|
|
|
if (!thisChannel) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
thisChannel.stopPolling = true;
|
|
|
|
|
const index = this.channels.indexOf(thisChannel);
|
|
|
|
|
if (index > -1) {
|
|
|
|
|
this.channels.splice(index, 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -69,6 +73,7 @@ class LokiPublicChannelAPI {
|
|
|
|
|
this.groupName = 'unknown';
|
|
|
|
|
this.conversationId = conversationId;
|
|
|
|
|
this.lastGot = 0;
|
|
|
|
|
this.stopPolling = false;
|
|
|
|
|
log.info(`registered LokiPublicChannel ${channelId}`);
|
|
|
|
|
// start polling
|
|
|
|
|
this.pollForMessages();
|
|
|
|
@ -77,11 +82,6 @@ class LokiPublicChannelAPI {
|
|
|
|
|
async pollForChannel(source, endpoint) {
|
|
|
|
|
// groupName will be loaded from server
|
|
|
|
|
const url = new URL(this.baseChannelUrl);
|
|
|
|
|
/*
|
|
|
|
|
const params = {
|
|
|
|
|
include_annotations: 1,
|
|
|
|
|
};
|
|
|
|
|
*/
|
|
|
|
|
let res;
|
|
|
|
|
let success = true;
|
|
|
|
|
try {
|
|
|
|
@ -99,16 +99,10 @@ class LokiPublicChannelAPI {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async pollForDeletions() {
|
|
|
|
|
// let id = 0;
|
|
|
|
|
// read all messages from 0 to current
|
|
|
|
|
// delete local copies if server state has changed to delete
|
|
|
|
|
// run every minute
|
|
|
|
|
const url = new URL(this.baseChannelUrl);
|
|
|
|
|
/*
|
|
|
|
|
const params = {
|
|
|
|
|
include_annotations: 1,
|
|
|
|
|
};
|
|
|
|
|
*/
|
|
|
|
|
let res;
|
|
|
|
|
let success = true;
|
|
|
|
|
try {
|
|
|
|
@ -144,6 +138,10 @@ class LokiPublicChannelAPI {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const response = await res.json();
|
|
|
|
|
if (this.stopPolling) {
|
|
|
|
|
// Stop after latest await possible
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (response.meta.code !== 200) {
|
|
|
|
|
success = false;
|
|
|
|
|
}
|
|
|
|
@ -151,7 +149,6 @@ class LokiPublicChannelAPI {
|
|
|
|
|
if (success) {
|
|
|
|
|
let receivedAt = new Date().getTime();
|
|
|
|
|
response.data.forEach(adnMessage => {
|
|
|
|
|
// FIXME: create proper message for this message.DataMessage.body
|
|
|
|
|
let timestamp = new Date(adnMessage.created_at).getTime();
|
|
|
|
|
let from = adnMessage.user.username;
|
|
|
|
|
let source;
|
|
|
|
|