bug: redirect tlv entry

This commit is contained in:
Kieran 2023-02-16 16:32:56 +00:00
parent cafd820fd9
commit 3b68153105
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
3 changed files with 56 additions and 11 deletions

View File

@ -1,20 +1,42 @@
import { NostrPrefix } from "@snort/nostr"; import { decodeTLV, NostrPrefix, TLVEntryType } from "@snort/nostr";
import { useEffect } from "react"; import { useEffect } from "react";
import { useDispatch } from "react-redux";
import { useNavigate, useParams } from "react-router-dom"; import { useNavigate, useParams } from "react-router-dom";
import { setRelays } from "State/Login";
import { eventLink, profileLink } from "Util";
export default function NostrLinkHandler() { export default function NostrLinkHandler() {
const params = useParams(); const params = useParams();
const dispatch = useDispatch();
const navigate = useNavigate(); const navigate = useNavigate();
const link = decodeURIComponent(params["*"] ?? ""); const link = decodeURIComponent(params["*"] ?? "").toLowerCase();
useEffect(() => { useEffect(() => {
if (link.length > 0) { if (link.length > 0) {
const ls = link.split(":"); const entity = link.startsWith("web+nostr:") ? link.split(":")[1] : link;
const entity = ls[1]; if (entity.startsWith(NostrPrefix.PublicKey)) {
if (entity.startsWith(NostrPrefix.PublicKey) || entity.startsWith(NostrPrefix.Profile)) {
navigate(`/p/${entity}`); navigate(`/p/${entity}`);
} else if (entity.startsWith(NostrPrefix.Event) || entity.startsWith(NostrPrefix.Note)) { } else if (entity.startsWith(NostrPrefix.Note)) {
navigate(`/e/${entity}`); navigate(`/e/${entity}`);
} else if (entity.startsWith(NostrPrefix.Profile) || entity.startsWith(NostrPrefix.Event)) {
const decoded = decodeTLV(entity);
console.debug(decoded);
const id = decoded.find(a => a.type === TLVEntryType.Special)?.value as string;
const relays = decoded.filter(a => a.type === TLVEntryType.Relay);
if (relays.length > 0) {
const relayObj = {
relays: Object.fromEntries(relays.map(a => [a.value, { read: true, write: false }])),
createdAt: new Date().getTime(),
};
dispatch(setRelays(relayObj));
}
if (entity.startsWith(NostrPrefix.Profile)) {
navigate(profileLink(id));
} else if (entity.startsWith(NostrPrefix.Event)) {
navigate(eventLink(id));
}
} }
} }
}, [link]); }, [link]);

View File

@ -41,7 +41,7 @@ export function parseId(id: string) {
} }
export function bech32ToHex(str: string) { export function bech32ToHex(str: string) {
const nKey = bech32.decode(str); const nKey = bech32.decode(str, 1_000);
const buff = bech32.fromWords(nKey.words); const buff = bech32.fromWords(nKey.words);
return secp.utils.bytesToHex(Uint8Array.from(buff)); return secp.utils.bytesToHex(Uint8Array.from(buff));
} }

View File

@ -1,5 +1,6 @@
import * as secp from "@noble/secp256k1"; import * as secp from "@noble/secp256k1";
import { bech32 } from "bech32"; import { bech32 } from "bech32";
import { HexKey } from ".";
export enum NostrPrefix { export enum NostrPrefix {
PublicKey = "npub", PublicKey = "npub",
@ -12,10 +13,17 @@ export enum NostrPrefix {
Relay = "nrelay", Relay = "nrelay",
} }
export enum TLVEntryType {
Special = 0,
Relay = 1,
Author = 2,
Kind = 3,
}
export interface TLVEntry { export interface TLVEntry {
type: number; type: TLVEntryType;
length: number; length: number;
value: string; // hex encoded data value: string | HexKey | number;
} }
export function encodeTLV(hex: string, prefix: NostrPrefix, relays?: string[]) { export function encodeTLV(hex: string, prefix: NostrPrefix, relays?: string[]) {
@ -39,7 +47,7 @@ export function encodeTLV(hex: string, prefix: NostrPrefix, relays?: string[]) {
} }
export function decodeTLV(str: string) { export function decodeTLV(str: string) {
const decoded = bech32.decode(str); const decoded = bech32.decode(str, 1_000);
const data = bech32.fromWords(decoded.words); const data = bech32.fromWords(decoded.words);
const entries: TLVEntry[] = []; const entries: TLVEntry[] = [];
@ -51,9 +59,24 @@ export function decodeTLV(str: string) {
entries.push({ entries.push({
type: t, type: t,
length: l, length: l,
value: secp.utils.bytesToHex(new Uint8Array(v)), value: decodeTLVEntry(t, new Uint8Array(v)),
}); });
x += 2 + l; x += 2 + l;
} }
return entries; return entries;
} }
function decodeTLVEntry(type: TLVEntryType, data: Uint8Array) {
switch (type) {
case TLVEntryType.Special:
case TLVEntryType.Author: {
return secp.utils.bytesToHex(data);
}
case TLVEntryType.Kind: {
return 0
}
case TLVEntryType.Relay: {
return new TextDecoder("ASCII").decode(data);
}
}
}