2020-01-30 04:37:25 +09:00
|
|
|
import $ from 'cafy';
|
2021-08-19 21:55:45 +09:00
|
|
|
import define from '../../../define';
|
|
|
|
import { Announcements } from '@/models/index';
|
|
|
|
import { genId } from '@/misc/gen-id';
|
2020-01-30 04:37:25 +09:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['admin'],
|
|
|
|
|
2020-02-15 21:33:32 +09:00
|
|
|
requireCredential: true as const,
|
2020-01-30 04:37:25 +09:00
|
|
|
requireModerator: true,
|
|
|
|
|
|
|
|
params: {
|
|
|
|
title: {
|
2021-12-09 23:58:30 +09:00
|
|
|
validator: $.str.min(1),
|
2020-01-30 04:37:25 +09:00
|
|
|
},
|
|
|
|
text: {
|
2021-12-09 23:58:30 +09:00
|
|
|
validator: $.str.min(1),
|
2020-01-30 04:37:25 +09:00
|
|
|
},
|
|
|
|
imageUrl: {
|
2021-12-09 23:58:30 +09:00
|
|
|
validator: $.nullable.str.min(1),
|
|
|
|
},
|
2021-03-06 22:34:11 +09:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
properties: {
|
|
|
|
id: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
format: 'id',
|
|
|
|
example: 'xxxxxxxxxx',
|
|
|
|
},
|
|
|
|
createdAt: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
format: 'date-time',
|
|
|
|
},
|
|
|
|
updatedAt: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: true as const,
|
|
|
|
format: 'date-time',
|
|
|
|
},
|
|
|
|
title: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
},
|
|
|
|
text: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
},
|
|
|
|
imageUrl: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: true as const,
|
2021-12-09 23:58:30 +09:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2020-01-30 04:37:25 +09:00
|
|
|
};
|
|
|
|
|
2022-01-03 02:12:50 +09:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2020-01-30 04:37:25 +09:00
|
|
|
export default define(meta, async (ps) => {
|
|
|
|
const announcement = await Announcements.save({
|
|
|
|
id: genId(),
|
|
|
|
createdAt: new Date(),
|
|
|
|
updatedAt: null,
|
|
|
|
title: ps.title,
|
|
|
|
text: ps.text,
|
|
|
|
imageUrl: ps.imageUrl,
|
|
|
|
});
|
|
|
|
|
|
|
|
return announcement;
|
|
|
|
});
|