mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 12:13:08 +02:00
1c67c26bd8
* wip * wip * wip * Update following.ts * wip * wip * wip * Update resolve-user.ts * maxQueryExecutionTime * wip * wip
51 lines
1 KiB
TypeScript
51 lines
1 KiB
TypeScript
import define from '../../define.js';
|
|
import { ApiError } from '../../error.js';
|
|
import { Clips } from '@/models/index.js';
|
|
|
|
export const meta = {
|
|
tags: ['clips', 'account'],
|
|
|
|
requireCredential: false,
|
|
|
|
kind: 'read:account',
|
|
|
|
errors: {
|
|
noSuchClip: {
|
|
message: 'No such clip.',
|
|
code: 'NO_SUCH_CLIP',
|
|
id: 'c3c5fe33-d62c-44d2-9ea5-d997703f5c20',
|
|
},
|
|
},
|
|
|
|
res: {
|
|
type: 'object',
|
|
optional: false, nullable: false,
|
|
ref: 'Clip',
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
clipId: { type: 'string', format: 'misskey:id' },
|
|
},
|
|
required: ['clipId'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, async (ps, me) => {
|
|
// Fetch the clip
|
|
const clip = await Clips.findOneBy({
|
|
id: ps.clipId,
|
|
});
|
|
|
|
if (clip == null) {
|
|
throw new ApiError(meta.errors.noSuchClip);
|
|
}
|
|
|
|
if (!clip.isPublic && (me == null || (clip.userId !== me.id))) {
|
|
throw new ApiError(meta.errors.noSuchClip);
|
|
}
|
|
|
|
return await Clips.pack(clip);
|
|
});
|