2019-02-05 04:48:08 +02:00
|
|
|
import $ from 'cafy';
|
2021-08-19 15:55:45 +03:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
import define from '../../define';
|
|
|
|
import { ApiError } from '../../error';
|
|
|
|
import { getUser } from '../../common/getters';
|
|
|
|
import { genId } from '@/misc/gen-id';
|
|
|
|
import { Mutings, NoteWatchings } from '@/models/index';
|
|
|
|
import { Muting } from '@/models/entities/muting';
|
|
|
|
import { publishUserEvent } from '@/services/stream';
|
2017-12-21 23:03:54 +02:00
|
|
|
|
2018-07-16 22:36:44 +03:00
|
|
|
export const meta = {
|
2020-04-03 16:42:29 +03:00
|
|
|
tags: ['account'],
|
2019-02-23 04:20:58 +02:00
|
|
|
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: true,
|
2018-07-16 22:36:44 +03:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
kind: 'write:mutes',
|
2018-11-01 20:32:24 +02:00
|
|
|
|
|
|
|
params: {
|
|
|
|
userId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
},
|
2019-02-22 04:46:58 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchUser: {
|
|
|
|
message: 'No such user.',
|
|
|
|
code: 'NO_SUCH_USER',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: '6fef56f3-e765-4957-88e5-c6f65329b8a5',
|
2019-02-22 04:46:58 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
muteeIsYourself: {
|
|
|
|
message: 'Mutee is yourself.',
|
|
|
|
code: 'MUTEE_IS_YOURSELF',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: 'a4619cb2-5f23-484b-9301-94c903074e10',
|
2019-02-22 04:46:58 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
alreadyMuting: {
|
|
|
|
message: 'You are already muting that user.',
|
|
|
|
code: 'ALREADY_MUTING',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: '7e7359cb-160c-4956-b08f-4d1c653cd007',
|
2019-02-22 04:46:58 +02:00
|
|
|
},
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2018-07-16 22:36:44 +03:00
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
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
|
|
|
|
|
|
|
// 自分自身
|
2019-04-07 15:50:36 +03:00
|
|
|
if (user.id === 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
|
2019-02-22 07:02:56 +02:00
|
|
|
const mutee = await getUser(ps.userId).catch(e => {
|
|
|
|
if (e.id === '15348ddd-432d-49c2-8a5a-8069753becff') throw new ApiError(meta.errors.noSuchUser);
|
|
|
|
throw e;
|
2017-12-21 23:03:54 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
// Check if already muting
|
2019-04-07 15:50:36 +03:00
|
|
|
const exist = await Mutings.findOne({
|
|
|
|
muterId: muter.id,
|
2021-12-09 16:58:30 +02:00
|
|
|
muteeId: mutee.id,
|
2017-12-21 23:03:54 +02:00
|
|
|
});
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
if (exist != null) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new ApiError(meta.errors.alreadyMuting);
|
2017-12-21 23:03:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Create mute
|
2021-10-19 19:02:04 +03:00
|
|
|
await Mutings.insert({
|
2019-04-07 15:50:36 +03:00
|
|
|
id: genId(),
|
2018-03-29 08:48:47 +03:00
|
|
|
createdAt: new Date(),
|
2019-04-07 15:50:36 +03:00
|
|
|
muterId: muter.id,
|
|
|
|
muteeId: mutee.id,
|
|
|
|
} as Muting);
|
2017-12-21 23:03:54 +02:00
|
|
|
|
2021-03-21 08:14:03 +02:00
|
|
|
publishUserEvent(user.id, 'mute', mutee);
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
NoteWatchings.delete({
|
|
|
|
userId: muter.id,
|
2021-12-09 16:58:30 +02:00
|
|
|
noteUserId: mutee.id,
|
2019-04-07 15:50:36 +03:00
|
|
|
});
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|