egirlskey/src/server/api/endpoints/following/create.ts

65 lines
1.3 KiB
TypeScript
Raw Normal View History

2018-07-07 10:19:00 +00:00
import $ from 'cafy'; import ID from '../../../../misc/cafy-id';
2018-07-16 19:36:44 +00:00
const ms = require('ms');
2018-06-18 00:54:53 +00:00
import User, { pack, ILocalUser } from '../../../../models/user';
2018-03-29 11:32:18 +00:00
import Following from '../../../../models/following';
2018-04-05 18:10:25 +00:00
import create from '../../../../services/following/create';
2016-12-28 22:49:51 +00:00
2018-07-16 19:36:44 +00:00
export const meta = {
desc: {
2018-08-28 21:59:43 +00:00
'ja-JP': '指定したユーザーをフォローします。',
'en-US': 'Follow a user.'
2018-07-16 19:36:44 +00:00
},
limit: {
duration: ms('1hour'),
max: 100
},
requireCredential: true,
kind: 'following-write'
};
2018-07-05 17:58:29 +00:00
export default (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
2016-12-28 22:49:51 +00:00
const follower = user;
2018-03-29 05:48:47 +00:00
// Get 'userId' parameter
2018-05-02 09:06:16 +00:00
const [userId, userIdErr] = $.type(ID).get(params.userId);
2018-03-29 05:48:47 +00:00
if (userIdErr) return rej('invalid userId param');
2017-01-17 20:26:29 +00:00
2016-12-28 22:49:51 +00:00
// 自分自身
if (user._id.equals(userId)) {
return rej('followee is yourself');
}
// Get followee
const followee = await User.findOne({
2017-03-03 10:33:14 +00:00
_id: userId
2017-02-22 04:08:33 +00:00
}, {
fields: {
data: false,
2018-04-07 20:02:50 +00:00
profile: false
2017-02-22 04:08:33 +00:00
}
2016-12-28 22:49:51 +00:00
});
if (followee === null) {
return rej('user not found');
}
2017-02-27 07:31:33 +00:00
// Check if already following
2016-12-28 22:49:51 +00:00
const exist = await Following.findOne({
2018-03-29 05:48:47 +00:00
followerId: follower._id,
followeeId: followee._id
2016-12-28 22:49:51 +00:00
});
if (exist !== null) {
return rej('already following');
}
// Create following
2018-09-12 16:50:21 +00:00
await create(follower, followee);
2018-04-01 10:43:26 +00:00
2016-12-28 22:49:51 +00:00
// Send response
2018-06-03 10:53:57 +00:00
res(await pack(followee._id, user));
2016-12-28 22:49:51 +00:00
});