2020-01-29 21:37:25 +02:00
|
|
|
import $ from 'cafy';
|
2021-08-19 15:55:45 +03:00
|
|
|
import define from '../../define';
|
|
|
|
import { genId } from '@/misc/gen-id';
|
|
|
|
import { Clips } from '@/models/index';
|
2020-01-29 21:37:25 +02:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['clips'],
|
|
|
|
|
2020-02-15 14:33:32 +02:00
|
|
|
requireCredential: true as const,
|
2020-01-29 21:37:25 +02:00
|
|
|
|
|
|
|
kind: 'write:account',
|
|
|
|
|
|
|
|
params: {
|
|
|
|
name: {
|
2021-12-09 16:58:30 +02:00
|
|
|
validator: $.str.range(1, 100),
|
2020-11-15 05:04:54 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
isPublic: {
|
2021-12-09 16:58:30 +02:00
|
|
|
validator: $.optional.bool,
|
2020-11-15 05:04:54 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
description: {
|
2021-12-09 16:58:30 +02:00
|
|
|
validator: $.optional.nullable.str.range(1, 2048),
|
|
|
|
},
|
2020-01-29 21:37:25 +02:00
|
|
|
},
|
2021-03-06 15:34:11 +02:00
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2021-12-09 16:58:30 +02:00
|
|
|
ref: 'Clip',
|
|
|
|
},
|
2020-01-29 21:37:25 +02:00
|
|
|
};
|
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2020-01-29 21:37:25 +02:00
|
|
|
export default define(meta, 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);
|
|
|
|
});
|