2019-02-05 03:48:08 +01:00
|
|
|
import $ from 'cafy';
|
2021-08-19 14:55:45 +02:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
import define from '../../define';
|
|
|
|
import { ApiError } from '../../error';
|
2021-11-07 10:04:32 +01:00
|
|
|
import { Users, Followings, UserProfiles } from '@/models/index';
|
2021-08-19 14:55:45 +02:00
|
|
|
import { makePaginationQuery } from '../../common/make-pagination-query';
|
|
|
|
import { toPunyNullable } from '@/misc/convert-host';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
export const meta = {
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['users'],
|
|
|
|
|
2020-02-15 13:33:32 +01:00
|
|
|
requireCredential: false as const,
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
params: {
|
|
|
|
userId: {
|
2019-02-16 02:58:44 +01:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2019-02-16 02:58:44 +01:00
|
|
|
username: {
|
|
|
|
validator: $.optional.str
|
|
|
|
},
|
|
|
|
|
|
|
|
host: {
|
|
|
|
validator: $.optional.nullable.str
|
|
|
|
},
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
sinceId: {
|
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
untilId: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
limit: {
|
|
|
|
validator: $.optional.num.range(1, 100),
|
|
|
|
default: 10
|
|
|
|
},
|
2019-02-22 03:46:58 +01:00
|
|
|
},
|
|
|
|
|
2019-02-24 11:42:26 +01:00
|
|
|
res: {
|
2019-06-27 11:04:09 +02:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-07 14:50:36 +02:00
|
|
|
items: {
|
2019-06-27 11:04:09 +02:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 15:35:26 +02:00
|
|
|
ref: 'Following',
|
|
|
|
}
|
2019-02-24 11:42:26 +01:00
|
|
|
},
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
errors: {
|
|
|
|
noSuchUser: {
|
|
|
|
message: 'No such user.',
|
|
|
|
code: 'NO_SUCH_USER',
|
|
|
|
id: '63e4aba4-4156-4e53-be25-c9559e42d71b'
|
2021-11-07 10:04:32 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
forbidden: {
|
|
|
|
message: 'Forbidden.',
|
|
|
|
code: 'FORBIDDEN',
|
|
|
|
id: 'f6cdb0df-c19f-ec5c-7dbb-0ba84a1f92ba'
|
|
|
|
},
|
2018-11-01 19:32:24 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
export default define(meta, async (ps, me) => {
|
2019-04-07 14:50:36 +02:00
|
|
|
const user = await Users.findOne(ps.userId != null
|
|
|
|
? { id: ps.userId }
|
2019-04-13 09:54:21 +02:00
|
|
|
: { usernameLower: ps.username!.toLowerCase(), host: toPunyNullable(ps.host) });
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
if (user == null) {
|
2019-02-22 03:46:58 +01:00
|
|
|
throw new ApiError(meta.errors.noSuchUser);
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
2021-11-07 10:04:32 +01:00
|
|
|
const profile = await UserProfiles.findOneOrFail(user.id);
|
|
|
|
|
|
|
|
if (profile.ffVisibility === 'private') {
|
|
|
|
if (me == null || (me.id !== user.id)) {
|
|
|
|
throw new ApiError(meta.errors.forbidden);
|
|
|
|
}
|
|
|
|
} else if (profile.ffVisibility === 'followers') {
|
|
|
|
if (me == null) {
|
|
|
|
throw new ApiError(meta.errors.forbidden);
|
|
|
|
} else if (me.id !== user.id) {
|
|
|
|
const following = await Followings.findOne({
|
|
|
|
followeeId: user.id,
|
|
|
|
followerId: me.id,
|
|
|
|
});
|
|
|
|
if (following == null) {
|
|
|
|
throw new ApiError(meta.errors.forbidden);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
const query = makePaginationQuery(Followings.createQueryBuilder('following'), ps.sinceId, ps.untilId)
|
2021-03-21 02:41:21 +01:00
|
|
|
.andWhere(`following.followerId = :userId`, { userId: user.id })
|
|
|
|
.innerJoinAndSelect('following.followee', 'followee');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
const followings = await query
|
2019-04-12 18:43:22 +02:00
|
|
|
.take(ps.limit!)
|
2019-04-07 14:50:36 +02:00
|
|
|
.getMany();
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
return await Followings.packMany(followings, me, { populateFollowee: true });
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|