2022-09-17 21:27:08 +03:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2022-09-20 23:33:11 +03:00
|
|
|
import type { PagesRepository, PageLikesRepository } from '@/models/index.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-02-27 04:07:39 +02:00
|
|
|
import { ApiError } from '../../error.js';
|
2019-05-17 13:56:47 +03:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['pages'],
|
|
|
|
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: true,
|
2019-05-17 13:56:47 +03:00
|
|
|
|
|
|
|
kind: 'write:page-likes',
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchPage: {
|
|
|
|
message: 'No such page.',
|
|
|
|
code: 'NO_SUCH_PAGE',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: 'a0d41e20-1993-40bd-890e-f6e560ae648e',
|
2019-05-17 13:56:47 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
notLiked: {
|
|
|
|
message: 'You have not liked that page.',
|
|
|
|
code: 'NOT_LIKED',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: 'f5e586b0-ce93-4050-b0e3-7f31af5259ee',
|
2019-05-17 13:56:47 +03:00
|
|
|
},
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2019-05-17 13:56:47 +03:00
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
pageId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['pageId'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 21:27:08 +03:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.pagesRepository)
|
|
|
|
private pagesRepository: PagesRepository,
|
2019-05-17 13:56:47 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
@Inject(DI.pageLikesRepository)
|
|
|
|
private pageLikesRepository: PageLikesRepository,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const page = await this.pagesRepository.findOneBy({ id: ps.pageId });
|
|
|
|
if (page == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchPage);
|
|
|
|
}
|
2019-05-17 13:56:47 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
const exist = await this.pageLikesRepository.findOneBy({
|
|
|
|
pageId: page.id,
|
|
|
|
userId: me.id,
|
|
|
|
});
|
2019-05-17 13:56:47 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (exist == null) {
|
|
|
|
throw new ApiError(meta.errors.notLiked);
|
|
|
|
}
|
2019-05-17 13:56:47 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
// Delete like
|
|
|
|
await this.pageLikesRepository.delete(exist.id);
|
|
|
|
|
|
|
|
this.pagesRepository.decrement({ id: page.id }, 'likedCount', 1);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|