mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 10:03:09 +02:00
63df2c851e
Co-authored-by: tamaina <tamaina@hotmail.co.jp>
55 lines
1.3 KiB
TypeScript
55 lines
1.3 KiB
TypeScript
import { Injectable } from '@nestjs/common';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import { UserEntityService } from '@/core/entities/UserEntityService.js';
|
|
import { NotePiningService } from '@/core/NotePiningService.js';
|
|
import { ApiError } from '../../error.js';
|
|
|
|
export const meta = {
|
|
tags: ['account', 'notes'],
|
|
|
|
requireCredential: true,
|
|
|
|
kind: 'write:account',
|
|
|
|
errors: {
|
|
noSuchNote: {
|
|
message: 'No such note.',
|
|
code: 'NO_SUCH_NOTE',
|
|
id: '454170ce-9d63-4a43-9da1-ea10afe81e21',
|
|
},
|
|
},
|
|
|
|
res: {
|
|
type: 'object',
|
|
optional: false, nullable: false,
|
|
ref: 'MeDetailed',
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
noteId: { type: 'string', format: 'misskey:id' },
|
|
},
|
|
required: ['noteId'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
@Injectable()
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
constructor(
|
|
private userEntityService: UserEntityService,
|
|
private notePiningService: NotePiningService,
|
|
) {
|
|
super(meta, paramDef, async (ps, me) => {
|
|
await this.notePiningService.removePinned(me, ps.noteId).catch(err => {
|
|
if (err.id === 'b302d4cf-c050-400a-bbb3-be208681f40c') throw new ApiError(meta.errors.noSuchNote);
|
|
throw err;
|
|
});
|
|
|
|
return await this.userEntityService.pack<true, true>(me.id, me, {
|
|
detail: true,
|
|
});
|
|
});
|
|
}
|
|
}
|