Compare commits

..
Author SHA1 Message Date
a20663b0d5 chore(deps): update rust crate base64 to 0.23
Some checks failed
renovate/stability-days Updates have met minimum release age requirement
Dependency builds / Build web (pull_request) Successful in 4m38s
Dependency builds / Test native MTP (pull_request) Failing after 3m44s
Dependency builds / Build desktop (pull_request) Successful in 8m59s
Dependency builds / Build mobile (pull_request) Failing after 7m46s
2026-08-30 21:00:41 +03:00
4 changed files with 38 additions and 61 deletions

View file

@ -15,7 +15,7 @@ import {
import MessageContextMenu from "./messageContextMenu"; import MessageContextMenu from "./messageContextMenu";
import Media from "./media/media"; import Media from "./media/media";
import { useStorage } from "@tensamin/storage/context"; import { useStorage } from "@tensamin/storage/context";
import { requireRelaySuccess, useMTP } from "@tensamin/mtp"; import { useMTP } from "@tensamin/mtp";
import { getMessage, useChat } from "../context"; import { getMessage, useChat } from "../context";
import { decryptChatText, encryptChatText } from "@tensamin/crypto/chatSecret"; import { decryptChatText, encryptChatText } from "@tensamin/crypto/chatSecret";
import { log, toast } from "@tensamin/shared/log"; import { log, toast } from "@tensamin/shared/log";
@ -42,7 +42,6 @@ function MessageComponent({
user: SelectedUser<readonly ["UserId", "Avatar", "Display"]> | null; user: SelectedUser<readonly ["UserId", "Avatar", "Display"]> | null;
}) { }) {
const actuallyFailed = const actuallyFailed =
Boolean(message.ErrorType) ||
(message.failed && message.MessageState === "awaiting") || (message.failed && message.MessageState === "awaiting") ||
message.decryptionFailed; message.decryptionFailed;
@ -66,7 +65,7 @@ function MessageComponent({
// Message states // Message states
const { load } = useStorage(); const { load } = useStorage();
const { send, sendSealedRelay } = useMTP(); const { send } = useMTP();
const [ownId, setOwnId] = useState(0); const [ownId, setOwnId] = useState(0);
useEffect(() => { useEffect(() => {
load("user_id").then(setOwnId); load("user_id").then(setOwnId);
@ -74,38 +73,22 @@ function MessageComponent({
const messageStateReadUpdate = useCallback(async () => { const messageStateReadUpdate = useCallback(async () => {
const readConfirmations = await load("settings.read_confirmations"); const readConfirmations = await load("settings.read_confirmations");
if (!user?.UserId || !message.RelayMessageId || ownId === 0) return; if (readConfirmations) {
const [ownIota, peerIota] = await Promise.all([ if (!user?.UserId) return;
send("GetIotaData", { UserId: ownId }),
send("GetIotaData", { UserId: user.UserId }), await send("MessageState", {
]); ChatPartnerId: user?.UserId,
if (ownIota.type !== "GetIotaData" || peerIota.type !== "GetIotaData") { SendTime: message.SendTime,
throw new Error("Could not resolve an Iota for this receipt"); MessageState: "read",
});
} else {
await send("MessageState", {
ChatPartnerId: user?.UserId,
SendTime: message.SendTime,
MessageState: "received",
});
} }
const response = await sendSealedRelay( }, [load, message.SendTime, user?.UserId, send]);
"MessageState",
{
ChatPartnerId: user.UserId,
RelayMessageId: message.RelayMessageId,
EventAt: Date.now(),
MessageState: readConfirmations ? "read" : "received",
ReceiverId: user.UserId,
},
{
nextHop: { kind: "iota", id: ownIota.data.IotaId },
finalRecipientId: user.UserId,
metadataRecipients: [
{ value: ownIota.data.PublicKey, encoding: "base64" },
{ value: peerIota.data.PublicKey, encoding: "base64" },
],
contentRecipients: [
{ value: ownIota.data.PublicKey, encoding: "base64" },
{ value: peerIota.data.PublicKey, encoding: "base64" },
],
},
);
requireRelaySuccess(response);
}, [load, message.RelayMessageId, ownId, send, sendSealedRelay, user]);
useEffect(() => { useEffect(() => {
if (message.SenderId === ownId || ownId === 0) return; if (message.SenderId === ownId || ownId === 0) return;

View file

@ -69,14 +69,6 @@ type MessageEdit = Partial<
> >
>; >;
const messageStateRank: Record<RawMessage["MessageState"], number> = {
awaiting: 0,
sending: 0,
sent: 1,
received: 2,
read: 3,
};
function updateMessagesBySendTime<T extends EditableMessage>( function updateMessagesBySendTime<T extends EditableMessage>(
messages: T[], messages: T[],
sendTime: number, sendTime: number,
@ -89,13 +81,6 @@ function updateMessagesBySendTime<T extends EditableMessage>(
return item; return item;
} }
if (
edit.MessageState !== undefined &&
messageStateRank[edit.MessageState] < messageStateRank[item.MessageState]
) {
return item;
}
const entries = Object.entries(edit) as Array< const entries = Object.entries(edit) as Array<
[keyof MessageEdit, MessageEdit[keyof MessageEdit]] [keyof MessageEdit, MessageEdit[keyof MessageEdit]]
>; >;
@ -998,7 +983,9 @@ export default function Provider({ children }: { children: ReactNode }) {
); );
return; return;
} }
editMessage(data.SendTime, { MessageState: data.MessageState }); editMessage(data.SendTime, {
MessageState: data.MessageState,
});
}); });
return () => { return () => {
unsubscribeEdit(); unsubscribeEdit();

View file

@ -29,7 +29,7 @@ async function requestNotificationPermission() {
} }
export default function Provider(props: { children: React.ReactNode }) { export default function Provider(props: { children: React.ReactNode }) {
const { subscribe } = useMTP(); const { subscribe, send } = useMTP();
const { load } = useStorage(); const { load } = useStorage();
const { get } = useUser(); const { get } = useUser();
const { addLiveMessage, chatSecret, getChatSecret, userId } = useChat(); const { addLiveMessage, chatSecret, getChatSecret, userId } = useChat();
@ -79,6 +79,11 @@ export default function Provider(props: { children: React.ReactNode }) {
// todo: add notification symbol to conversation cards (incl. message start) // todo: add notification symbol to conversation cards (incl. message start)
moveUserIdToTop(data.SenderId); moveUserIdToTop(data.SenderId);
if (await load("settings.receive_confirmations")) {
void send("MessageState", {
MessageState: "received",
});
}
} }
const user = await get(data.SenderId, [ const user = await get(data.SenderId, [
@ -175,6 +180,7 @@ export default function Provider(props: { children: React.ReactNode }) {
load, load,
location.pathname, location.pathname,
navigate, navigate,
send,
moveUserIdToTop, moveUserIdToTop,
subscribe, subscribe,
getChatSecret, getChatSecret,

View file

@ -70,7 +70,6 @@ const callSecretEnvelopeRequest = z.object({
export const Reaction = z.object({ export const Reaction = z.object({
Reaction: z.string(), Reaction: z.string(),
SenderId: z.number(), SenderId: z.number(),
RelayMessageId: z.string().optional(),
}); });
export const Message = z.object({ export const Message = z.object({
@ -83,8 +82,6 @@ export const Message = z.object({
Avatar: z.boolean().optional(), Avatar: z.boolean().optional(),
Display: z.boolean().optional(), Display: z.boolean().optional(),
ReplyId: z.number().optional(), ReplyId: z.number().optional(),
UpdatedAt: z.number().optional(),
ErrorType: z.string().optional(),
MessageState: z MessageState: z
.enum(["read", "received", "sent", "sending", "awaiting"]) // awaiting for 'internal' use .enum(["read", "received", "sent", "sending", "awaiting"]) // awaiting for 'internal' use
.default("received"), .default("received"),
@ -110,7 +107,6 @@ const authPayload = z.object({
.array( .array(
z.object({ z.object({
LastMessageAt: z.number().default(0), LastMessageAt: z.number().default(0),
CreatedAt: z.number().optional(),
UserId: z.number(), UserId: z.number(),
LastMessage: z LastMessage: z
.object({ .object({
@ -401,12 +397,17 @@ export const mtp = {
response: z.object({}), response: z.object({}),
}, },
MessageState: { MessageState: {
request: z.object({ request: z
ChatPartnerId: z.number(), .object({
RelayMessageId: z.string(), ChatPartnerId: z.number(),
EventAt: z.number(), SendTime: z.number(),
MessageState: z.enum(["received", "read"]), MessageState: Message.shape.MessageState,
}), })
.or(
z.object({
MessageState: Message.shape.MessageState,
}),
),
response: z.object({ response: z.object({
ChatPartnerId: z.number(), ChatPartnerId: z.number(),
MessageState: Message.shape.MessageState, MessageState: Message.shape.MessageState,