mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00:00
556 lines
17 KiB
TypeScript
556 lines
17 KiB
TypeScript
import { NostrEvent, NostrFilter, NSchema as n } from '@nostrify/nostrify';
|
|
import { nip19 } from 'nostr-tools';
|
|
import { z } from 'zod';
|
|
|
|
import { type AppController } from '@/app.ts';
|
|
import { Conf } from '@/config.ts';
|
|
import { getAuthor, getFollowedPubkeys } from '@/queries.ts';
|
|
import { booleanParamSchema, fileSchema } from '@/schema.ts';
|
|
import { Storages } from '@/storages.ts';
|
|
import { uploadFile } from '@/utils/upload.ts';
|
|
import { nostrNow } from '@/utils.ts';
|
|
import { assertAuthenticated, createEvent, paginated, parseBody, updateEvent, updateListEvent } from '@/utils/api.ts';
|
|
import { extractIdentifier, lookupAccount, lookupPubkey } from '@/utils/lookup.ts';
|
|
import { renderAccounts, renderEventAccounts, renderStatuses } from '@/views.ts';
|
|
import { accountFromPubkey, renderAccount } from '@/views/mastodon/accounts.ts';
|
|
import { renderRelationship } from '@/views/mastodon/relationships.ts';
|
|
import { renderReblog, renderStatus } from '@/views/mastodon/statuses.ts';
|
|
import { metadataSchema } from '@/schemas/nostr.ts';
|
|
import { hydrateEvents } from '@/storages/hydrate.ts';
|
|
import { bech32ToPubkey } from '@/utils.ts';
|
|
import { addTag, deleteTag, findReplyTag, getTagSet } from '@/utils/tags.ts';
|
|
import { getPubkeysBySearch } from '@/utils/search.ts';
|
|
import { MastodonAccount } from '@/entities/MastodonAccount.ts';
|
|
|
|
const usernameSchema = z
|
|
.string().min(1).max(30)
|
|
.regex(/^[a-z0-9_]+$/i)
|
|
.refine((username) => !Conf.forbiddenUsernames.includes(username), 'Username is reserved.');
|
|
|
|
const createAccountSchema = z.object({
|
|
username: usernameSchema,
|
|
});
|
|
|
|
const createAccountController: AppController = async (c) => {
|
|
const pubkey = await c.get('signer')?.getPublicKey()!;
|
|
const result = createAccountSchema.safeParse(await c.req.json());
|
|
|
|
if (!result.success) {
|
|
return c.json({ error: 'Bad request', schema: result.error }, 400);
|
|
}
|
|
|
|
return c.json({
|
|
access_token: nip19.npubEncode(pubkey),
|
|
token_type: 'Bearer',
|
|
scope: 'read write follow push',
|
|
created_at: nostrNow(),
|
|
});
|
|
};
|
|
|
|
const verifyCredentialsController: AppController = async (c) => {
|
|
const signer = c.get('signer')!;
|
|
const pubkey = await signer.getPublicKey();
|
|
|
|
const store = await Storages.db();
|
|
|
|
const [author, [settingsEvent]] = await Promise.all([
|
|
getAuthor(pubkey, { signal: AbortSignal.timeout(5000) }),
|
|
|
|
store.query([{
|
|
kinds: [30078],
|
|
authors: [pubkey],
|
|
'#d': ['pub.ditto.pleroma_settings_store'],
|
|
limit: 1,
|
|
}]),
|
|
]);
|
|
|
|
let settingsStore: Record<string, unknown> | undefined;
|
|
try {
|
|
settingsStore = n.json().pipe(z.record(z.string(), z.unknown())).parse(settingsEvent?.content);
|
|
} catch {
|
|
// Do nothing
|
|
}
|
|
|
|
const account = author
|
|
? await renderAccount(author, { withSource: true, settingsStore })
|
|
: await accountFromPubkey(pubkey, { withSource: true, settingsStore });
|
|
|
|
return c.json(account);
|
|
};
|
|
|
|
const accountController: AppController = async (c) => {
|
|
const pubkey = c.req.param('pubkey');
|
|
|
|
const event = await getAuthor(pubkey);
|
|
if (event) {
|
|
assertAuthenticated(c, event);
|
|
return c.json(await renderAccount(event));
|
|
} else {
|
|
return c.json(await accountFromPubkey(pubkey));
|
|
}
|
|
};
|
|
|
|
const accountLookupController: AppController = async (c) => {
|
|
const acct = c.req.query('acct');
|
|
|
|
if (!acct) {
|
|
return c.json({ error: 'Missing `acct` query parameter.' }, 422);
|
|
}
|
|
|
|
const event = await lookupAccount(decodeURIComponent(acct));
|
|
if (event) {
|
|
assertAuthenticated(c, event);
|
|
return c.json(await renderAccount(event));
|
|
}
|
|
try {
|
|
const pubkey = bech32ToPubkey(decodeURIComponent(acct));
|
|
return c.json(await accountFromPubkey(pubkey!));
|
|
} catch {
|
|
return c.json({ error: 'Could not find user.' }, 404);
|
|
}
|
|
};
|
|
|
|
const accountSearchQuerySchema = z.object({
|
|
q: z.string().transform(decodeURIComponent),
|
|
resolve: booleanParamSchema.optional().transform(Boolean),
|
|
following: z.boolean().default(false),
|
|
});
|
|
|
|
const accountSearchController: AppController = async (c) => {
|
|
const { signal } = c.req.raw;
|
|
const { limit } = c.get('pagination');
|
|
|
|
const kysely = await Storages.kysely();
|
|
const viewerPubkey = await c.get('signer')?.getPublicKey();
|
|
|
|
const result = accountSearchQuerySchema.safeParse(c.req.query());
|
|
|
|
if (!result.success) {
|
|
return c.json({ error: 'Bad request', schema: result.error }, 422);
|
|
}
|
|
|
|
const query = decodeURIComponent(result.data.q);
|
|
const store = await Storages.search();
|
|
|
|
const lookup = extractIdentifier(query);
|
|
const event = await lookupAccount(lookup ?? query);
|
|
|
|
if (!event && lookup) {
|
|
const pubkey = await lookupPubkey(lookup);
|
|
return c.json(pubkey ? [accountFromPubkey(pubkey)] : []);
|
|
}
|
|
|
|
const events: NostrEvent[] = [];
|
|
|
|
if (event) {
|
|
events.push(event);
|
|
} else {
|
|
const following = viewerPubkey ? await getFollowedPubkeys(viewerPubkey) : new Set<string>();
|
|
const authors = [...await getPubkeysBySearch(kysely, { q: query, limit, offset: 0, following })];
|
|
const profiles = await store.query([{ kinds: [0], authors, limit }], { signal });
|
|
events.push(...profiles);
|
|
}
|
|
|
|
const accounts = await hydrateEvents({ events, store, signal })
|
|
.then((events) => events.map((event) => renderAccount(event)));
|
|
|
|
return c.json(accounts);
|
|
};
|
|
|
|
const relationshipsController: AppController = async (c) => {
|
|
const pubkey = await c.get('signer')?.getPublicKey()!;
|
|
const ids = z.array(z.string()).safeParse(c.req.queries('id[]'));
|
|
|
|
if (!ids.success) {
|
|
return c.json({ error: 'Missing `id[]` query parameters.' }, 422);
|
|
}
|
|
|
|
const db = await Storages.db();
|
|
|
|
const [sourceEvents, targetEvents] = await Promise.all([
|
|
db.query([{ kinds: [3, 10000], authors: [pubkey] }]),
|
|
db.query([{ kinds: [3], authors: ids.data }]),
|
|
]);
|
|
|
|
const event3 = sourceEvents.find((event) => event.kind === 3 && event.pubkey === pubkey);
|
|
const event10000 = sourceEvents.find((event) => event.kind === 10000 && event.pubkey === pubkey);
|
|
|
|
const result = ids.data.map((id) =>
|
|
renderRelationship({
|
|
sourcePubkey: pubkey,
|
|
targetPubkey: id,
|
|
event3,
|
|
target3: targetEvents.find((event) => event.kind === 3 && event.pubkey === id),
|
|
event10000,
|
|
})
|
|
);
|
|
|
|
return c.json(result);
|
|
};
|
|
|
|
const accountStatusesQuerySchema = z.object({
|
|
pinned: booleanParamSchema.optional(),
|
|
limit: z.coerce.number().nonnegative().transform((v) => Math.min(v, 40)).catch(20),
|
|
exclude_replies: booleanParamSchema.optional(),
|
|
tagged: z.string().optional(),
|
|
only_media: booleanParamSchema.optional(),
|
|
});
|
|
|
|
const accountStatusesController: AppController = async (c) => {
|
|
const pubkey = c.req.param('pubkey');
|
|
const { since, until } = c.get('pagination');
|
|
const { pinned, limit, exclude_replies, tagged, only_media } = accountStatusesQuerySchema.parse(c.req.query());
|
|
const { signal } = c.req.raw;
|
|
|
|
const store = await Storages.db();
|
|
|
|
const [[author], [user]] = await Promise.all([
|
|
store.query([{ kinds: [0], authors: [pubkey], limit: 1 }], { signal }),
|
|
store.query([{ kinds: [30382], authors: [Conf.pubkey], '#d': [pubkey], limit: 1 }], { signal }),
|
|
]);
|
|
|
|
if (author) {
|
|
assertAuthenticated(c, author);
|
|
}
|
|
|
|
const names = getTagSet(user?.tags ?? [], 'n');
|
|
|
|
if (names.has('disabled')) {
|
|
return c.json([]);
|
|
}
|
|
|
|
if (pinned) {
|
|
const [pinEvent] = await store.query([{ kinds: [10001], authors: [pubkey], limit: 1 }], { signal });
|
|
if (pinEvent) {
|
|
const pinnedEventIds = getTagSet(pinEvent.tags, 'e');
|
|
return renderStatuses(c, [...pinnedEventIds].reverse());
|
|
} else {
|
|
return c.json([]);
|
|
}
|
|
}
|
|
|
|
const filter: NostrFilter = {
|
|
authors: [pubkey],
|
|
kinds: [1, 6, 20],
|
|
since,
|
|
until,
|
|
limit,
|
|
};
|
|
|
|
const search: string[] = [];
|
|
|
|
if (only_media) {
|
|
search.push('media:true');
|
|
}
|
|
|
|
if (exclude_replies) {
|
|
search.push('reply:false');
|
|
}
|
|
|
|
if (tagged) {
|
|
filter['#t'] = [tagged];
|
|
}
|
|
|
|
if (search.length) {
|
|
filter.search = search.join(' ');
|
|
}
|
|
|
|
const opts = { signal, limit, timeout: Conf.db.timeouts.timelines };
|
|
|
|
const events = await store.query([filter], opts)
|
|
.then((events) => hydrateEvents({ events, store, signal }))
|
|
.then((events) => {
|
|
if (exclude_replies) {
|
|
return events.filter((event) => {
|
|
if (event.kind === 1) return !findReplyTag(event.tags);
|
|
return true;
|
|
});
|
|
}
|
|
return events;
|
|
});
|
|
|
|
const viewerPubkey = await c.get('signer')?.getPublicKey();
|
|
|
|
const statuses = await Promise.all(
|
|
events.map((event) => {
|
|
if (event.kind === 6) return renderReblog(event, { viewerPubkey });
|
|
return renderStatus(event, { viewerPubkey });
|
|
}),
|
|
);
|
|
return paginated(c, events, statuses);
|
|
};
|
|
|
|
const updateCredentialsSchema = z.object({
|
|
display_name: z.coerce.string().optional(),
|
|
note: z.coerce.string().optional(),
|
|
avatar: fileSchema.or(z.literal('')).optional(),
|
|
header: fileSchema.or(z.literal('')).optional(),
|
|
locked: z.boolean().optional(),
|
|
bot: z.boolean().optional(),
|
|
discoverable: z.boolean().optional(),
|
|
nip05: z.string().email().or(z.literal('')).optional(),
|
|
pleroma_settings_store: z.record(z.string(), z.unknown()).optional(),
|
|
lud16: z.string().email().or(z.literal('')).optional(),
|
|
website: z.string().url().or(z.literal('')).optional(),
|
|
fields_attributes: z.object({ name: z.string(), value: z.string() }).array().optional(),
|
|
});
|
|
|
|
const updateCredentialsController: AppController = async (c) => {
|
|
const signer = c.get('signer')!;
|
|
const pubkey = await signer.getPublicKey();
|
|
const body = await parseBody(c.req.raw);
|
|
const result = updateCredentialsSchema.safeParse(body);
|
|
const store = await Storages.db();
|
|
const signal = c.req.raw.signal;
|
|
|
|
if (!result.success) {
|
|
return c.json(result.error, 422);
|
|
}
|
|
|
|
const keys = Object.keys(result.data);
|
|
let event: NostrEvent | undefined;
|
|
|
|
if (keys.length === 1 && keys[0] === 'pleroma_settings_store') {
|
|
event = (await store.query([{ kinds: [0], authors: [pubkey] }]))[0];
|
|
} else {
|
|
event = await updateEvent(
|
|
{ kinds: [0], authors: [pubkey], limit: 1 },
|
|
async (prev) => {
|
|
const meta = n.json().pipe(metadataSchema).catch({}).parse(prev.content);
|
|
const {
|
|
avatar: avatarFile,
|
|
header: headerFile,
|
|
display_name,
|
|
fields_attributes,
|
|
note,
|
|
nip05,
|
|
lud16,
|
|
website,
|
|
bot,
|
|
} = result.data;
|
|
|
|
const [avatar, header] = await Promise.all([
|
|
avatarFile ? uploadFile(c, avatarFile, { pubkey }) : undefined,
|
|
headerFile ? uploadFile(c, headerFile, { pubkey }) : undefined,
|
|
]);
|
|
|
|
meta.name = display_name ?? meta.name;
|
|
meta.about = note ?? meta.about;
|
|
meta.picture = avatar?.url ?? meta.picture;
|
|
meta.banner = header?.url ?? meta.banner;
|
|
meta.nip05 = nip05 ?? meta.nip05;
|
|
meta.lud16 = lud16 ?? meta.lud16;
|
|
meta.website = website ?? meta.website;
|
|
meta.bot = bot ?? meta.bot;
|
|
|
|
if (avatarFile === '') delete meta.picture;
|
|
if (headerFile === '') delete meta.banner;
|
|
if (nip05 === '') delete meta.nip05;
|
|
if (lud16 === '') delete meta.lud16;
|
|
if (website === '') delete meta.website;
|
|
|
|
if (fields_attributes) {
|
|
meta.fields = fields_attributes.map(({ name, value }) => [name, value]);
|
|
}
|
|
|
|
return {
|
|
kind: 0,
|
|
content: JSON.stringify(meta),
|
|
tags: [],
|
|
};
|
|
},
|
|
c,
|
|
);
|
|
}
|
|
|
|
const settingsStore = result.data.pleroma_settings_store;
|
|
|
|
let account: MastodonAccount;
|
|
if (event) {
|
|
await hydrateEvents({ events: [event], store, signal });
|
|
account = await renderAccount(event, { withSource: true, settingsStore });
|
|
} else {
|
|
account = await accountFromPubkey(pubkey, { withSource: true, settingsStore });
|
|
}
|
|
|
|
if (settingsStore) {
|
|
await createEvent({
|
|
kind: 30078,
|
|
tags: [['d', 'pub.ditto.pleroma_settings_store']],
|
|
content: JSON.stringify(settingsStore),
|
|
}, c);
|
|
}
|
|
|
|
return c.json(account);
|
|
};
|
|
|
|
/** https://docs.joinmastodon.org/methods/accounts/#follow */
|
|
const followController: AppController = async (c) => {
|
|
const sourcePubkey = await c.get('signer')?.getPublicKey()!;
|
|
const targetPubkey = c.req.param('pubkey');
|
|
|
|
await updateListEvent(
|
|
{ kinds: [3], authors: [sourcePubkey], limit: 1 },
|
|
(tags) => addTag(tags, ['p', targetPubkey]),
|
|
c,
|
|
);
|
|
|
|
const relationship = await getRelationship(sourcePubkey, targetPubkey);
|
|
relationship.following = true;
|
|
|
|
return c.json(relationship);
|
|
};
|
|
|
|
/** https://docs.joinmastodon.org/methods/accounts/#unfollow */
|
|
const unfollowController: AppController = async (c) => {
|
|
const sourcePubkey = await c.get('signer')?.getPublicKey()!;
|
|
const targetPubkey = c.req.param('pubkey');
|
|
|
|
await updateListEvent(
|
|
{ kinds: [3], authors: [sourcePubkey], limit: 1 },
|
|
(tags) => deleteTag(tags, ['p', targetPubkey]),
|
|
c,
|
|
);
|
|
|
|
const relationship = await getRelationship(sourcePubkey, targetPubkey);
|
|
return c.json(relationship);
|
|
};
|
|
|
|
const followersController: AppController = (c) => {
|
|
const pubkey = c.req.param('pubkey');
|
|
const params = c.get('pagination');
|
|
return renderEventAccounts(c, [{ kinds: [3], '#p': [pubkey], ...params }]);
|
|
};
|
|
|
|
const followingController: AppController = async (c) => {
|
|
const pubkey = c.req.param('pubkey');
|
|
const pubkeys = await getFollowedPubkeys(pubkey);
|
|
return renderAccounts(c, [...pubkeys]);
|
|
};
|
|
|
|
/** https://docs.joinmastodon.org/methods/accounts/#block */
|
|
const blockController: AppController = (c) => {
|
|
return c.json({ error: 'Blocking is not supported by Nostr' }, 422);
|
|
};
|
|
|
|
/** https://docs.joinmastodon.org/methods/accounts/#unblock */
|
|
const unblockController: AppController = (c) => {
|
|
return c.json({ error: 'Blocking is not supported by Nostr' }, 422);
|
|
};
|
|
|
|
/** https://docs.joinmastodon.org/methods/accounts/#mute */
|
|
const muteController: AppController = async (c) => {
|
|
const sourcePubkey = await c.get('signer')?.getPublicKey()!;
|
|
const targetPubkey = c.req.param('pubkey');
|
|
|
|
await updateListEvent(
|
|
{ kinds: [10000], authors: [sourcePubkey], limit: 1 },
|
|
(tags) => addTag(tags, ['p', targetPubkey]),
|
|
c,
|
|
);
|
|
|
|
const relationship = await getRelationship(sourcePubkey, targetPubkey);
|
|
return c.json(relationship);
|
|
};
|
|
|
|
/** https://docs.joinmastodon.org/methods/accounts/#unmute */
|
|
const unmuteController: AppController = async (c) => {
|
|
const sourcePubkey = await c.get('signer')?.getPublicKey()!;
|
|
const targetPubkey = c.req.param('pubkey');
|
|
|
|
await updateListEvent(
|
|
{ kinds: [10000], authors: [sourcePubkey], limit: 1 },
|
|
(tags) => deleteTag(tags, ['p', targetPubkey]),
|
|
c,
|
|
);
|
|
|
|
const relationship = await getRelationship(sourcePubkey, targetPubkey);
|
|
return c.json(relationship);
|
|
};
|
|
|
|
const favouritesController: AppController = async (c) => {
|
|
const pubkey = await c.get('signer')?.getPublicKey()!;
|
|
const params = c.get('pagination');
|
|
const { signal } = c.req.raw;
|
|
|
|
const store = await Storages.db();
|
|
|
|
const events7 = await store.query(
|
|
[{ kinds: [7], authors: [pubkey], ...params }],
|
|
{ signal },
|
|
);
|
|
|
|
const ids = events7
|
|
.map((event) => event.tags.find((tag) => tag[0] === 'e')?.[1])
|
|
.filter((id): id is string => !!id);
|
|
|
|
const events1 = await store.query([{ kinds: [1, 20], ids }], { signal })
|
|
.then((events) => hydrateEvents({ events, store, signal }));
|
|
|
|
const viewerPubkey = await c.get('signer')?.getPublicKey();
|
|
|
|
const statuses = await Promise.all(
|
|
events1.map((event) => renderStatus(event, { viewerPubkey })),
|
|
);
|
|
return paginated(c, events1, statuses);
|
|
};
|
|
|
|
const familiarFollowersController: AppController = async (c) => {
|
|
const store = await Storages.db();
|
|
const signer = c.get('signer')!;
|
|
const pubkey = await signer.getPublicKey();
|
|
|
|
const ids = z.array(z.string()).parse(c.req.queries('id[]'));
|
|
const follows = await getFollowedPubkeys(pubkey);
|
|
|
|
const results = await Promise.all(ids.map(async (id) => {
|
|
const followLists = await store.query([{ kinds: [3], authors: [...follows], '#p': [id] }])
|
|
.then((events) => hydrateEvents({ events, store }));
|
|
|
|
const accounts = await Promise.all(
|
|
followLists.map((event) => event.author ? renderAccount(event.author) : accountFromPubkey(event.pubkey)),
|
|
);
|
|
|
|
return { id, accounts };
|
|
}));
|
|
|
|
return c.json(results);
|
|
};
|
|
|
|
async function getRelationship(sourcePubkey: string, targetPubkey: string) {
|
|
const db = await Storages.db();
|
|
|
|
const [sourceEvents, targetEvents] = await Promise.all([
|
|
db.query([{ kinds: [3, 10000], authors: [sourcePubkey] }]),
|
|
db.query([{ kinds: [3], authors: [targetPubkey] }]),
|
|
]);
|
|
|
|
return renderRelationship({
|
|
sourcePubkey,
|
|
targetPubkey,
|
|
event3: sourceEvents.find((event) => event.kind === 3 && event.pubkey === sourcePubkey),
|
|
target3: targetEvents.find((event) => event.kind === 3 && event.pubkey === targetPubkey),
|
|
event10000: sourceEvents.find((event) => event.kind === 10000 && event.pubkey === sourcePubkey),
|
|
});
|
|
}
|
|
|
|
export {
|
|
accountController,
|
|
accountLookupController,
|
|
accountSearchController,
|
|
accountStatusesController,
|
|
blockController,
|
|
createAccountController,
|
|
familiarFollowersController,
|
|
favouritesController,
|
|
followController,
|
|
followersController,
|
|
followingController,
|
|
muteController,
|
|
relationshipsController,
|
|
unblockController,
|
|
unfollowController,
|
|
unmuteController,
|
|
updateCredentialsController,
|
|
verifyCredentialsController,
|
|
};
|