use delete_messages for multiple delete for opengroupv2

pull/1576/head
Audric Ackermann 4 years ago
parent 26e22191e8
commit ba9f7c02a0
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -6,8 +6,8 @@ const SessionToastContainerPrivate = () => {
return (
<WrappedToastContainer
position="bottom-right"
autoClose={5000}
hideProgressBar={false}
autoClose={3000}
hideProgressBar={true}
newestOnTop={true}
closeOnClick={true}
rtl={false}

@ -65,32 +65,40 @@ export async function deleteOpenGroupMessages(
const roomInfos = convo.toOpenGroupV2();
// on v2 servers we can only remove a single message per request..
// so logic here is to delete each messages and get which one where not removed
const allDeletedResults = await Promise.all(
messages.map(async msg => {
const msgId = msg.get('serverId');
if (msgId) {
const isRemovedOnServer = await ApiV2.deleteSingleMessage(msgId, roomInfos);
return { message: msg, isRemovedOnServer };
} else {
window.log.warn('serverId not valid for deletePublicMessage');
return { message: msg, isRemovedOnServer: false };
const validServerIdsToRemove = _.compact(
messages.map(msg => {
const serverId = msg.get('serverId');
return serverId;
})
);
const validMessageModelsToRemove = _.compact(
messages.map(msg => {
const serverId = msg.get('serverId');
if (serverId) {
return msg;
}
return undefined;
})
);
if (allDeletedResults.every(m => m.isRemovedOnServer)) {
window.log.info('all those serverIds where removed');
} else {
if (allDeletedResults.some(m => m.isRemovedOnServer)) {
window.log.info('some of those serverIds where not removed');
} else {
window.log.info('failed to remove all those serverIds message');
let allMessagesAreDeleted: boolean = false;
if (validServerIdsToRemove.length) {
allMessagesAreDeleted = await ApiV2.deleteMessageByServerIds(
validServerIdsToRemove,
roomInfos
);
}
// remove only the messages we managed to remove on the server
if (allMessagesAreDeleted) {
window.log.info('Removed all those serverIds messages successfully');
return validMessageModelsToRemove;
} else {
window.log.info(
'failed to remove all those serverIds message. not removing them locally neither'
);
return [];
}
// remove only the messag we managed to remove on the server
const msgToDeleteLocally = allDeletedResults
.filter(m => m.isRemovedOnServer)
.map(m => m.message);
return msgToDeleteLocally;
} else if (convo.isOpenGroupV1()) {
const channelAPI = await convo.getPublicSendData();

@ -23,7 +23,7 @@ export type OpenGroupV2Request = {
server: string;
endpoint: string;
// queryParams are used for post or get, but not the same way
queryParams?: Record<string, string>;
queryParams?: Record<string, any>;
headers?: Record<string, string>;
isAuthRequired: boolean;
serverPublicKey?: string; // if not provided, a db called will be made to try to get it.

@ -314,42 +314,6 @@ export const deleteAuthToken = async ({
}
};
export const getMessages = async ({
serverUrl,
roomId,
}: OpenGroupRequestCommonType): Promise<Array<OpenGroupMessageV2> | null> => {
const roomInfos = await getV2OpenGroupRoomByRoomId({ serverUrl, roomId });
if (!roomInfos) {
window.log.warn('Could not find this room getMessages');
return [];
}
const { lastMessageFetchedServerID } = roomInfos;
const queryParams = {} as Record<string, any>;
if (lastMessageFetchedServerID) {
queryParams.from_server_id = lastMessageFetchedServerID;
}
const request: OpenGroupV2Request = {
method: 'GET',
room: roomId,
server: serverUrl,
isAuthRequired: true,
endpoint: 'messages',
};
const result = await sendOpenGroupV2Request(request);
const statusCode = parseStatusCodeFromOnionRequest(result);
if (statusCode !== 200) {
return [];
}
// we have a 200
const rawMessages = (result as any)?.result?.messages as Array<Record<string, any>>;
const validMessages = await parseMessages(rawMessages);
console.warn('validMessages', validMessages);
return validMessages;
};
/**
* Send the specified message to the specified room.
* If an error happens, this function throws it
@ -420,16 +384,17 @@ export const unbanUser = async (
return isOk;
};
export const deleteSingleMessage = async (
messageServerId: number,
export const deleteMessageByServerIds = async (
idsToRemove: Array<number>,
roomInfos: OpenGroupRequestCommonType
): Promise<boolean> => {
const request: OpenGroupV2Request = {
method: 'DELETE',
method: 'POST',
room: roomInfos.roomId,
server: roomInfos.serverUrl,
isAuthRequired: true,
endpoint: `messages/${messageServerId}`,
endpoint: 'delete_messages',
queryParams: { ids: idsToRemove },
};
const messageDeletedResult = await sendOpenGroupV2Request(request);
const isOk = parseStatusCodeFromOnionRequest(messageDeletedResult) === 200;

@ -61,7 +61,7 @@ const getCompactPollRequest = async (
roomRequestContent.from_deletion_server_id = lastMessageDeletedServerID;
// }
// if (lastMessageFetchedServerID) {
roomRequestContent.from_message_server_id = lastMessageFetchedServerID || 1;
roomRequestContent.from_message_server_id = lastMessageFetchedServerID;
// }
console.warn('compactPoll, ', roomRequestContent);

Loading…
Cancel
Save