2019-02-05 04:48:08 +02:00
|
|
|
import $ from 'cafy';
|
2021-03-23 10:43:07 +02:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
2019-02-01 17:16:27 +02:00
|
|
|
import * as ms from 'ms';
|
2018-10-29 13:32:42 +02:00
|
|
|
import deleteBlocking from '../../../../services/blocking/delete';
|
2018-11-02 06:47:44 +02:00
|
|
|
import define from '../../define';
|
2019-02-22 04:46:58 +02:00
|
|
|
import { ApiError } from '../../error';
|
2019-02-22 07:02:56 +02:00
|
|
|
import { getUser } from '../../common/getters';
|
2019-04-15 12:08:57 +03:00
|
|
|
import { Blockings, Users } from '../../../../models';
|
2018-10-29 13:32:42 +02:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '指定したユーザーのブロックを解除します。',
|
|
|
|
'en-US': 'Unblock a user.'
|
|
|
|
},
|
|
|
|
|
2020-04-03 16:42:29 +03:00
|
|
|
tags: ['account'],
|
2019-02-23 04:20:58 +02:00
|
|
|
|
2018-10-29 13:32:42 +02:00
|
|
|
limit: {
|
|
|
|
duration: ms('1hour'),
|
|
|
|
max: 100
|
|
|
|
},
|
|
|
|
|
2020-02-15 14:33:32 +02:00
|
|
|
requireCredential: true as const,
|
2018-10-29 13:32:42 +02:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
kind: 'write:blocks',
|
2018-10-29 13:32:42 +02:00
|
|
|
|
|
|
|
params: {
|
2018-11-01 20:32:24 +02:00
|
|
|
userId: {
|
|
|
|
validator: $.type(ID),
|
2018-10-29 13:32:42 +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: '8621d8bf-c358-4303-a066-5ea78610eb3f'
|
|
|
|
},
|
|
|
|
|
|
|
|
blockeeIsYourself: {
|
|
|
|
message: 'Blockee is yourself.',
|
|
|
|
code: 'BLOCKEE_IS_YOURSELF',
|
|
|
|
id: '06f6fac6-524b-473c-a354-e97a40ae6eac'
|
|
|
|
},
|
|
|
|
|
|
|
|
notBlocking: {
|
|
|
|
message: 'You are not blocking that user.',
|
|
|
|
code: 'NOT_BLOCKING',
|
|
|
|
id: '291b2efa-60c6-45c0-9f6a-045c8f9b02cd'
|
|
|
|
},
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
properties: {
|
|
|
|
id: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
format: 'id',
|
|
|
|
description: 'The unique identifier for this blocking.',
|
|
|
|
example: 'xxxxxxxxxx',
|
|
|
|
},
|
|
|
|
name: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: true as const
|
|
|
|
},
|
|
|
|
username: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const
|
|
|
|
},
|
|
|
|
host: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: true as const
|
|
|
|
},
|
|
|
|
avatarUrl: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
format: 'url'
|
|
|
|
},
|
|
|
|
avatarBlurhash: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: true as const
|
|
|
|
},
|
|
|
|
avatarColor: {
|
|
|
|
type: 'any' as const,
|
|
|
|
optional: false as const, nullable: true as const
|
|
|
|
},
|
|
|
|
emojis: {
|
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
items: {
|
|
|
|
type: 'object' as const,
|
|
|
|
nullable: false as const, optional: false as const,
|
|
|
|
properties: {
|
|
|
|
name: {
|
|
|
|
type: 'string' as const,
|
|
|
|
nullable: false as const, optional: false as const
|
|
|
|
},
|
|
|
|
host: {
|
|
|
|
type: 'string' as const,
|
|
|
|
nullable: true as const, optional: false as const
|
|
|
|
},
|
|
|
|
url: {
|
|
|
|
type: 'string' as const,
|
|
|
|
nullable: false as const, optional: false as const,
|
|
|
|
format: 'url'
|
|
|
|
},
|
|
|
|
aliases: {
|
|
|
|
type: 'array' as const,
|
|
|
|
nullable: false as const, optional: false as const,
|
|
|
|
items: {
|
|
|
|
type: 'string' as const,
|
|
|
|
nullable: false as const, optional: false as const
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-10-29 13:32:42 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
export default define(meta, async (ps, user) => {
|
2018-10-29 13:32:42 +02:00
|
|
|
const blocker = user;
|
|
|
|
|
|
|
|
// Check if the blockee is yourself
|
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.blockeeIsYourself);
|
2018-10-29 13:32:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get blockee
|
2019-02-22 07:02:56 +02:00
|
|
|
const blockee = await getUser(ps.userId).catch(e => {
|
|
|
|
if (e.id === '15348ddd-432d-49c2-8a5a-8069753becff') throw new ApiError(meta.errors.noSuchUser);
|
|
|
|
throw e;
|
2018-10-29 13:32:42 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
// Check not blocking
|
2019-04-07 15:50:36 +03:00
|
|
|
const exist = await Blockings.findOne({
|
|
|
|
blockerId: blocker.id,
|
|
|
|
blockeeId: blockee.id
|
2018-10-29 13:32:42 +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.notBlocking);
|
2018-10-29 13:32:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Delete blocking
|
|
|
|
await deleteBlocking(blocker, blockee);
|
|
|
|
|
2020-10-31 03:19:10 +02:00
|
|
|
return await Users.pack(blockee.id, user, {
|
|
|
|
detail: true
|
|
|
|
});
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|