2022-09-17 18:27:08 +00:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2022-09-20 20:33:11 +00:00
|
|
|
import type { NotesRepository, NoteThreadMutingsRepository, NoteFavoritesRepository } from '@/models/index.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2019-02-04 16:11:06 +00:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['notes'],
|
|
|
|
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: true,
|
2019-02-04 16:11:06 +00:00
|
|
|
|
2021-03-06 13:34:11 +00:00
|
|
|
res: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 13:34:11 +00:00
|
|
|
properties: {
|
|
|
|
isFavorited: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
2021-10-31 06:30:22 +00:00
|
|
|
isMutedThread: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-10-31 06:30:22 +00:00
|
|
|
},
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
|
|
|
},
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2019-02-04 16:11:06 +00:00
|
|
|
|
2022-02-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
noteId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['noteId'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 18:27:08 +00:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.notesRepository)
|
|
|
|
private notesRepository: NotesRepository,
|
2021-10-31 06:30:22 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
@Inject(DI.noteThreadMutingsRepository)
|
|
|
|
private noteThreadMutingsRepository: NoteThreadMutingsRepository,
|
|
|
|
|
|
|
|
@Inject(DI.noteFavoritesRepository)
|
|
|
|
private noteFavoritesRepository: NoteFavoritesRepository,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const note = await this.notesRepository.findOneByOrFail({ id: ps.noteId });
|
|
|
|
|
|
|
|
const [favorite, threadMuting] = await Promise.all([
|
|
|
|
this.noteFavoritesRepository.count({
|
|
|
|
where: {
|
|
|
|
userId: me.id,
|
|
|
|
noteId: note.id,
|
|
|
|
},
|
|
|
|
take: 1,
|
|
|
|
}),
|
|
|
|
this.noteThreadMutingsRepository.count({
|
|
|
|
where: {
|
|
|
|
userId: me.id,
|
|
|
|
threadId: note.threadId || note.id,
|
|
|
|
},
|
|
|
|
take: 1,
|
|
|
|
}),
|
|
|
|
]);
|
2019-02-04 16:11:06 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
return {
|
|
|
|
isFavorited: favorite !== 0,
|
|
|
|
isMutedThread: threadMuting !== 0,
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|