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