2021-11-12 19:47:04 +09:00
|
|
|
import ms from 'ms';
|
2022-09-18 03:27:08 +09:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2022-09-21 05:33:11 +09:00
|
|
|
import type { UsersRepository, FollowingsRepository } from '@/models/index.js';
|
2022-09-18 03:27:08 +09:00
|
|
|
import { UserEntityService } from '@/core/entities/UserEntityService.js';
|
|
|
|
import { UserFollowingService } from '@/core/UserFollowingService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-02-27 11:07:39 +09:00
|
|
|
import { ApiError } from '../../error.js';
|
2022-09-24 07:15:16 +09:00
|
|
|
import { GetterService } from '@/server/api/GetterService.js';
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2018-07-17 04:36:44 +09:00
|
|
|
export const meta = {
|
2019-02-23 11:20:58 +09:00
|
|
|
tags: ['following', 'users'],
|
|
|
|
|
2018-07-17 04:36:44 +09:00
|
|
|
limit: {
|
|
|
|
duration: ms('1hour'),
|
2021-12-09 23:58:30 +09:00
|
|
|
max: 100,
|
2018-07-17 04:36:44 +09:00
|
|
|
},
|
|
|
|
|
2022-01-18 22:27:10 +09:00
|
|
|
requireCredential: true,
|
2018-07-17 04:36:44 +09:00
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
kind: 'write:following',
|
2018-10-22 05:16:27 +09:00
|
|
|
|
2019-02-22 11:46:58 +09:00
|
|
|
errors: {
|
|
|
|
noSuchUser: {
|
|
|
|
message: 'No such user.',
|
|
|
|
code: 'NO_SUCH_USER',
|
2021-12-09 23:58:30 +09:00
|
|
|
id: '5b12c78d-2b28-4dca-99d2-f56139b42ff8',
|
2019-02-22 11:46:58 +09:00
|
|
|
},
|
|
|
|
|
|
|
|
followeeIsYourself: {
|
|
|
|
message: 'Followee is yourself.',
|
|
|
|
code: 'FOLLOWEE_IS_YOURSELF',
|
2021-12-09 23:58:30 +09:00
|
|
|
id: 'd9e400b9-36b0-4808-b1d8-79e707f1296c',
|
2019-02-22 11:46:58 +09:00
|
|
|
},
|
|
|
|
|
|
|
|
notFollowing: {
|
|
|
|
message: 'You are not following that user.',
|
|
|
|
code: 'NOT_FOLLOWING',
|
2021-12-09 23:58:30 +09:00
|
|
|
id: '5dbf82f5-c92b-40b1-87d1-6c8c0741fd09',
|
2019-02-22 11:46:58 +09:00
|
|
|
},
|
2021-03-06 22:34:11 +09:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
ref: 'UserLite',
|
2021-12-09 23:58:30 +09:00
|
|
|
},
|
2022-01-18 22:27:10 +09:00
|
|
|
} as const;
|
2018-07-17 04:36:44 +09:00
|
|
|
|
2022-02-20 13:15:40 +09:00
|
|
|
export const paramDef = {
|
2022-02-19 14:05:32 +09:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
userId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['userId'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-03 02:12:50 +09:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-18 03:27:08 +09:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
private usersRepository: UsersRepository,
|
|
|
|
|
|
|
|
@Inject(DI.followingsRepository)
|
|
|
|
private followingsRepository: FollowingsRepository,
|
|
|
|
|
|
|
|
private userEntityService: UserEntityService,
|
|
|
|
private getterService: GetterService,
|
|
|
|
private userFollowingService: UserFollowingService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const follower = me;
|
|
|
|
|
|
|
|
// Check if the followee is yourself
|
|
|
|
if (me.id === ps.userId) {
|
|
|
|
throw new ApiError(meta.errors.followeeIsYourself);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get followee
|
|
|
|
const followee = await this.getterService.getUser(ps.userId).catch(err => {
|
|
|
|
if (err.id === '15348ddd-432d-49c2-8a5a-8069753becff') throw new ApiError(meta.errors.noSuchUser);
|
|
|
|
throw err;
|
|
|
|
});
|
|
|
|
|
|
|
|
// Check not following
|
|
|
|
const exist = await this.followingsRepository.findOneBy({
|
|
|
|
followerId: follower.id,
|
|
|
|
followeeId: followee.id,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (exist == null) {
|
|
|
|
throw new ApiError(meta.errors.notFollowing);
|
|
|
|
}
|
|
|
|
|
|
|
|
await this.userFollowingService.unfollow(follower, followee);
|
|
|
|
|
|
|
|
return await this.userEntityService.pack(followee.id, me);
|
|
|
|
});
|
2016-12-29 07:49:51 +09:00
|
|
|
}
|
2022-09-18 03:27:08 +09:00
|
|
|
}
|