hippofish/src/server/api/endpoints/users/lists/push.ts

99 lines
2.6 KiB
TypeScript
Raw Normal View History

2019-02-05 03:48:08 +01:00
import $ from 'cafy';
import ID, { transform } from '../../../../../misc/cafy-id';
2018-04-24 13:58:29 +02:00
import UserList from '../../../../../models/user-list';
2019-02-22 06:06:17 +01:00
import { pack as packUser, isRemoteUser, fetchProxyAccount } from '../../../../../models/user';
2019-02-05 06:14:23 +01:00
import { publishUserListStream } from '../../../../../services/stream';
import { renderActivity } from '../../../../../remote/activitypub/renderer';
2018-04-26 13:30:49 +02:00
import renderFollow from '../../../../../remote/activitypub/renderer/follow';
import { deliver } from '../../../../../queue';
2018-11-02 05:47:44 +01:00
import define from '../../../define';
import { ApiError } from '../../../error';
2019-02-22 06:02:56 +01:00
import { getUser } from '../../../common/getters';
2018-04-24 13:58:29 +02:00
2018-07-16 21:36:44 +02:00
export const meta = {
desc: {
2018-08-28 23:59:43 +02:00
'ja-JP': '指定したユーザーリストに指定したユーザーを追加します。',
'en-US': 'Add a user to a user list.'
2018-07-16 21:36:44 +02:00
},
tags: ['lists', 'users'],
2018-07-16 21:36:44 +02:00
requireCredential: true,
2018-11-01 19:32:24 +01:00
kind: 'account-write',
params: {
listId: {
validator: $.type(ID),
transform: transform,
},
userId: {
validator: $.type(ID),
transform: transform,
2018-11-03 14:49:36 +01:00
desc: {
'ja-JP': '対象のユーザーのID',
'en-US': 'Target user ID'
}
2018-11-01 19:32:24 +01:00
},
},
errors: {
noSuchList: {
message: 'No such list.',
code: 'NO_SUCH_LIST',
id: '2214501d-ac96-4049-b717-91e42272a711'
},
noSuchUser: {
message: 'No such user.',
code: 'NO_SUCH_USER',
id: 'a89abd3d-f0bc-4cce-beb1-2f446f4f1e6a'
},
alreadyAdded: {
message: 'That user has already been added to that list.',
code: 'ALREADY_ADDED',
id: '1de7c884-1595-49e9-857e-61f12f4d4fc5'
}
2018-11-01 19:32:24 +01:00
}
2018-07-16 21:36:44 +02:00
};
export default define(meta, async (ps, me) => {
2018-04-24 13:58:29 +02:00
// Fetch the list
const userList = await UserList.findOne({
2018-11-01 19:32:24 +01:00
_id: ps.listId,
2018-04-24 13:58:29 +02:00
userId: me._id,
});
if (userList == null) {
throw new ApiError(meta.errors.noSuchList);
2018-04-24 13:58:29 +02:00
}
// Fetch the user
2019-02-22 06:02:56 +01:00
const user = await getUser(ps.userId).catch(e => {
if (e.id === '15348ddd-432d-49c2-8a5a-8069753becff') throw new ApiError(meta.errors.noSuchUser);
throw e;
2018-04-24 13:58:29 +02:00
});
if (userList.userIds.map(id => id.toHexString()).includes(user._id.toHexString())) {
throw new ApiError(meta.errors.alreadyAdded);
2018-04-24 13:58:29 +02:00
}
// Push the user
await UserList.update({ _id: userList._id }, {
$push: {
userIds: user._id
}
});
2018-04-25 11:04:16 +02:00
publishUserListStream(userList._id, 'userAdded', await packUser(user));
2018-04-26 13:30:49 +02:00
// このインスタンス内にこのリモートユーザーをフォローしているユーザーがいなくても投稿を受け取るためにダミーのユーザーがフォローしたということにする
if (isRemoteUser(user)) {
const proxy = await fetchProxyAccount();
const content = renderActivity(renderFollow(proxy, user));
deliver(proxy, content, user.inbox);
2018-04-26 13:30:49 +02:00
}
});