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