snort/packages/app/src/Feed/EventPublisher.ts

423 lines
13 KiB
TypeScript
Raw Normal View History

2023-03-28 14:34:01 +00:00
import { useMemo } from "react";
2023-01-15 19:40:47 +00:00
import { useSelector } from "react-redux";
2023-02-18 20:36:42 +00:00
import * as secp from "@noble/secp256k1";
2023-03-28 14:34:01 +00:00
import { EventKind, RelaySettings, TaggedRawEvent, HexKey, RawEvent, u256, UserMetadata, Lists } from "@snort/nostr";
2023-01-27 10:47:05 +00:00
2023-01-20 11:11:50 +00:00
import { RootState } from "State/Store";
import { bech32ToHex, delay, unwrap } from "Util";
import { DefaultRelays, HashtagRegex } from "Const";
2023-02-20 23:14:15 +00:00
import { System } from "System";
2023-03-28 14:34:01 +00:00
import { EventExt } from "System/EventExt";
2023-01-15 19:40:47 +00:00
declare global {
interface Window {
nostr: {
getPublicKey: () => Promise<HexKey>;
signEvent: (event: RawEvent) => Promise<RawEvent>;
2023-02-09 12:26:54 +00:00
getRelays: () => Promise<Record<string, { read: boolean; write: boolean }>>;
nip04: {
encrypt: (pubkey: HexKey, content: string) => Promise<string>;
decrypt: (pubkey: HexKey, content: string) => Promise<string>;
};
};
}
2023-01-15 19:40:47 +00:00
}
2023-02-13 15:29:25 +00:00
export type EventPublisher = ReturnType<typeof useEventPublisher>;
2023-01-15 19:40:47 +00:00
export default function useEventPublisher() {
2023-02-09 12:26:54 +00:00
const pubKey = useSelector<RootState, HexKey | undefined>(s => s.login.publicKey);
const privKey = useSelector<RootState, HexKey | undefined>(s => s.login.privateKey);
const follows = useSelector<RootState, HexKey[]>(s => s.login.follows);
const relays = useSelector((s: RootState) => s.login.relays);
const hasNip07 = "nostr" in window;
2023-01-15 19:40:47 +00:00
2023-03-28 14:34:01 +00:00
async function signEvent(ev: RawEvent): Promise<RawEvent> {
2023-04-10 12:53:53 +00:00
if (!pubKey) {
throw new Error("Cant sign events when logged out");
}
if (hasNip07 && !privKey) {
2023-03-28 14:34:01 +00:00
ev.id = await EventExt.createId(ev);
const tmpEv = (await barrierNip07(() => window.nostr.signEvent(ev))) as RawEvent;
ev.sig = tmpEv.sig;
return ev;
} else if (privKey) {
2023-03-28 14:34:01 +00:00
await EventExt.sign(ev, privKey);
} else {
console.warn("Count not sign event, no private keys available");
2023-01-15 19:40:47 +00:00
}
return ev;
}
2023-01-15 19:40:47 +00:00
2023-03-28 14:34:01 +00:00
function processContent(ev: RawEvent, msg: string) {
const replaceNpub = (match: string) => {
const npub = match.slice(1);
try {
const hex = bech32ToHex(npub);
2023-03-28 14:34:01 +00:00
const idx = ev.tags.length;
ev.tags.push(["p", hex]);
return `#[${idx}]`;
} catch (error) {
return match;
}
};
const replaceNoteId = (match: string) => {
const noteId = match.slice(1);
try {
const hex = bech32ToHex(noteId);
2023-03-28 14:34:01 +00:00
const idx = ev.tags.length;
ev.tags.push(["e", hex, "", "mention"]);
return `#[${idx}]`;
} catch (error) {
return match;
}
};
const replaceHashtag = (match: string) => {
const tag = match.slice(1);
2023-03-28 14:34:01 +00:00
ev.tags.push(["t", tag.toLowerCase()]);
return match;
};
const content = msg
.replace(/@npub[a-z0-9]+/g, replaceNpub)
.replace(/@note1[acdefghjklmnpqrstuvwxyz023456789]{58}/g, replaceNoteId)
.replace(HashtagRegex, replaceHashtag);
2023-03-28 14:34:01 +00:00
ev.content = content;
}
2023-02-13 15:29:25 +00:00
const ret = {
nip42Auth: async (challenge: string, relay: string) => {
if (pubKey) {
2023-03-28 14:34:01 +00:00
const ev = EventExt.forPubKey(pubKey, EventKind.Auth);
ev.tags.push(["relay", relay]);
ev.tags.push(["challenge", challenge]);
return await signEvent(ev);
}
},
2023-03-28 14:34:01 +00:00
broadcast: (ev: RawEvent | undefined) => {
if (ev) {
2023-04-10 14:55:25 +00:00
console.debug(ev);
System.BroadcastEvent(ev);
}
},
/**
* Write event to DefaultRelays, this is important for profiles / relay lists to prevent bugs
* If a user removes all the DefaultRelays from their relay list and saves that relay list,
* When they open the site again we wont see that updated relay list and so it will appear to reset back to the previous state
*/
2023-03-28 14:34:01 +00:00
broadcastForBootstrap: (ev: RawEvent | undefined) => {
if (ev) {
2023-02-07 19:47:57 +00:00
for (const [k] of DefaultRelays) {
System.WriteOnceToRelay(k, ev);
2023-01-23 15:31:59 +00:00
}
}
},
2023-02-10 19:23:52 +00:00
/**
* Write event to all given relays.
*/
2023-03-28 14:34:01 +00:00
broadcastAll: (ev: RawEvent | undefined, relays: string[]) => {
2023-02-10 19:23:52 +00:00
if (ev) {
for (const k of relays) {
System.WriteOnceToRelay(k, ev);
}
}
},
muted: async (keys: HexKey[], priv: HexKey[]) => {
if (pubKey) {
2023-03-28 14:34:01 +00:00
const ev = EventExt.forPubKey(pubKey, EventKind.PubkeyLists);
ev.tags.push(["d", Lists.Muted]);
2023-02-09 12:26:54 +00:00
keys.forEach(p => {
2023-03-28 14:34:01 +00:00
ev.tags.push(["p", p]);
});
let content = "";
if (priv.length > 0) {
2023-02-09 12:26:54 +00:00
const ps = priv.map(p => ["p", p]);
const plaintext = JSON.stringify(ps);
if (hasNip07 && !privKey) {
2023-02-09 12:26:54 +00:00
content = await barrierNip07(() => window.nostr.nip04.encrypt(pubKey, plaintext));
} else if (privKey) {
2023-03-28 14:34:01 +00:00
content = await EventExt.encryptData(plaintext, pubKey, privKey);
}
}
2023-03-28 14:34:01 +00:00
ev.content = content;
return await signEvent(ev);
}
},
pinned: async (notes: HexKey[]) => {
if (pubKey) {
2023-03-28 14:34:01 +00:00
const ev = EventExt.forPubKey(pubKey, EventKind.NoteLists);
ev.tags.push(["d", Lists.Pinned]);
notes.forEach(n => {
2023-03-28 14:34:01 +00:00
ev.tags.push(["e", n]);
});
return await signEvent(ev);
}
},
bookmarked: async (notes: HexKey[]) => {
if (pubKey) {
2023-03-28 14:34:01 +00:00
const ev = EventExt.forPubKey(pubKey, EventKind.NoteLists);
ev.tags.push(["d", Lists.Bookmarked]);
notes.forEach(n => {
2023-03-28 14:34:01 +00:00
ev.tags.push(["e", n]);
});
return await signEvent(ev);
}
},
tags: async (tags: string[]) => {
if (pubKey) {
2023-03-28 14:34:01 +00:00
const ev = EventExt.forPubKey(pubKey, EventKind.TagLists);
ev.tags.push(["d", Lists.Followed]);
tags.forEach(t => {
2023-03-28 14:34:01 +00:00
ev.tags.push(["t", t]);
});
return await signEvent(ev);
}
},
metadata: async (obj: UserMetadata) => {
if (pubKey) {
2023-03-28 14:34:01 +00:00
const ev = EventExt.forPubKey(pubKey, EventKind.SetMetadata);
ev.content = JSON.stringify(obj);
return await signEvent(ev);
}
},
2023-04-10 14:55:25 +00:00
note: async (msg: string, extraTags?: Array<Array<string>>, kind?: EventKind) => {
if (pubKey) {
2023-04-10 14:55:25 +00:00
const ev = EventExt.forPubKey(pubKey, kind ?? EventKind.TextNote);
processContent(ev, msg);
2023-03-27 22:58:29 +00:00
if (extraTags) {
for (const et of extraTags) {
ev.tags.push(et);
}
}
return await signEvent(ev);
}
},
2023-04-05 17:07:42 +00:00
/**
* Create a zap request event for a given target event/profile
* @param amount Millisats amout!
* @param author Author pubkey to tag in the zap
* @param note Note Id to tag in the zap
* @param msg Custom message to be included in the zap
* @param extraTags Any extra tags to include on the zap request event
* @returns
*/
2023-04-05 15:10:14 +00:00
zap: async (amount: number, author: HexKey, note?: HexKey, msg?: string, extraTags?: Array<Array<string>>) => {
if (pubKey) {
2023-03-28 14:34:01 +00:00
const ev = EventExt.forPubKey(pubKey, EventKind.ZapRequest);
if (note) {
2023-03-28 14:34:01 +00:00
ev.tags.push(["e", note]);
}
2023-03-28 14:34:01 +00:00
ev.tags.push(["p", author]);
2023-02-28 16:07:20 +00:00
const relayTag = ["relays", ...Object.keys(relays).map(a => a.trim())];
2023-03-28 14:34:01 +00:00
ev.tags.push(relayTag);
ev.tags.push(["amount", amount.toString()]);
2023-04-05 15:10:14 +00:00
ev.tags.push(...(extraTags ?? []));
processContent(ev, msg || "");
return await signEvent(ev);
}
},
/**
* Reply to a note
*/
2023-04-10 14:55:25 +00:00
reply: async (replyTo: TaggedRawEvent, msg: string, extraTags?: Array<Array<string>>, kind?: EventKind) => {
if (pubKey) {
2023-04-10 14:55:25 +00:00
const ev = EventExt.forPubKey(pubKey, kind ?? EventKind.TextNote);
2023-01-15 19:40:47 +00:00
2023-03-28 14:34:01 +00:00
const thread = EventExt.extractThread(ev);
if (thread) {
2023-03-28 14:34:01 +00:00
if (thread.root || thread.replyTo) {
ev.tags.push(["e", thread.root?.Event ?? thread.replyTo?.Event ?? "", "", "root"]);
}
2023-03-28 14:34:01 +00:00
ev.tags.push(["e", replyTo.id, replyTo.relays[0] ?? "", "reply"]);
2023-01-15 19:40:47 +00:00
// dont tag self in replies
2023-03-28 14:34:01 +00:00
if (replyTo.pubkey !== pubKey) {
ev.tags.push(["p", replyTo.pubkey]);
}
2023-01-15 19:40:47 +00:00
2023-03-28 14:34:01 +00:00
for (const pk of thread.pubKeys) {
if (pk === pubKey) {
continue; // dont tag self in replies
2023-01-15 19:40:47 +00:00
}
2023-03-28 14:34:01 +00:00
ev.tags.push(["p", pk]);
}
} else {
2023-03-28 14:34:01 +00:00
ev.tags.push(["e", replyTo.id, "", "reply"]);
// dont tag self in replies
2023-03-28 14:34:01 +00:00
if (replyTo.pubkey !== pubKey) {
ev.tags.push(["p", replyTo.pubkey]);
}
}
processContent(ev, msg);
2023-03-27 22:58:29 +00:00
if (extraTags) {
for (const et of extraTags) {
ev.tags.push(et);
}
}
return await signEvent(ev);
}
},
2023-03-28 14:34:01 +00:00
react: async (evRef: RawEvent, content = "+") => {
if (pubKey) {
2023-03-28 14:34:01 +00:00
const ev = EventExt.forPubKey(pubKey, EventKind.Reaction);
ev.content = content;
ev.tags.push(["e", evRef.id]);
ev.tags.push(["p", evRef.pubkey]);
return await signEvent(ev);
}
},
saveRelays: async () => {
if (pubKey) {
2023-03-28 14:34:01 +00:00
const ev = EventExt.forPubKey(pubKey, EventKind.ContactList);
ev.content = JSON.stringify(relays);
2023-02-07 19:47:57 +00:00
for (const pk of follows) {
2023-03-28 14:34:01 +00:00
ev.tags.push(["p", pk]);
}
2023-01-15 19:40:47 +00:00
return await signEvent(ev);
}
},
2023-02-10 19:23:52 +00:00
saveRelaysSettings: async () => {
if (pubKey) {
2023-03-28 14:34:01 +00:00
const ev = EventExt.forPubKey(pubKey, EventKind.Relays);
2023-02-10 19:23:52 +00:00
for (const [url, settings] of Object.entries(relays)) {
const rTag = ["r", url];
if (settings.read && !settings.write) {
rTag.push("read");
}
if (settings.write && !settings.read) {
rTag.push("write");
}
2023-03-28 14:34:01 +00:00
ev.tags.push(rTag);
2023-02-10 19:23:52 +00:00
}
return await signEvent(ev);
}
},
2023-02-09 12:26:54 +00:00
addFollow: async (pkAdd: HexKey | HexKey[], newRelays?: Record<string, RelaySettings>) => {
if (pubKey) {
2023-03-28 14:34:01 +00:00
const ev = EventExt.forPubKey(pubKey, EventKind.ContactList);
ev.content = JSON.stringify(newRelays ?? relays);
2023-02-07 19:47:57 +00:00
const temp = new Set(follows);
if (Array.isArray(pkAdd)) {
2023-02-09 12:26:54 +00:00
pkAdd.forEach(a => temp.add(a));
} else {
temp.add(pkAdd);
}
2023-02-07 19:47:57 +00:00
for (const pk of temp) {
if (pk.length !== 64) {
continue;
}
2023-03-28 14:34:01 +00:00
ev.tags.push(["p", pk.toLowerCase()]);
}
2023-01-15 19:40:47 +00:00
return await signEvent(ev);
}
},
removeFollow: async (pkRemove: HexKey) => {
if (pubKey) {
2023-03-28 14:34:01 +00:00
const ev = EventExt.forPubKey(pubKey, EventKind.ContactList);
ev.content = JSON.stringify(relays);
2023-02-07 19:47:57 +00:00
for (const pk of follows) {
if (pk === pkRemove || pk.length !== 64) {
continue;
}
2023-03-28 14:34:01 +00:00
ev.tags.push(["p", pk]);
}
2023-01-15 19:40:47 +00:00
return await signEvent(ev);
}
},
/**
* Delete an event (NIP-09)
*/
delete: async (id: u256) => {
if (pubKey) {
2023-03-28 14:34:01 +00:00
const ev = EventExt.forPubKey(pubKey, EventKind.Deletion);
ev.tags.push(["e", id]);
return await signEvent(ev);
}
},
/**
2023-02-07 19:47:57 +00:00
* Repost a note (NIP-18)
*/
2023-03-28 14:34:01 +00:00
repost: async (note: TaggedRawEvent) => {
if (pubKey) {
2023-03-28 14:34:01 +00:00
const ev = EventExt.forPubKey(pubKey, EventKind.Repost);
ev.tags.push(["e", note.id, ""]);
ev.tags.push(["p", note.pubkey]);
return await signEvent(ev);
}
},
2023-03-28 14:34:01 +00:00
decryptDm: async (note: RawEvent): Promise<string | undefined> => {
if (pubKey) {
2023-03-28 14:34:01 +00:00
if (note.pubkey !== pubKey && !note.tags.some(a => a[1] === pubKey)) {
return "<CANT DECRYPT>";
}
try {
2023-04-13 18:43:43 +00:00
const otherPubKey = note.pubkey === pubKey ? unwrap(note.tags.find(a => a[0] === "p")?.[1]) : note.pubkey;
if (hasNip07 && !privKey) {
2023-03-28 14:34:01 +00:00
return await barrierNip07(() => window.nostr.nip04.decrypt(otherPubKey, note.content));
} else if (privKey) {
2023-03-28 14:34:01 +00:00
return await EventExt.decryptDm(note.content, privKey, otherPubKey);
}
} catch (e) {
2023-02-07 19:47:57 +00:00
console.error("Decryption failed", e);
return "<DECRYPTION FAILED>";
}
}
},
sendDm: async (content: string, to: HexKey) => {
if (pubKey) {
2023-03-28 14:34:01 +00:00
const ev = EventExt.forPubKey(pubKey, EventKind.DirectMessage);
ev.content = content;
ev.tags.push(["p", to]);
2023-01-15 19:40:47 +00:00
try {
if (hasNip07 && !privKey) {
2023-02-09 12:26:54 +00:00
const cx: string = await barrierNip07(() => window.nostr.nip04.encrypt(to, content));
2023-03-28 14:34:01 +00:00
ev.content = cx;
return await signEvent(ev);
} else if (privKey) {
2023-03-28 14:34:01 +00:00
ev.content = await EventExt.encryptData(content, to, privKey);
return await signEvent(ev);
}
} catch (e) {
console.error("Encryption failed", e);
2023-01-15 19:40:47 +00:00
}
}
},
2023-02-18 20:36:42 +00:00
newKey: () => {
const privKey = secp.utils.bytesToHex(secp.utils.randomPrivateKey());
const pubKey = secp.utils.bytesToHex(secp.schnorr.getPublicKey(privKey));
return {
privateKey: privKey,
publicKey: pubKey,
};
},
2023-03-30 18:21:33 +00:00
generic: async (content: string, kind: EventKind, tags?: Array<Array<string>>) => {
2023-02-13 15:29:25 +00:00
if (pubKey) {
2023-03-28 14:34:01 +00:00
const ev = EventExt.forPubKey(pubKey, kind);
ev.content = content;
2023-03-30 18:21:33 +00:00
ev.tags = tags ?? [];
2023-02-13 15:29:25 +00:00
return await signEvent(ev);
}
},
};
2023-02-13 15:29:25 +00:00
return useMemo(() => ret, [pubKey, relays, follows]);
2023-01-15 19:40:47 +00:00
}
let isNip07Busy = false;
2023-02-07 19:47:57 +00:00
export const barrierNip07 = async <T>(then: () => Promise<T>): Promise<T> => {
while (isNip07Busy) {
await delay(10);
}
isNip07Busy = true;
try {
return await then();
} finally {
isNip07Busy = false;
}
};