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

65 lines
1.3 KiB
TypeScript
Raw Normal View History

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