jormungandr-bite/src/server/api/endpoints/following/create.ts

65 lines
1.3 KiB
TypeScript
Raw Normal View History

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