mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 03:19:46 +00:00
Make EventsDB not rely on Conf
This commit is contained in:
parent
624b6b278e
commit
d2fb3fd253
14 changed files with 75 additions and 56 deletions
|
|
@ -1,5 +1,4 @@
|
||||||
{
|
{
|
||||||
"$schema": "https://deno.land/x/deno@v1.41.0/cli/schemas/config-file.v1.json",
|
|
||||||
"version": "1.1.0",
|
"version": "1.1.0",
|
||||||
"tasks": {
|
"tasks": {
|
||||||
"start": "deno run -A src/server.ts",
|
"start": "deno run -A src/server.ts",
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,13 @@
|
||||||
import { JsonParseStream } from '@std/json/json-parse-stream';
|
import { JsonParseStream } from '@std/json/json-parse-stream';
|
||||||
import { TextLineStream } from '@std/streams/text-line-stream';
|
import { TextLineStream } from '@std/streams/text-line-stream';
|
||||||
|
|
||||||
import { DittoDB } from '@/db/DittoDB.ts';
|
|
||||||
import { AdminSigner } from '@/signers/AdminSigner.ts';
|
import { AdminSigner } from '@/signers/AdminSigner.ts';
|
||||||
import { EventsDB } from '@/storages/EventsDB.ts';
|
import { Storages } from '@/storages.ts';
|
||||||
import { type EventStub } from '@/utils/api.ts';
|
import { type EventStub } from '@/utils/api.ts';
|
||||||
import { nostrNow } from '@/utils.ts';
|
import { nostrNow } from '@/utils.ts';
|
||||||
|
|
||||||
const signer = new AdminSigner();
|
const signer = new AdminSigner();
|
||||||
|
const store = await Storages.db();
|
||||||
const { kysely } = await DittoDB.getInstance();
|
|
||||||
const eventsDB = new EventsDB(kysely);
|
|
||||||
|
|
||||||
const readable = Deno.stdin.readable
|
const readable = Deno.stdin.readable
|
||||||
.pipeThrough(new TextDecoderStream())
|
.pipeThrough(new TextDecoderStream())
|
||||||
|
|
@ -25,7 +22,7 @@ for await (const t of readable) {
|
||||||
...t as EventStub,
|
...t as EventStub,
|
||||||
});
|
});
|
||||||
|
|
||||||
await eventsDB.event(event);
|
await store.event(event);
|
||||||
}
|
}
|
||||||
|
|
||||||
Deno.exit(0);
|
Deno.exit(0);
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,11 @@
|
||||||
import { NSchema } from '@nostrify/nostrify';
|
import { NSchema } from '@nostrify/nostrify';
|
||||||
import { nip19 } from 'nostr-tools';
|
import { nip19 } from 'nostr-tools';
|
||||||
|
|
||||||
import { DittoDB } from '@/db/DittoDB.ts';
|
|
||||||
import { AdminSigner } from '@/signers/AdminSigner.ts';
|
import { AdminSigner } from '@/signers/AdminSigner.ts';
|
||||||
import { EventsDB } from '@/storages/EventsDB.ts';
|
import { Storages } from '@/storages.ts';
|
||||||
import { nostrNow } from '@/utils.ts';
|
import { nostrNow } from '@/utils.ts';
|
||||||
|
|
||||||
const { kysely } = await DittoDB.getInstance();
|
const store = await Storages.db();
|
||||||
const eventsDB = new EventsDB(kysely);
|
|
||||||
|
|
||||||
const [pubkeyOrNpub, role] = Deno.args;
|
const [pubkeyOrNpub, role] = Deno.args;
|
||||||
const pubkey = pubkeyOrNpub.startsWith('npub1') ? nip19.decode(pubkeyOrNpub as `npub1${string}`).data : pubkeyOrNpub;
|
const pubkey = pubkeyOrNpub.startsWith('npub1') ? nip19.decode(pubkeyOrNpub as `npub1${string}`).data : pubkeyOrNpub;
|
||||||
|
|
@ -25,7 +23,7 @@ if (!['admin', 'user'].includes(role)) {
|
||||||
const signer = new AdminSigner();
|
const signer = new AdminSigner();
|
||||||
const admin = await signer.getPublicKey();
|
const admin = await signer.getPublicKey();
|
||||||
|
|
||||||
const [existing] = await eventsDB.query([{
|
const [existing] = await store.query([{
|
||||||
kinds: [30382],
|
kinds: [30382],
|
||||||
authors: [admin],
|
authors: [admin],
|
||||||
'#d': [pubkey],
|
'#d': [pubkey],
|
||||||
|
|
@ -59,6 +57,6 @@ const event = await signer.signEvent({
|
||||||
created_at: nostrNow(),
|
created_at: nostrNow(),
|
||||||
});
|
});
|
||||||
|
|
||||||
await eventsDB.event(event);
|
await store.event(event);
|
||||||
|
|
||||||
Deno.exit(0);
|
Deno.exit(0);
|
||||||
|
|
|
||||||
|
|
@ -6,11 +6,9 @@
|
||||||
import { NostrEvent, NRelay1, NSchema } from '@nostrify/nostrify';
|
import { NostrEvent, NRelay1, NSchema } from '@nostrify/nostrify';
|
||||||
import { nip19 } from 'nostr-tools';
|
import { nip19 } from 'nostr-tools';
|
||||||
|
|
||||||
import { DittoDB } from '@/db/DittoDB.ts';
|
import { Storages } from '@/storages.ts';
|
||||||
import { EventsDB } from '@/storages/EventsDB.ts';
|
|
||||||
|
|
||||||
const { kysely } = await DittoDB.getInstance();
|
const store = await Storages.db();
|
||||||
const eventsDB = new EventsDB(kysely);
|
|
||||||
|
|
||||||
interface ImportEventsOpts {
|
interface ImportEventsOpts {
|
||||||
profilesOnly: boolean;
|
profilesOnly: boolean;
|
||||||
|
|
@ -21,7 +19,7 @@ const importUsers = async (
|
||||||
authors: string[],
|
authors: string[],
|
||||||
relays: string[],
|
relays: string[],
|
||||||
opts?: Partial<ImportEventsOpts>,
|
opts?: Partial<ImportEventsOpts>,
|
||||||
doEvent: DoEvent = async (event: NostrEvent) => await eventsDB.event(event),
|
doEvent: DoEvent = async (event: NostrEvent) => await store.event(event),
|
||||||
) => {
|
) => {
|
||||||
// Kind 0s + follow lists.
|
// Kind 0s + follow lists.
|
||||||
const profiles: Record<string, Record<number, NostrEvent>> = {};
|
const profiles: Record<string, Record<number, NostrEvent>> = {};
|
||||||
|
|
|
||||||
|
|
@ -16,9 +16,10 @@ import { addTag, deleteTag } from '@/utils/tags.ts';
|
||||||
import { asyncReplaceAll } from '@/utils/text.ts';
|
import { asyncReplaceAll } from '@/utils/text.ts';
|
||||||
import { lookupPubkey } from '@/utils/lookup.ts';
|
import { lookupPubkey } from '@/utils/lookup.ts';
|
||||||
import { Storages } from '@/storages.ts';
|
import { Storages } from '@/storages.ts';
|
||||||
import { hydrateEvents, purifyEvent } from '@/storages/hydrate.ts';
|
import { hydrateEvents } from '@/storages/hydrate.ts';
|
||||||
import { createEvent, paginated, paginatedList, parseBody, updateListEvent } from '@/utils/api.ts';
|
import { createEvent, paginated, paginatedList, parseBody, updateListEvent } from '@/utils/api.ts';
|
||||||
import { getInvoice, getLnurl } from '@/utils/lnurl.ts';
|
import { getInvoice, getLnurl } from '@/utils/lnurl.ts';
|
||||||
|
import { purifyEvent } from '@/utils/purify.ts';
|
||||||
import { getZapSplits } from '@/utils/zap-split.ts';
|
import { getZapSplits } from '@/utils/zap-split.ts';
|
||||||
import { renderEventAccounts } from '@/views.ts';
|
import { renderEventAccounts } from '@/views.ts';
|
||||||
import { accountFromPubkey, renderAccount } from '@/views/mastodon/accounts.ts';
|
import { accountFromPubkey, renderAccount } from '@/views/mastodon/accounts.ts';
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ export class Storages {
|
||||||
if (!this._db) {
|
if (!this._db) {
|
||||||
this._db = (async () => {
|
this._db = (async () => {
|
||||||
const { kysely } = await DittoDB.getInstance();
|
const { kysely } = await DittoDB.getInstance();
|
||||||
const store = new EventsDB(kysely);
|
const store = new EventsDB({ kysely, pubkey: Conf.pubkey, timeout: Conf.db.timeouts.default });
|
||||||
await seedZapSplits(store);
|
await seedZapSplits(store);
|
||||||
return store;
|
return store;
|
||||||
})();
|
})();
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
// deno-lint-ignore-file require-await
|
// deno-lint-ignore-file require-await
|
||||||
|
|
||||||
import { NDatabase, NPostgres } from '@nostrify/db';
|
import { NPostgres } from '@nostrify/db';
|
||||||
import {
|
import {
|
||||||
NIP50,
|
NIP50,
|
||||||
NKinds,
|
NKinds,
|
||||||
|
|
@ -16,13 +16,12 @@ import { Stickynotes } from '@soapbox/stickynotes';
|
||||||
import { Kysely } from 'kysely';
|
import { Kysely } from 'kysely';
|
||||||
import { nip27 } from 'nostr-tools';
|
import { nip27 } from 'nostr-tools';
|
||||||
|
|
||||||
import { Conf } from '@/config.ts';
|
|
||||||
import { DittoTables } from '@/db/DittoTables.ts';
|
import { DittoTables } from '@/db/DittoTables.ts';
|
||||||
import { dbEventsCounter } from '@/metrics.ts';
|
import { dbEventsCounter } from '@/metrics.ts';
|
||||||
import { RelayError } from '@/RelayError.ts';
|
import { RelayError } from '@/RelayError.ts';
|
||||||
import { purifyEvent } from '@/storages/hydrate.ts';
|
|
||||||
import { isNostrId, isURL } from '@/utils.ts';
|
import { isNostrId, isURL } from '@/utils.ts';
|
||||||
import { abortError } from '@/utils/abort.ts';
|
import { abortError } from '@/utils/abort.ts';
|
||||||
|
import { purifyEvent } from '@/utils/purify.ts';
|
||||||
|
|
||||||
/** Function to decide whether or not to index a tag. */
|
/** Function to decide whether or not to index a tag. */
|
||||||
type TagCondition = ({ event, count, value }: {
|
type TagCondition = ({ event, count, value }: {
|
||||||
|
|
@ -31,9 +30,19 @@ type TagCondition = ({ event, count, value }: {
|
||||||
value: string;
|
value: string;
|
||||||
}) => boolean;
|
}) => boolean;
|
||||||
|
|
||||||
|
/** Options for the EventsDB store. */
|
||||||
|
interface EventsDBOpts {
|
||||||
|
/** Kysely instance to use. */
|
||||||
|
kysely: Kysely<DittoTables>;
|
||||||
|
/** Pubkey of the admin account. */
|
||||||
|
pubkey: string;
|
||||||
|
/** Timeout in milliseconds for database queries. */
|
||||||
|
timeout: number;
|
||||||
|
}
|
||||||
|
|
||||||
/** SQL database storage adapter for Nostr events. */
|
/** SQL database storage adapter for Nostr events. */
|
||||||
class EventsDB implements NStore {
|
class EventsDB implements NStore {
|
||||||
private store: NDatabase | NPostgres;
|
private store: NPostgres;
|
||||||
private console = new Stickynotes('ditto:db:events');
|
private console = new Stickynotes('ditto:db:events');
|
||||||
|
|
||||||
/** Conditions for when to index certain tags. */
|
/** Conditions for when to index certain tags. */
|
||||||
|
|
@ -53,8 +62,8 @@ class EventsDB implements NStore {
|
||||||
't': ({ event, count, value }) => (event.kind === 1985 ? count < 20 : count < 5) && value.length < 50,
|
't': ({ event, count, value }) => (event.kind === 1985 ? count < 20 : count < 5) && value.length < 50,
|
||||||
};
|
};
|
||||||
|
|
||||||
constructor(private kysely: Kysely<DittoTables>) {
|
constructor(private opts: EventsDBOpts) {
|
||||||
this.store = new NPostgres(kysely, {
|
this.store = new NPostgres(opts.kysely, {
|
||||||
indexTags: EventsDB.indexTags,
|
indexTags: EventsDB.indexTags,
|
||||||
indexSearch: EventsDB.searchText,
|
indexSearch: EventsDB.searchText,
|
||||||
});
|
});
|
||||||
|
|
@ -73,7 +82,7 @@ class EventsDB implements NStore {
|
||||||
await this.deleteEventsAdmin(event);
|
await this.deleteEventsAdmin(event);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await this.store.event(event, { ...opts, timeout: opts.timeout ?? Conf.db.timeouts.default });
|
await this.store.event(event, { ...opts, timeout: opts.timeout ?? this.opts.timeout });
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message === 'Cannot add a deleted event') {
|
if (e.message === 'Cannot add a deleted event') {
|
||||||
throw new RelayError('blocked', 'event deleted by user');
|
throw new RelayError('blocked', 'event deleted by user');
|
||||||
|
|
@ -88,7 +97,7 @@ class EventsDB implements NStore {
|
||||||
/** Check if an event has been deleted by the admin. */
|
/** Check if an event has been deleted by the admin. */
|
||||||
private async isDeletedAdmin(event: NostrEvent): Promise<boolean> {
|
private async isDeletedAdmin(event: NostrEvent): Promise<boolean> {
|
||||||
const filters: NostrFilter[] = [
|
const filters: NostrFilter[] = [
|
||||||
{ kinds: [5], authors: [Conf.pubkey], '#e': [event.id], limit: 1 },
|
{ kinds: [5], authors: [this.opts.pubkey], '#e': [event.id], limit: 1 },
|
||||||
];
|
];
|
||||||
|
|
||||||
if (NKinds.replaceable(event.kind) || NKinds.parameterizedReplaceable(event.kind)) {
|
if (NKinds.replaceable(event.kind) || NKinds.parameterizedReplaceable(event.kind)) {
|
||||||
|
|
@ -96,7 +105,7 @@ class EventsDB implements NStore {
|
||||||
|
|
||||||
filters.push({
|
filters.push({
|
||||||
kinds: [5],
|
kinds: [5],
|
||||||
authors: [Conf.pubkey],
|
authors: [this.opts.pubkey],
|
||||||
'#a': [`${event.kind}:${event.pubkey}:${d}`],
|
'#a': [`${event.kind}:${event.pubkey}:${d}`],
|
||||||
since: event.created_at,
|
since: event.created_at,
|
||||||
limit: 1,
|
limit: 1,
|
||||||
|
|
@ -109,7 +118,7 @@ class EventsDB implements NStore {
|
||||||
|
|
||||||
/** The DITTO_NSEC can delete any event from the database. NDatabase already handles user deletions. */
|
/** The DITTO_NSEC can delete any event from the database. NDatabase already handles user deletions. */
|
||||||
private async deleteEventsAdmin(event: NostrEvent): Promise<void> {
|
private async deleteEventsAdmin(event: NostrEvent): Promise<void> {
|
||||||
if (event.kind === 5 && event.pubkey === Conf.pubkey) {
|
if (event.kind === 5 && event.pubkey === this.opts.pubkey) {
|
||||||
const ids = new Set(event.tags.filter(([name]) => name === 'e').map(([_name, value]) => value));
|
const ids = new Set(event.tags.filter(([name]) => name === 'e').map(([_name, value]) => value));
|
||||||
const addrs = new Set(event.tags.filter(([name]) => name === 'a').map(([_name, value]) => value));
|
const addrs = new Set(event.tags.filter(([name]) => name === 'a').map(([_name, value]) => value));
|
||||||
|
|
||||||
|
|
@ -180,7 +189,7 @@ class EventsDB implements NStore {
|
||||||
|
|
||||||
this.console.debug('REQ', JSON.stringify(filters));
|
this.console.debug('REQ', JSON.stringify(filters));
|
||||||
|
|
||||||
return this.store.query(filters, { ...opts, timeout: opts.timeout ?? Conf.db.timeouts.default });
|
return this.store.query(filters, { ...opts, timeout: opts.timeout ?? this.opts.timeout });
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Delete events based on filters from the database. */
|
/** Delete events based on filters from the database. */
|
||||||
|
|
@ -188,7 +197,7 @@ class EventsDB implements NStore {
|
||||||
if (!filters.length) return Promise.resolve();
|
if (!filters.length) return Promise.resolve();
|
||||||
this.console.debug('DELETE', JSON.stringify(filters));
|
this.console.debug('DELETE', JSON.stringify(filters));
|
||||||
|
|
||||||
return this.store.remove(filters, { ...opts, timeout: opts.timeout ?? Conf.db.timeouts.default });
|
return this.store.remove(filters, { ...opts, timeout: opts.timeout ?? this.opts.timeout });
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Get number of events that would be returned by filters. */
|
/** Get number of events that would be returned by filters. */
|
||||||
|
|
@ -201,7 +210,7 @@ class EventsDB implements NStore {
|
||||||
|
|
||||||
this.console.debug('COUNT', JSON.stringify(filters));
|
this.console.debug('COUNT', JSON.stringify(filters));
|
||||||
|
|
||||||
return this.store.count(filters, { ...opts, timeout: opts.timeout ?? Conf.db.timeouts.default });
|
return this.store.count(filters, { ...opts, timeout: opts.timeout ?? this.opts.timeout });
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Return only the tags that should be indexed. */
|
/** Return only the tags that should be indexed. */
|
||||||
|
|
@ -277,7 +286,7 @@ class EventsDB implements NStore {
|
||||||
) as { key: 'domain'; value: string } | undefined)?.value;
|
) as { key: 'domain'; value: string } | undefined)?.value;
|
||||||
|
|
||||||
if (domain) {
|
if (domain) {
|
||||||
const query = this.kysely
|
const query = this.opts.kysely
|
||||||
.selectFrom('pubkey_domains')
|
.selectFrom('pubkey_domains')
|
||||||
.select('pubkey')
|
.select('pubkey')
|
||||||
.where('domain', '=', domain);
|
.where('domain', '=', domain);
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ import { Machina } from '@nostrify/nostrify/utils';
|
||||||
import { matchFilter } from 'nostr-tools';
|
import { matchFilter } from 'nostr-tools';
|
||||||
|
|
||||||
import { DittoEvent } from '@/interfaces/DittoEvent.ts';
|
import { DittoEvent } from '@/interfaces/DittoEvent.ts';
|
||||||
import { purifyEvent } from '@/storages/hydrate.ts';
|
import { purifyEvent } from '@/utils/purify.ts';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PubSub event store for streaming events within the application.
|
* PubSub event store for streaming events within the application.
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { NostrEvent, NStore } from '@nostrify/nostrify';
|
import { NStore } from '@nostrify/nostrify';
|
||||||
import { matchFilter } from 'nostr-tools';
|
import { matchFilter } from 'nostr-tools';
|
||||||
|
|
||||||
import { DittoDB } from '@/db/DittoDB.ts';
|
import { DittoDB } from '@/db/DittoDB.ts';
|
||||||
|
|
@ -338,17 +338,4 @@ async function gatherEventStats(
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Return a normalized event without any non-standard keys. */
|
export { hydrateEvents };
|
||||||
function purifyEvent(event: NostrEvent): NostrEvent {
|
|
||||||
return {
|
|
||||||
id: event.id,
|
|
||||||
pubkey: event.pubkey,
|
|
||||||
kind: event.kind,
|
|
||||||
content: event.content,
|
|
||||||
tags: event.tags,
|
|
||||||
sig: event.sig,
|
|
||||||
created_at: event.created_at,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
export { hydrateEvents, purifyEvent };
|
|
||||||
|
|
|
||||||
|
|
@ -3,8 +3,8 @@ import { finalizeEvent, generateSecretKey } from 'nostr-tools';
|
||||||
|
|
||||||
import { Conf } from '@/config.ts';
|
import { Conf } from '@/config.ts';
|
||||||
import { DittoDB } from '@/db/DittoDB.ts';
|
import { DittoDB } from '@/db/DittoDB.ts';
|
||||||
import { purifyEvent } from '@/storages/hydrate.ts';
|
|
||||||
import { EventsDB } from '@/storages/EventsDB.ts';
|
import { EventsDB } from '@/storages/EventsDB.ts';
|
||||||
|
import { purifyEvent } from '@/utils/purify.ts';
|
||||||
|
|
||||||
/** Import an event fixture by name in tests. */
|
/** Import an event fixture by name in tests. */
|
||||||
export async function eventFixture(name: string): Promise<NostrEvent> {
|
export async function eventFixture(name: string): Promise<NostrEvent> {
|
||||||
|
|
@ -38,7 +38,12 @@ export async function createTestDB() {
|
||||||
const { kysely } = DittoDB.create(testDatabaseUrl, { poolSize: 1 });
|
const { kysely } = DittoDB.create(testDatabaseUrl, { poolSize: 1 });
|
||||||
|
|
||||||
await DittoDB.migrate(kysely);
|
await DittoDB.migrate(kysely);
|
||||||
const store = new EventsDB(kysely);
|
|
||||||
|
const store = new EventsDB({
|
||||||
|
kysely,
|
||||||
|
timeout: Conf.db.timeouts.default,
|
||||||
|
pubkey: Conf.pubkey,
|
||||||
|
});
|
||||||
|
|
||||||
return {
|
return {
|
||||||
store,
|
store,
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ import { RelayError } from '@/RelayError.ts';
|
||||||
import { AdminSigner } from '@/signers/AdminSigner.ts';
|
import { AdminSigner } from '@/signers/AdminSigner.ts';
|
||||||
import { Storages } from '@/storages.ts';
|
import { Storages } from '@/storages.ts';
|
||||||
import { nostrNow } from '@/utils.ts';
|
import { nostrNow } from '@/utils.ts';
|
||||||
import { purifyEvent } from '@/storages/hydrate.ts';
|
import { purifyEvent } from '@/utils/purify.ts';
|
||||||
|
|
||||||
const debug = Debug('ditto:api');
|
const debug = Debug('ditto:api');
|
||||||
|
|
||||||
|
|
|
||||||
14
src/utils/purify.ts
Normal file
14
src/utils/purify.ts
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
import { NostrEvent } from '@nostrify/nostrify';
|
||||||
|
|
||||||
|
/** Return a normalized event without any non-standard keys. */
|
||||||
|
export function purifyEvent(event: NostrEvent): NostrEvent {
|
||||||
|
return {
|
||||||
|
id: event.id,
|
||||||
|
pubkey: event.pubkey,
|
||||||
|
kind: event.kind,
|
||||||
|
content: event.content,
|
||||||
|
tags: event.tags,
|
||||||
|
sig: event.sig,
|
||||||
|
created_at: event.created_at,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -24,7 +24,7 @@ export const policyWorker = Comlink.wrap<CustomPolicy>(
|
||||||
);
|
);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await policyWorker.import(Conf.policy);
|
await policyWorker.init(Conf.policy, Conf.databaseUrl, Conf.pubkey);
|
||||||
console.debug(`Using custom policy: ${Conf.policy}`);
|
console.debug(`Using custom policy: ${Conf.policy}`);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message.includes('Module not found')) {
|
if (e.message.includes('Module not found')) {
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,9 @@ import { NostrEvent, NostrRelayOK, NPolicy } from '@nostrify/nostrify';
|
||||||
import { NoOpPolicy, ReadOnlyPolicy } from '@nostrify/nostrify/policies';
|
import { NoOpPolicy, ReadOnlyPolicy } from '@nostrify/nostrify/policies';
|
||||||
import * as Comlink from 'comlink';
|
import * as Comlink from 'comlink';
|
||||||
|
|
||||||
|
import { DittoDB } from '@/db/DittoDB.ts';
|
||||||
|
import { EventsDB } from '@/storages/EventsDB.ts';
|
||||||
|
|
||||||
export class CustomPolicy implements NPolicy {
|
export class CustomPolicy implements NPolicy {
|
||||||
private policy: NPolicy = new ReadOnlyPolicy();
|
private policy: NPolicy = new ReadOnlyPolicy();
|
||||||
|
|
||||||
|
|
@ -11,10 +14,18 @@ export class CustomPolicy implements NPolicy {
|
||||||
return this.policy.call(event);
|
return this.policy.call(event);
|
||||||
}
|
}
|
||||||
|
|
||||||
async import(path: string): Promise<void> {
|
async init(path: string, databaseUrl: string, adminPubkey: string): Promise<void> {
|
||||||
|
const { kysely } = DittoDB.create(databaseUrl, { poolSize: 1 });
|
||||||
|
|
||||||
|
const store = new EventsDB({
|
||||||
|
kysely,
|
||||||
|
pubkey: adminPubkey,
|
||||||
|
timeout: 1_000,
|
||||||
|
});
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const Policy = (await import(path)).default;
|
const Policy = (await import(path)).default;
|
||||||
this.policy = new Policy();
|
this.policy = new Policy({ store });
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.message.includes('Module not found')) {
|
if (e.message.includes('Module not found')) {
|
||||||
this.policy = new NoOpPolicy();
|
this.policy = new NoOpPolicy();
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue