2021-08-19 07:55:45 -05:00
|
|
|
import define from '../../define';
|
|
|
|
import { ApiError } from '../../error';
|
2021-11-07 03:04:32 -06:00
|
|
|
import { Users, Followings, UserProfiles } from '@/models/index';
|
2021-08-19 07:55:45 -05:00
|
|
|
import { makePaginationQuery } from '../../common/make-pagination-query';
|
|
|
|
import { toPunyNullable } from '@/misc/convert-host';
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2018-11-01 13:32:24 -05:00
|
|
|
export const meta = {
|
2019-02-22 20:20:58 -06:00
|
|
|
tags: ['users'],
|
|
|
|
|
2022-01-18 07:27:10 -06:00
|
|
|
requireCredential: false,
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2019-02-24 04:42:26 -06:00
|
|
|
res: {
|
2022-01-18 07:27:10 -06:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2019-04-07 07:50:36 -05:00
|
|
|
items: {
|
2022-01-18 07:27:10 -06:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2019-04-23 08:35:26 -05:00
|
|
|
ref: 'Following',
|
2021-12-09 08:58:30 -06:00
|
|
|
},
|
2019-02-24 04:42:26 -06:00
|
|
|
},
|
|
|
|
|
2019-02-21 20:46:58 -06:00
|
|
|
errors: {
|
|
|
|
noSuchUser: {
|
|
|
|
message: 'No such user.',
|
|
|
|
code: 'NO_SUCH_USER',
|
2021-12-09 08:58:30 -06:00
|
|
|
id: '27fa5435-88ab-43de-9360-387de88727cd',
|
2021-11-07 03:04:32 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
forbidden: {
|
|
|
|
message: 'Forbidden.',
|
|
|
|
code: 'FORBIDDEN',
|
2021-12-09 08:58:30 -06:00
|
|
|
id: '3c6a84db-d619-26af-ca14-06232a21df8a',
|
2021-11-07 03:04:32 -06:00
|
|
|
},
|
2021-12-09 08:58:30 -06:00
|
|
|
},
|
2022-01-18 07:27:10 -06:00
|
|
|
} as const;
|
2018-11-01 13:32:24 -05:00
|
|
|
|
2022-02-19 22:15:40 -06:00
|
|
|
export const paramDef = {
|
2022-02-18 23:05:32 -06:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
userId: { type: 'string', format: 'misskey:id' },
|
|
|
|
username: { type: 'string' },
|
|
|
|
host: { type: 'string', nullable: true },
|
|
|
|
sinceId: { type: 'string', format: 'misskey:id' },
|
|
|
|
untilId: { type: 'string', format: 'misskey:id' },
|
|
|
|
limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 },
|
|
|
|
},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 11:12:50 -06:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-18 23:05:32 -06:00
|
|
|
export default define(meta, paramDef, async (ps, me) => {
|
2019-04-07 07:50:36 -05:00
|
|
|
const user = await Users.findOne(ps.userId != null
|
|
|
|
? { id: ps.userId }
|
2019-04-13 02:54:21 -05:00
|
|
|
: { usernameLower: ps.username!.toLowerCase(), host: toPunyNullable(ps.host) });
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
if (user == null) {
|
2019-02-21 20:46:58 -06:00
|
|
|
throw new ApiError(meta.errors.noSuchUser);
|
2016-12-28 16:49:51 -06:00
|
|
|
}
|
|
|
|
|
2021-11-07 03:04:32 -06: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 07:50:36 -05:00
|
|
|
const query = makePaginationQuery(Followings.createQueryBuilder('following'), ps.sinceId, ps.untilId)
|
2021-03-20 20:41:21 -05:00
|
|
|
.andWhere(`following.followeeId = :userId`, { userId: user.id })
|
|
|
|
.innerJoinAndSelect('following.follower', 'follower');
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
const followings = await query
|
2022-02-18 23:05:32 -06:00
|
|
|
.take(ps.limit)
|
2019-04-07 07:50:36 -05:00
|
|
|
.getMany();
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
return await Followings.packMany(followings, me, { populateFollower: true });
|
2019-02-21 20:46:58 -06:00
|
|
|
});
|