2019-05-17 13:56:47 +03:00
|
|
|
import $ from 'cafy';
|
2021-08-19 15:55:45 +03:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
import define from '../../define';
|
|
|
|
import { ApiError } from '../../error';
|
|
|
|
import { Pages, PageLikes } from '@/models/index';
|
|
|
|
import { genId } from '@/misc/gen-id';
|
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',
|
|
|
|
|
|
|
|
params: {
|
|
|
|
pageId: {
|
|
|
|
validator: $.type(ID),
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2019-05-17 13:56:47 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchPage: {
|
|
|
|
message: 'No such page.',
|
|
|
|
code: 'NO_SUCH_PAGE',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: 'cc98a8a2-0dc3-4123-b198-62c71df18ed3',
|
2019-05-17 13:56:47 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
yourPage: {
|
|
|
|
message: 'You cannot like your page.',
|
|
|
|
code: 'YOUR_PAGE',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: '28800466-e6db-40f2-8fae-bf9e82aa92b8',
|
2019-05-17 13:56:47 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
alreadyLiked: {
|
|
|
|
message: 'The page has already been liked.',
|
|
|
|
code: 'ALREADY_LIKED',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: 'cc98a8a2-0dc3-4123-b198-62c71df18ed3',
|
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-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2019-05-17 13:56:47 +03:00
|
|
|
export default define(meta, async (ps, user) => {
|
|
|
|
const page = await Pages.findOne(ps.pageId);
|
|
|
|
if (page == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchPage);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (page.userId === user.id) {
|
|
|
|
throw new ApiError(meta.errors.yourPage);
|
|
|
|
}
|
|
|
|
|
|
|
|
// if already liked
|
|
|
|
const exist = await PageLikes.findOne({
|
|
|
|
pageId: page.id,
|
2021-12-09 16:58:30 +02:00
|
|
|
userId: user.id,
|
2019-05-17 13:56:47 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
if (exist != null) {
|
|
|
|
throw new ApiError(meta.errors.alreadyLiked);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create like
|
2021-03-21 14:27:09 +02:00
|
|
|
await PageLikes.insert({
|
2019-05-17 13:56:47 +03:00
|
|
|
id: genId(),
|
|
|
|
createdAt: new Date(),
|
|
|
|
pageId: page.id,
|
2021-12-09 16:58:30 +02:00
|
|
|
userId: user.id,
|
2019-05-17 13:56:47 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
Pages.increment({ id: page.id }, 'likedCount', 1);
|
|
|
|
});
|