2022-02-27 04:07:39 +02:00
|
|
|
import { Users } from '@/models/index.js';
|
2022-06-14 12:01:23 +03:00
|
|
|
import define from '../../define.js';
|
2018-10-31 17:11:21 +02:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 04:20:58 +02:00
|
|
|
tags: ['users'],
|
|
|
|
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: true,
|
2018-10-31 17:11:52 +02:00
|
|
|
|
2022-06-10 08:25:20 +03:00
|
|
|
description: 'Show the different kinds of relations between the authenticated user and the specified user(s).',
|
|
|
|
|
2021-03-06 15:34:11 +02:00
|
|
|
res: {
|
2022-01-18 15:27:10 +02:00
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
oneOf: [
|
|
|
|
{
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'object',
|
2021-03-06 15:34:11 +02:00
|
|
|
properties: {
|
|
|
|
id: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 16:58:30 +02:00
|
|
|
format: 'id',
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
isFollowing: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
hasPendingFollowRequestFromYou: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
hasPendingFollowRequestToYou: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
isFollowed: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
isBlocking: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
isBlocked: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
isMuted: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
|
|
|
},
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
{
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'array',
|
2021-03-06 15:34:11 +02:00
|
|
|
items: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
properties: {
|
|
|
|
id: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 16:58:30 +02:00
|
|
|
format: 'id',
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
isFollowing: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
hasPendingFollowRequestFromYou: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
hasPendingFollowRequestToYou: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
isFollowed: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
isBlocking: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
isBlocked: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
isMuted: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2018-10-31 17:11:21 +02:00
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
userId: {
|
|
|
|
anyOf: [
|
|
|
|
{ type: 'string', format: 'misskey:id' },
|
|
|
|
{
|
|
|
|
type: 'array',
|
|
|
|
items: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
required: ['userId'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 07:05:32 +02:00
|
|
|
export default define(meta, paramDef, async (ps, me) => {
|
2018-10-31 17:11:21 +02:00
|
|
|
const ids = Array.isArray(ps.userId) ? ps.userId : [ps.userId];
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
const relations = await Promise.all(ids.map(id => Users.getRelation(me.id, id)));
|
2018-10-31 17:11:21 +02:00
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
return Array.isArray(ps.userId) ? relations : relations[0];
|
|
|
|
});
|