2020-01-29 19:37:25 +00:00
|
|
|
import $ from 'cafy';
|
2021-08-19 12:55:45 +00:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
import define from '../../define';
|
|
|
|
import { ApiError } from '../../error';
|
|
|
|
import { Clips } from '@/models/index';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['clips'],
|
|
|
|
|
2020-02-15 12:33:32 +00:00
|
|
|
requireCredential: true as const,
|
2020-01-29 19:37:25 +00:00
|
|
|
|
|
|
|
kind: 'write:account',
|
|
|
|
|
|
|
|
params: {
|
|
|
|
clipId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
},
|
|
|
|
|
|
|
|
name: {
|
|
|
|
validator: $.str.range(1, 100),
|
2020-11-15 03:34:47 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
isPublic: {
|
|
|
|
validator: $.optional.bool
|
|
|
|
},
|
|
|
|
|
|
|
|
description: {
|
|
|
|
validator: $.optional.nullable.str.range(1, 2048)
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchClip: {
|
|
|
|
message: 'No such clip.',
|
|
|
|
code: 'NO_SUCH_CLIP',
|
|
|
|
id: 'b4d92d70-b216-46fa-9a3f-a8c811699257'
|
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
ref: 'Clip'
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default define(meta, async (ps, user) => {
|
|
|
|
// Fetch the clip
|
|
|
|
const clip = await Clips.findOne({
|
|
|
|
id: ps.clipId,
|
|
|
|
userId: user.id
|
|
|
|
});
|
|
|
|
|
|
|
|
if (clip == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchClip);
|
|
|
|
}
|
|
|
|
|
|
|
|
await Clips.update(clip.id, {
|
2020-11-15 03:34:47 +00:00
|
|
|
name: ps.name,
|
|
|
|
description: ps.description,
|
|
|
|
isPublic: ps.isPublic,
|
2020-01-29 19:37:25 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return await Clips.pack(clip.id);
|
|
|
|
});
|