blowater/features/dm.ts

379 lines
12 KiB
TypeScript
Raw Normal View History

2023-06-30 14:05:57 +00:00
import * as csp from "https://raw.githubusercontent.com/BlowaterNostr/csp/master/csp.ts";
import { NostrAccountContext, NostrEvent, NostrKind } from "../lib/nostr-ts/nostr.ts";
2023-11-03 13:09:13 +00:00
import { ConnectionPool } from "../lib/nostr-ts/relay-pool.ts";
import { compare, getTags, Parsed_Event, prepareNostrImageEvent, Tag, Tags } from "../nostr.ts";
2023-08-28 17:58:05 +00:00
import { PublicKey } from "../lib/nostr-ts/key.ts";
import { prepareEncryptedNostrEvent } from "../lib/nostr-ts/event.ts";
import { DirectMessageGetter } from "../UI/app_update.tsx";
import { ChatMessage, parseContent } from "../UI/message.ts";
import { decodeInvitation, gmEventType } from "./gm.ts";
import { Channel } from "https://raw.githubusercontent.com/BlowaterNostr/csp/master/csp.ts";
import { NewMessageListener } from "../UI/message-panel.tsx";
2023-06-30 14:05:57 +00:00
export async function sendDMandImages(args: {
sender: NostrAccountContext;
2023-07-11 09:19:57 +00:00
receiverPublicKey: PublicKey;
2023-06-30 14:05:57 +00:00
message: string;
files: Blob[];
lamport_timestamp: number;
pool: ConnectionPool;
tags: Tag[];
}) {
const { tags, sender, receiverPublicKey, message, files, lamport_timestamp, pool } = args;
2023-06-30 14:05:57 +00:00
console.log("sendDMandImages", message, files);
const eventsToSend: NostrEvent[] = [];
if (message.trim().length !== 0) {
// build the nostr event
const nostrEvent = await prepareEncryptedNostrEvent(
sender,
2023-09-19 19:38:38 +00:00
{
encryptKey: receiverPublicKey,
kind: NostrKind.DIRECT_MESSAGE,
2023-09-19 19:38:38 +00:00
tags: [
["p", receiverPublicKey.hex],
["lamport", String(lamport_timestamp)],
...tags,
],
content: message,
},
2023-06-30 14:05:57 +00:00
);
if (nostrEvent instanceof Error) {
return nostrEvent;
}
eventsToSend.push(nostrEvent);
}
for (let blob of files) {
2023-09-11 20:40:56 +00:00
const imgEvent = await prepareNostrImageEvent(
2023-06-30 14:05:57 +00:00
sender,
receiverPublicKey,
blob,
NostrKind.DIRECT_MESSAGE,
2023-06-30 14:05:57 +00:00
);
if (imgEvent instanceof Error) {
return imgEvent;
}
2023-10-21 11:29:47 +00:00
eventsToSend.push(imgEvent);
2023-06-30 14:05:57 +00:00
}
// send the event
for (const event of eventsToSend) {
const err = await pool.sendEvent(event);
if (err instanceof Error) {
return err;
}
2023-06-30 14:05:57 +00:00
}
return eventsToSend;
2023-06-30 14:05:57 +00:00
}
export function getAllEncryptedMessagesOf(
2023-07-11 09:19:57 +00:00
publicKey: PublicKey,
2023-06-30 14:05:57 +00:00
relay: ConnectionPool,
) {
const stream1 = getAllEncryptedMessagesSendBy(
publicKey,
relay,
);
const stream2 = getAllEncryptedMessagesReceivedBy(
publicKey,
relay,
);
return merge(stream1, stream2);
}
async function* getAllEncryptedMessagesSendBy(
2023-07-11 09:19:57 +00:00
publicKey: PublicKey,
2023-06-30 14:05:57 +00:00
relay: ConnectionPool,
) {
let resp = await relay.newSub(
2023-08-03 09:13:16 +00:00
`getAllEncryptedMessagesSendBy`,
2023-06-30 14:05:57 +00:00
{
2023-07-11 09:19:57 +00:00
authors: [publicKey.hex],
2023-06-30 14:05:57 +00:00
kinds: [4],
},
);
if (resp instanceof Error) {
throw resp;
}
2023-08-28 17:58:05 +00:00
for await (const nostrMessage of resp.chan) {
2023-06-30 14:05:57 +00:00
yield nostrMessage;
}
}
async function* getAllEncryptedMessagesReceivedBy(
2023-07-11 09:19:57 +00:00
publicKey: PublicKey,
2023-06-30 14:05:57 +00:00
relay: ConnectionPool,
) {
let resp = await relay.newSub(
2023-08-03 09:13:16 +00:00
`getAllEncryptedMessagesReceivedBy`,
2023-06-30 14:05:57 +00:00
{
kinds: [4],
2023-07-11 09:19:57 +00:00
"#p": [publicKey.hex],
2023-06-30 14:05:57 +00:00
},
);
if (resp instanceof Error) {
throw resp;
}
2023-08-28 17:58:05 +00:00
for await (const nostrMessage of resp.chan) {
2023-06-30 14:05:57 +00:00
yield nostrMessage;
}
}
function merge<T>(...iters: AsyncIterable<T>[]) {
let merged = csp.chan<T>();
async function coroutine<T>(
source: AsyncIterable<T>,
destination: csp.Channel<T>,
) {
for await (let ele of source) {
if (destination.closed()) {
return;
}
let err = await destination.put(ele);
if (err instanceof csp.PutToClosedChannelError) {
// this means the merged channel was not closed when
// line 319 is called,
// but during waiting time of line 319, no consumer pops it and it was closed.
// This is normal semantics of channels
// so that it's fine to not throw it up to the call stack
// but then this ele has already been popped from the iter,
// it will be lost.
throw new Error("destination channel should not be closed");
}
}
}
for (let iter of iters) {
coroutine(iter, merged);
}
return merged;
}
export class DirectedMessageController implements DirectMessageGetter, NewMessageListener {
constructor(
public readonly ctx: NostrAccountContext,
) {}
private readonly directed_messages = new Map<string, ChatMessage>();
private readonly new_message_chan = new Channel<ChatMessage>();
private readonly caster = new csp.Multicaster(this.new_message_chan);
// get the direct messages between me and this pubkey
public getChatMessages(pubkey: string): ChatMessage[] {
const messages = [];
for (const message of this.directed_messages.values()) {
if (is_DM_between(message.event, this.ctx.publicKey.hex, pubkey)) {
messages.push(message);
}
}
messages.sort((a, b) => compare(a.event, b.event));
2023-10-09 18:52:30 +00:00
return messages;
}
public getDirectMessageStream(pubkey: string): Channel<ChatMessage> {
const messages = new Channel<ChatMessage>();
(async () => {
for await (const message of this.caster.copy()) {
if (is_DM_between(message.event, this.ctx.publicKey.hex, pubkey)) {
const err = await messages.put(message);
if (err instanceof csp.PutToClosedChannelError) {
// the channel is closed by external code, most likely the caller
return;
}
}
}
// should never reach here, but doesn't matter
// because messages does not need to be closed
await messages.close();
})();
return messages;
}
async addEvent(
event:
| Parsed_Event<NostrKind.DIRECT_MESSAGE | NostrKind.Group_Message>
| NostrEvent<NostrKind.DIRECT_MESSAGE>,
) {
const kind = event.kind;
if (kind == NostrKind.Group_Message) {
const gmEvent = { ...event, kind };
2023-10-19 03:44:43 +00:00
const type = await gmEventType(this.ctx, gmEvent);
if (type == "gm_invitation") {
const invitation = await decodeInvitation(this.ctx, gmEvent);
if (invitation instanceof Error) {
return invitation;
}
const message: ChatMessage = {
2023-10-19 06:09:38 +00:00
type: "gm_invitation",
event: gmEvent,
2023-10-19 06:09:38 +00:00
invitation: invitation,
author: gmEvent.publicKey,
created_at: new Date(gmEvent.created_at * 1000),
lamport: gmEvent.parsedTags.lamport_timestamp,
2023-10-19 06:09:38 +00:00
content: gmEvent.content,
};
this.directed_messages.set(gmEvent.id, message);
/* do not await */ this.new_message_chan.put(message);
}
// else ignore
} else {
let parsedTags;
if ("parsedTags" in event) {
parsedTags = event.parsedTags;
} else {
parsedTags = getTags(event);
}
let publicKey;
if ("publicKey" in event) {
publicKey = event.publicKey;
} else {
publicKey = PublicKey.FromHex(event.pubkey);
if (publicKey instanceof Error) {
return publicKey;
}
}
let dmEvent = await parseDM(
{
...event,
kind,
},
this.ctx,
parsedTags,
publicKey,
);
if ("type" in dmEvent) {
if (dmEvent.type == "Other") {
return dmEvent.error;
} else if (dmEvent.type == "NotMyMessage") {
return; // ignore
}
}
if (dmEvent instanceof Error) {
return dmEvent;
}
const isImage = dmEvent.parsedTags.image;
let chatMessage: ChatMessage;
if (isImage) {
2023-10-21 11:29:47 +00:00
const imageBase64 = dmEvent.decryptedContent;
chatMessage = {
event: dmEvent,
author: dmEvent.publicKey,
content: imageBase64,
type: "image",
created_at: new Date(dmEvent.created_at * 1000),
lamport: dmEvent.parsedTags.lamport_timestamp,
};
} else {
chatMessage = {
event: dmEvent,
author: dmEvent.publicKey,
content: dmEvent.decryptedContent,
type: "text",
created_at: new Date(dmEvent.created_at * 1000),
lamport: dmEvent.parsedTags.lamport_timestamp,
};
}
this.directed_messages.set(event.id, chatMessage);
/* do not await */ this.new_message_chan.put(chatMessage);
}
}
onChange() {
return this.caster.copy();
}
}
function is_DM_between(event: NostrEvent, myPubkey: string, theirPubKey: string) {
if (event.pubkey == myPubkey) {
return getTags(event).p[0] == theirPubKey;
} else if (event.pubkey == theirPubKey) {
return getTags(event).p[0] == myPubkey;
} else {
return false;
}
}
async function parseDM(
event: NostrEvent<NostrKind.DIRECT_MESSAGE>,
ctx: NostrAccountContext,
parsedTags: Tags,
publicKey: PublicKey,
) {
const theOther = whoIamTalkingTo(event, ctx.publicKey);
if (theOther.type != true) {
return theOther;
}
const decrypted = await ctx.decrypt(theOther.talkingTo, event.content);
if (decrypted instanceof Error) {
return decrypted;
}
return {
...event,
kind: event.kind,
parsedTags,
publicKey,
decryptedContent: decrypted,
parsedContentItems: Array.from(parseContent(decrypted)),
};
}
export class InvalidEvent extends Error {
2023-12-22 12:20:34 +00:00
constructor(public readonly event: NostrEvent, message: string) {
super(`invliad event, expecting kind:${event.kind}, ${message}`);
this.name = "InvalidEvent";
}
}
export function whoIamTalkingTo(event: NostrEvent<NostrKind.DIRECT_MESSAGE>, myPublicKey: PublicKey): {
type: true;
talkingTo: string;
} | {
type: "NotMyMessage";
error: Error;
} | {
type: "Other";
error: Error;
} {
// first asuming the other user is the sender
let whoIAmTalkingTo = event.pubkey;
const tags = getTags(event).p;
if (tags.length === 0) {
return {
type: "Other",
error: new InvalidEvent(
2023-12-22 12:20:34 +00:00
event,
`No p tag is found - Not a valid DM - id ${event.id}, kind ${event.kind}`,
),
};
} else if (tags.length > 1) {
return {
type: "Other",
error: Error(`Multiple tag p: ${event}`),
};
}
// if I am the sender
if (event.pubkey === myPublicKey.hex) {
const theirPubKey = tags[0];
whoIAmTalkingTo = theirPubKey;
return {
type: true,
talkingTo: whoIAmTalkingTo,
};
} else {
const receiverPubkey = tags[0];
if (receiverPubkey !== myPublicKey.hex) {
return {
type: "NotMyMessage",
error: Error(
`Not my message, receiver is ${receiverPubkey}, sender is ${event.pubkey}, my key is ${myPublicKey.bech32()}`,
),
};
} else {
// I am the receiver
return {
type: true,
talkingTo: whoIAmTalkingTo,
};
}
}
}