create daemon
This commit is contained in:
229
thrower_daemon/node_modules/nostr-tools/lib/cjs/nip27.js
generated
vendored
Normal file
229
thrower_daemon/node_modules/nostr-tools/lib/cjs/nip27.js
generated
vendored
Normal file
@@ -0,0 +1,229 @@
|
||||
"use strict";
|
||||
var __defProp = Object.defineProperty;
|
||||
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
||||
var __getOwnPropNames = Object.getOwnPropertyNames;
|
||||
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
||||
var __export = (target, all) => {
|
||||
for (var name in all)
|
||||
__defProp(target, name, { get: all[name], enumerable: true });
|
||||
};
|
||||
var __copyProps = (to, from, except, desc) => {
|
||||
if (from && typeof from === "object" || typeof from === "function") {
|
||||
for (let key of __getOwnPropNames(from))
|
||||
if (!__hasOwnProp.call(to, key) && key !== except)
|
||||
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
||||
}
|
||||
return to;
|
||||
};
|
||||
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
||||
|
||||
// nip27.ts
|
||||
var nip27_exports = {};
|
||||
__export(nip27_exports, {
|
||||
parse: () => parse
|
||||
});
|
||||
module.exports = __toCommonJS(nip27_exports);
|
||||
|
||||
// nip19.ts
|
||||
var import_utils2 = require("@noble/hashes/utils");
|
||||
var import_base = require("@scure/base");
|
||||
|
||||
// utils.ts
|
||||
var import_utils = require("@noble/hashes/utils");
|
||||
var utf8Decoder = new TextDecoder("utf-8");
|
||||
var utf8Encoder = new TextEncoder();
|
||||
|
||||
// nip19.ts
|
||||
var Bech32MaxSize = 5e3;
|
||||
function decode(code) {
|
||||
let { prefix, words } = import_base.bech32.decode(code, Bech32MaxSize);
|
||||
let data = new Uint8Array(import_base.bech32.fromWords(words));
|
||||
switch (prefix) {
|
||||
case "nprofile": {
|
||||
let tlv = parseTLV(data);
|
||||
if (!tlv[0]?.[0])
|
||||
throw new Error("missing TLV 0 for nprofile");
|
||||
if (tlv[0][0].length !== 32)
|
||||
throw new Error("TLV 0 should be 32 bytes");
|
||||
return {
|
||||
type: "nprofile",
|
||||
data: {
|
||||
pubkey: (0, import_utils2.bytesToHex)(tlv[0][0]),
|
||||
relays: tlv[1] ? tlv[1].map((d) => utf8Decoder.decode(d)) : []
|
||||
}
|
||||
};
|
||||
}
|
||||
case "nevent": {
|
||||
let tlv = parseTLV(data);
|
||||
if (!tlv[0]?.[0])
|
||||
throw new Error("missing TLV 0 for nevent");
|
||||
if (tlv[0][0].length !== 32)
|
||||
throw new Error("TLV 0 should be 32 bytes");
|
||||
if (tlv[2] && tlv[2][0].length !== 32)
|
||||
throw new Error("TLV 2 should be 32 bytes");
|
||||
if (tlv[3] && tlv[3][0].length !== 4)
|
||||
throw new Error("TLV 3 should be 4 bytes");
|
||||
return {
|
||||
type: "nevent",
|
||||
data: {
|
||||
id: (0, import_utils2.bytesToHex)(tlv[0][0]),
|
||||
relays: tlv[1] ? tlv[1].map((d) => utf8Decoder.decode(d)) : [],
|
||||
author: tlv[2]?.[0] ? (0, import_utils2.bytesToHex)(tlv[2][0]) : void 0,
|
||||
kind: tlv[3]?.[0] ? parseInt((0, import_utils2.bytesToHex)(tlv[3][0]), 16) : void 0
|
||||
}
|
||||
};
|
||||
}
|
||||
case "naddr": {
|
||||
let tlv = parseTLV(data);
|
||||
if (!tlv[0]?.[0])
|
||||
throw new Error("missing TLV 0 for naddr");
|
||||
if (!tlv[2]?.[0])
|
||||
throw new Error("missing TLV 2 for naddr");
|
||||
if (tlv[2][0].length !== 32)
|
||||
throw new Error("TLV 2 should be 32 bytes");
|
||||
if (!tlv[3]?.[0])
|
||||
throw new Error("missing TLV 3 for naddr");
|
||||
if (tlv[3][0].length !== 4)
|
||||
throw new Error("TLV 3 should be 4 bytes");
|
||||
return {
|
||||
type: "naddr",
|
||||
data: {
|
||||
identifier: utf8Decoder.decode(tlv[0][0]),
|
||||
pubkey: (0, import_utils2.bytesToHex)(tlv[2][0]),
|
||||
kind: parseInt((0, import_utils2.bytesToHex)(tlv[3][0]), 16),
|
||||
relays: tlv[1] ? tlv[1].map((d) => utf8Decoder.decode(d)) : []
|
||||
}
|
||||
};
|
||||
}
|
||||
case "nsec":
|
||||
return { type: prefix, data };
|
||||
case "npub":
|
||||
case "note":
|
||||
return { type: prefix, data: (0, import_utils2.bytesToHex)(data) };
|
||||
default:
|
||||
throw new Error(`unknown prefix ${prefix}`);
|
||||
}
|
||||
}
|
||||
function parseTLV(data) {
|
||||
let result = {};
|
||||
let rest = data;
|
||||
while (rest.length > 0) {
|
||||
let t = rest[0];
|
||||
let l = rest[1];
|
||||
let v = rest.slice(2, 2 + l);
|
||||
rest = rest.slice(2 + l);
|
||||
if (v.length < l)
|
||||
throw new Error(`not enough data to read on TLV ${t}`);
|
||||
result[t] = result[t] || [];
|
||||
result[t].push(v);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
// nip27.ts
|
||||
var noCharacter = /\W/m;
|
||||
var noURLCharacter = /\W |\W$|$|,| /m;
|
||||
function* parse(content) {
|
||||
const max = content.length;
|
||||
let prevIndex = 0;
|
||||
let index = 0;
|
||||
while (index < max) {
|
||||
let u = content.indexOf(":", index);
|
||||
if (u === -1) {
|
||||
break;
|
||||
}
|
||||
if (content.substring(u - 5, u) === "nostr") {
|
||||
const m = content.substring(u + 60).match(noCharacter);
|
||||
const end = m ? u + 60 + m.index : max;
|
||||
try {
|
||||
let pointer;
|
||||
let { data, type } = decode(content.substring(u + 1, end));
|
||||
switch (type) {
|
||||
case "npub":
|
||||
pointer = { pubkey: data };
|
||||
break;
|
||||
case "nsec":
|
||||
case "note":
|
||||
index = end + 1;
|
||||
continue;
|
||||
default:
|
||||
pointer = data;
|
||||
}
|
||||
if (prevIndex !== u - 5) {
|
||||
yield { type: "text", text: content.substring(prevIndex, u - 5) };
|
||||
}
|
||||
yield { type: "reference", pointer };
|
||||
index = end;
|
||||
prevIndex = index;
|
||||
continue;
|
||||
} catch (_err) {
|
||||
index = u + 1;
|
||||
continue;
|
||||
}
|
||||
} else if (content.substring(u - 5, u) === "https" || content.substring(u - 4, u) === "http") {
|
||||
const m = content.substring(u + 4).match(noURLCharacter);
|
||||
const end = m ? u + 4 + m.index : max;
|
||||
const prefixLen = content[u - 1] === "s" ? 5 : 4;
|
||||
try {
|
||||
let url = new URL(content.substring(u - prefixLen, end));
|
||||
if (url.hostname.indexOf(".") === -1) {
|
||||
throw new Error("invalid url");
|
||||
}
|
||||
if (prevIndex !== u - prefixLen) {
|
||||
yield { type: "text", text: content.substring(prevIndex, u - prefixLen) };
|
||||
}
|
||||
if (/\.(png|jpe?g|gif|webp)$/i.test(url.pathname)) {
|
||||
yield { type: "image", url: url.toString() };
|
||||
index = end;
|
||||
prevIndex = index;
|
||||
continue;
|
||||
}
|
||||
if (/\.(mp4|avi|webm|mkv)$/i.test(url.pathname)) {
|
||||
yield { type: "video", url: url.toString() };
|
||||
index = end;
|
||||
prevIndex = index;
|
||||
continue;
|
||||
}
|
||||
if (/\.(mp3|aac|ogg|opus)$/i.test(url.pathname)) {
|
||||
yield { type: "audio", url: url.toString() };
|
||||
index = end;
|
||||
prevIndex = index;
|
||||
continue;
|
||||
}
|
||||
yield { type: "url", url: url.toString() };
|
||||
index = end;
|
||||
prevIndex = index;
|
||||
continue;
|
||||
} catch (_err) {
|
||||
index = end + 1;
|
||||
continue;
|
||||
}
|
||||
} else if (content.substring(u - 3, u) === "wss" || content.substring(u - 2, u) === "ws") {
|
||||
const m = content.substring(u + 4).match(noURLCharacter);
|
||||
const end = m ? u + 4 + m.index : max;
|
||||
const prefixLen = content[u - 1] === "s" ? 3 : 2;
|
||||
try {
|
||||
let url = new URL(content.substring(u - prefixLen, end));
|
||||
if (url.hostname.indexOf(".") === -1) {
|
||||
throw new Error("invalid ws url");
|
||||
}
|
||||
if (prevIndex !== u - prefixLen) {
|
||||
yield { type: "text", text: content.substring(prevIndex, u - prefixLen) };
|
||||
}
|
||||
yield { type: "relay", url: url.toString() };
|
||||
index = end;
|
||||
prevIndex = index;
|
||||
continue;
|
||||
} catch (_err) {
|
||||
index = end + 1;
|
||||
continue;
|
||||
}
|
||||
} else {
|
||||
index = u + 1;
|
||||
continue;
|
||||
}
|
||||
}
|
||||
if (prevIndex !== max) {
|
||||
yield { type: "text", text: content.substring(prevIndex) };
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user