2019-02-05 04:48:08 +02:00
|
|
|
import $ from 'cafy';
|
|
|
|
import ID, { transform } from '../../../../misc/cafy-id';
|
2018-11-02 06:47:44 +02:00
|
|
|
import User from '../../../../models/user';
|
2018-03-29 14:32:18 +03:00
|
|
|
import Mute from '../../../../models/mute';
|
2018-11-02 06:47:44 +02:00
|
|
|
import define from '../../define';
|
2019-02-22 04:46:58 +02:00
|
|
|
import { ApiError } from '../../error';
|
2017-12-21 23:03:54 +02:00
|
|
|
|
2018-07-16 22:36:44 +03:00
|
|
|
export const meta = {
|
|
|
|
desc: {
|
2018-08-29 00:59:43 +03:00
|
|
|
'ja-JP': 'ユーザーのミュートを解除します。',
|
|
|
|
'en-US': 'Unmute a user'
|
2018-07-16 22:36:44 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
requireCredential: true,
|
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
kind: 'account/write',
|
|
|
|
|
|
|
|
params: {
|
|
|
|
userId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
transform: transform,
|
2018-11-03 15:49:36 +02:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '対象のユーザーのID',
|
|
|
|
'en-US': 'Target user ID'
|
|
|
|
}
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2019-02-22 04:46:58 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchUser: {
|
|
|
|
message: 'No such user.',
|
|
|
|
code: 'NO_SUCH_USER',
|
|
|
|
id: 'b851d00b-8ab1-4a56-8b1b-e24187cb48ef'
|
|
|
|
},
|
|
|
|
|
|
|
|
muteeIsYourself: {
|
|
|
|
message: 'Mutee is yourself.',
|
|
|
|
code: 'MUTEE_IS_YOURSELF',
|
|
|
|
id: 'f428b029-6b39-4d48-a1d2-cc1ae6dd5cf9'
|
|
|
|
},
|
|
|
|
|
|
|
|
notMuting: {
|
|
|
|
message: 'You are not muting that user.',
|
|
|
|
code: 'NOT_MUTING',
|
|
|
|
id: '5467d020-daa9-4553-81e1-135c0c35a96d'
|
|
|
|
},
|
2018-11-01 20:32:24 +02:00
|
|
|
}
|
2018-07-16 22:36:44 +03:00
|
|
|
};
|
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
export default define(meta, async (ps, user) => {
|
2018-11-01 20:32:24 +02:00
|
|
|
const muter = user;
|
2017-12-21 23:03:54 +02:00
|
|
|
|
|
|
|
// Check if the mutee is yourself
|
2018-11-01 20:32:24 +02:00
|
|
|
if (user._id.equals(ps.userId)) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new ApiError(meta.errors.muteeIsYourself);
|
2017-12-21 23:03:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get mutee
|
|
|
|
const mutee = await User.findOne({
|
2018-11-01 20:32:24 +02:00
|
|
|
_id: ps.userId
|
2017-12-21 23:03:54 +02:00
|
|
|
}, {
|
|
|
|
fields: {
|
|
|
|
data: false,
|
2018-04-17 08:52:28 +03:00
|
|
|
profile: false
|
2017-12-21 23:03:54 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (mutee === null) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new ApiError(meta.errors.noSuchUser);
|
2017-12-21 23:03:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check not muting
|
|
|
|
const exist = await Mute.findOne({
|
2018-03-29 08:48:47 +03:00
|
|
|
muterId: muter._id,
|
2018-04-17 08:52:28 +03:00
|
|
|
muteeId: mutee._id
|
2017-12-21 23:03:54 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
if (exist === null) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new ApiError(meta.errors.notMuting);
|
2017-12-21 23:03:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Delete mute
|
2018-04-17 08:52:28 +03:00
|
|
|
await Mute.remove({
|
2017-12-21 23:03:54 +02:00
|
|
|
_id: exist._id
|
|
|
|
});
|
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
return;
|
|
|
|
});
|