47 lines
1.7 KiB
TypeScript
47 lines
1.7 KiB
TypeScript
|
import pick from 'lodash.pick';
|
||
|
import { z } from 'zod';
|
||
|
|
||
|
import { ruleSchema } from '../rule';
|
||
|
import { statusWithoutAccountSchema } from '../status';
|
||
|
import { dateSchema, filteredArray } from '../utils';
|
||
|
|
||
|
import { adminAccountSchema } from './account';
|
||
|
|
||
|
/** @see {@link https://docs.joinmastodon.org/entities/Admin_Report/} */
|
||
|
const adminReportSchema = z.preprocess((report: any) => {
|
||
|
if (report.actor) {
|
||
|
/**
|
||
|
* Convert Pleroma report schema
|
||
|
* @see {@link https://docs.pleroma.social/backend/development/API/admin_api/#get-apiv1pleromaadminreports}
|
||
|
*/
|
||
|
return {
|
||
|
action_taken: report.state !== 'open',
|
||
|
comment: report.content,
|
||
|
updated_at: report.created_at,
|
||
|
account: report.actor,
|
||
|
target_account: report.account,
|
||
|
...(pick(report, ['id', 'assigned_account', 'created_at', 'rules', 'statuses'])),
|
||
|
};
|
||
|
}
|
||
|
return report;
|
||
|
}, z.object({
|
||
|
id: z.string(),
|
||
|
action_taken: z.boolean().optional().catch(undefined),
|
||
|
action_taken_at: dateSchema.nullable().catch(null),
|
||
|
category: z.string().optional().catch(undefined),
|
||
|
comment: z.string().optional().catch(undefined),
|
||
|
forwarded: z.boolean().optional().catch(undefined),
|
||
|
created_at: dateSchema.optional().catch(undefined),
|
||
|
updated_at: dateSchema.optional().catch(undefined),
|
||
|
account: adminAccountSchema,
|
||
|
target_account: adminAccountSchema,
|
||
|
assigned_account: adminAccountSchema.nullable().catch(null),
|
||
|
action_taken_by_account: adminAccountSchema.nullable().catch(null),
|
||
|
statuses: filteredArray(statusWithoutAccountSchema),
|
||
|
rules: filteredArray(ruleSchema),
|
||
|
}));
|
||
|
|
||
|
type AdminReport = z.infer<typeof adminReportSchema>;
|
||
|
|
||
|
export { adminReportSchema, type AdminReport };
|