You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
124 lines
3.8 KiB
TypeScript
124 lines
3.8 KiB
TypeScript
import { AbortSignal } from 'abort-controller';
|
|
import { Data } from '../../../../data/data';
|
|
import { Action, OpenGroupReactionResponse, Reaction } from '../../../../types/Reaction';
|
|
import { getEmojiDataFromNative } from '../../../../util/emoji';
|
|
import { hitRateLimit } from '../../../../util/reactions';
|
|
import { OnionSending } from '../../../onions/onionSend';
|
|
import { OpenGroupPollingUtils } from '../opengroupV2/OpenGroupPollingUtils';
|
|
import { batchGlobalIsSuccess, parseBatchGlobalStatusCode } from './sogsV3BatchPoll';
|
|
import {
|
|
addToMutationCache,
|
|
ChangeType,
|
|
SogsV3Mutation,
|
|
updateMutationCache,
|
|
} from './sogsV3MutationCache';
|
|
|
|
export const hasReactionSupport = async (serverId: number): Promise<boolean> => {
|
|
const found = await Data.getMessageByServerId(serverId);
|
|
if (!found) {
|
|
window.log.warn(`Open Group Message ${serverId} not found in db`);
|
|
return false;
|
|
}
|
|
|
|
const conversationModel = found?.getConversation();
|
|
if (!conversationModel) {
|
|
window.log.warn(`Conversation for ${serverId} not found in db`);
|
|
return false;
|
|
}
|
|
|
|
if (!conversationModel.hasReactions()) {
|
|
window.log.warn("This open group doesn't have reaction support. Server Message ID", serverId);
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
};
|
|
|
|
export const sendSogsReactionOnionV4 = async (
|
|
serverUrl: string,
|
|
room: string,
|
|
abortSignal: AbortSignal,
|
|
reaction: Reaction,
|
|
blinded: boolean
|
|
): Promise<boolean> => {
|
|
const allValidRoomInfos = OpenGroupPollingUtils.getAllValidRoomInfos(serverUrl, new Set([room]));
|
|
if (!allValidRoomInfos?.length) {
|
|
window?.log?.info('getSendReactionRequest: no valid roominfos got.');
|
|
throw new Error(`Could not find sogs pubkey of url:${serverUrl}`);
|
|
}
|
|
|
|
const canReact = await hasReactionSupport(reaction.id);
|
|
if (!canReact) {
|
|
return false;
|
|
}
|
|
|
|
if (hitRateLimit()) {
|
|
return false;
|
|
}
|
|
|
|
// The SOGS endpoint supports any text input so we need to make sure we are sending a valid unicode emoji
|
|
// for an invalid input we use https://emojipedia.org/frame-with-an-x/ as a replacement since it cannot rendered as an emoji but is valid unicode
|
|
const emoji = getEmojiDataFromNative(reaction.emoji) ? reaction.emoji : '🖾';
|
|
const endpoint = `/room/${room}/reaction/${reaction.id}/${emoji}`;
|
|
const method = reaction.action === Action.REACT ? 'PUT' : 'DELETE';
|
|
const serverPubkey = allValidRoomInfos[0].serverPublicKey;
|
|
|
|
const cacheEntry: SogsV3Mutation = {
|
|
server: serverUrl,
|
|
room: room,
|
|
changeType: ChangeType.REACTIONS,
|
|
seqno: null,
|
|
metadata: {
|
|
messageId: reaction.id,
|
|
emoji,
|
|
action: reaction.action === Action.REACT ? 'ADD' : 'REMOVE',
|
|
},
|
|
};
|
|
|
|
addToMutationCache(cacheEntry);
|
|
|
|
// reaction endpoint requires an empty dict {}
|
|
const stringifiedBody = null;
|
|
const result = await OnionSending.sendJsonViaOnionV4ToSogs({
|
|
serverUrl,
|
|
endpoint,
|
|
serverPubkey,
|
|
method,
|
|
abortSignal,
|
|
blinded,
|
|
stringifiedBody,
|
|
headers: null,
|
|
throwErrors: true,
|
|
});
|
|
|
|
if (!batchGlobalIsSuccess(result)) {
|
|
window?.log?.warn('sendSogsReactionWithOnionV4 Got unknown status code; res:', result);
|
|
throw new Error(
|
|
`sendSogsReactionOnionV4: invalid status code: ${parseBatchGlobalStatusCode(result)}`
|
|
);
|
|
}
|
|
|
|
if (!result) {
|
|
throw new Error('Could not putReaction, res is invalid');
|
|
}
|
|
|
|
const rawMessage = result.body as OpenGroupReactionResponse;
|
|
if (!rawMessage) {
|
|
throw new Error('putReaction parsing failed');
|
|
}
|
|
|
|
window.log.info(
|
|
`You ${reaction.action === Action.REACT ? 'added' : 'removed'} a`,
|
|
reaction.emoji,
|
|
`reaction on ${serverUrl}/${room}`
|
|
);
|
|
const success = Boolean(reaction.action === Action.REACT ? rawMessage.added : rawMessage.removed);
|
|
|
|
if (success && rawMessage.seqno) {
|
|
cacheEntry.seqno = rawMessage.seqno;
|
|
updateMutationCache(cacheEntry);
|
|
}
|
|
|
|
return success;
|
|
};
|