bigbuffet-rw/app/soapbox/schemas/account.ts

157 lines
5.8 KiB
TypeScript
Raw Normal View History

import escapeTextContentForBrowser from 'escape-html';
import z from 'zod';
import emojify from 'soapbox/features/emoji';
import { unescapeHTML } from 'soapbox/utils/html';
import { customEmojiSchema } from './custom-emoji';
2023-06-20 12:24:39 -07:00
import { relationshipSchema } from './relationship';
2023-05-04 09:42:20 -07:00
import { contentSchema, filteredArray, makeCustomEmojiMap } from './utils';
2023-06-13 20:12:42 -07:00
import type { Resolve } from 'soapbox/utils/types';
const avatarMissing = require('assets/images/avatar-missing.png');
const headerMissing = require('assets/images/header-missing.png');
const birthdaySchema = z.string().regex(/^\d{4}-\d{2}-\d{2}$/);
const fieldSchema = z.object({
name: z.string(),
value: z.string(),
verified_at: z.string().datetime().nullable().catch(null),
});
const baseAccountSchema = z.object({
acct: z.string().catch(''),
avatar: z.string().catch(avatarMissing),
avatar_static: z.string().url().optional().catch(undefined),
bot: z.boolean().catch(false),
created_at: z.string().datetime().catch(new Date().toUTCString()),
discoverable: z.boolean().catch(false),
display_name: z.string().catch(''),
2023-05-02 16:30:21 -07:00
emojis: filteredArray(customEmojiSchema),
fields: filteredArray(fieldSchema),
followers_count: z.number().catch(0),
following_count: z.number().catch(0),
fqn: z.string().optional().catch(undefined),
header: z.string().url().catch(headerMissing),
header_static: z.string().url().optional().catch(undefined),
id: z.string(),
last_status_at: z.string().datetime().optional().catch(undefined),
location: z.string().optional().catch(undefined),
locked: z.boolean().catch(false),
moved: z.literal(null).catch(null),
mute_expires_at: z.union([
z.string(),
z.null(),
]).catch(null),
2023-05-04 09:42:20 -07:00
note: contentSchema,
/** Fedibird extra settings. */
other_settings: z.object({
birthday: birthdaySchema.nullish().catch(undefined),
location: z.string().optional().catch(undefined),
}).optional().catch(undefined),
pleroma: z.object({
accepts_chat_messages: z.boolean().catch(false),
accepts_email_list: z.boolean().catch(false),
2023-06-20 12:24:39 -07:00
also_known_as: z.array(z.string().url()).catch([]),
ap_id: z.string().url().optional().catch(undefined),
birthday: birthdaySchema.nullish().catch(undefined),
deactivated: z.boolean().catch(false),
favicon: z.string().url().optional().catch(undefined),
hide_favorites: z.boolean().catch(false),
hide_followers: z.boolean().catch(false),
hide_followers_count: z.boolean().catch(false),
hide_follows: z.boolean().catch(false),
hide_follows_count: z.boolean().catch(false),
is_admin: z.boolean().catch(false),
is_moderator: z.boolean().catch(false),
is_suggested: z.boolean().catch(false),
location: z.string().optional().catch(undefined),
notification_settings: z.object({
block_from_strangers: z.boolean().catch(false),
}).optional().catch(undefined),
2023-06-20 12:24:39 -07:00
relationship: relationshipSchema.optional().catch(undefined),
tags: z.array(z.string()).catch([]),
}).optional().catch(undefined),
source: z.object({
approved: z.boolean().catch(true),
chats_onboarded: z.boolean().catch(true),
fields: filteredArray(fieldSchema),
note: z.string().catch(''),
pleroma: z.object({
discoverable: z.boolean().catch(true),
}).optional().catch(undefined),
sms_verified: z.boolean().catch(false),
}).optional().catch(undefined),
statuses_count: z.number().catch(0),
suspended: z.boolean().catch(false),
2023-05-03 10:52:36 -07:00
uri: z.string().url().catch(''),
2023-07-15 17:47:59 -07:00
url: z.string().url(),
username: z.string().catch(''),
verified: z.boolean().catch(false),
website: z.string().catch(''),
});
type BaseAccount = z.infer<typeof baseAccountSchema>;
type TransformableAccount = Omit<BaseAccount, 'moved'>;
const getDomain = (url: string) => {
try {
return new URL(url).host;
} catch (e) {
return '';
}
};
/** Add internal fields to the account. */
const transformAccount = <T extends TransformableAccount>({ pleroma, other_settings, fields, ...account }: T) => {
const customEmojiMap = makeCustomEmojiMap(account.emojis);
const newFields = fields.map((field) => ({
...field,
name_emojified: emojify(escapeTextContentForBrowser(field.name), customEmojiMap),
value_emojified: emojify(field.value, customEmojiMap),
value_plain: unescapeHTML(field.value),
}));
const displayName = account.display_name.trim().length === 0 ? account.username : account.display_name;
const domain = getDomain(account.url || account.uri);
if (pleroma) {
pleroma.birthday = pleroma.birthday || other_settings?.birthday;
}
return {
...account,
admin: pleroma?.is_admin || false,
avatar_static: account.avatar_static || account.avatar,
discoverable: account.discoverable || account.source?.pleroma?.discoverable || false,
display_name: displayName,
display_name_html: emojify(escapeTextContentForBrowser(displayName), customEmojiMap),
domain,
fields: newFields,
fqn: account.fqn || (account.acct.includes('@') ? account.acct : `${account.acct}@${domain}`),
header_static: account.header_static || account.header,
moderator: pleroma?.is_moderator || false,
location: account.location || pleroma?.location || other_settings?.location || '',
note_emojified: emojify(account.note, customEmojiMap),
2023-06-20 14:02:43 -07:00
pleroma: (() => {
if (!pleroma) return undefined;
const { relationship, ...rest } = pleroma;
return rest;
})(),
relationship: pleroma?.relationship,
staff: pleroma?.is_admin || pleroma?.is_moderator || false,
suspended: account.suspended || pleroma?.deactivated || false,
verified: account.verified || pleroma?.tags.includes('verified') || false,
};
};
const accountSchema = baseAccountSchema.extend({
moved: baseAccountSchema.transform(transformAccount).nullable().catch(null),
}).transform(transformAccount);
2023-06-13 20:12:42 -07:00
type Account = Resolve<z.infer<typeof accountSchema>>;
2023-05-04 10:20:39 -07:00
export { accountSchema, type Account };