2022-02-27 04:07:39 +02:00
|
|
|
import define from '../../define.js';
|
|
|
|
import { genId } from '@/misc/gen-id.js';
|
|
|
|
import { Clips } from '@/models/index.js';
|
2020-01-29 21:37:25 +02:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['clips'],
|
|
|
|
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: true,
|
2020-01-29 21:37:25 +02:00
|
|
|
|
|
|
|
kind: 'write:account',
|
|
|
|
|
2021-03-06 15:34:11 +02:00
|
|
|
res: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 16:58:30 +02:00
|
|
|
ref: 'Clip',
|
|
|
|
},
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2020-01-29 21:37:25 +02:00
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
name: { type: 'string', minLength: 1, maxLength: 100 },
|
|
|
|
isPublic: { type: 'boolean' },
|
|
|
|
description: { type: 'string', nullable: true, minLength: 1, maxLength: 2048 },
|
|
|
|
},
|
|
|
|
required: ['name'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 07:05:32 +02:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2021-03-24 04:05:37 +02:00
|
|
|
const clip = await Clips.insert({
|
2020-01-29 21:37:25 +02:00
|
|
|
id: genId(),
|
|
|
|
createdAt: new Date(),
|
|
|
|
userId: user.id,
|
|
|
|
name: ps.name,
|
2020-11-15 05:04:54 +02:00
|
|
|
isPublic: ps.isPublic,
|
|
|
|
description: ps.description,
|
2021-03-24 04:05:37 +02:00
|
|
|
}).then(x => Clips.findOneOrFail(x.identifiers[0]));
|
2020-01-29 21:37:25 +02:00
|
|
|
|
|
|
|
return await Clips.pack(clip);
|
|
|
|
});
|