2022-02-27 04:07:39 +02:00
|
|
|
import define from '../../define.js';
|
|
|
|
import { ApiError } from '../../error.js';
|
|
|
|
import { getUser } from '../../common/getters.js';
|
|
|
|
import { MessagingMessages, UserGroups, UserGroupJoinings, Users } from '@/models/index.js';
|
|
|
|
import { makePaginationQuery } from '../../common/make-pagination-query.js';
|
2019-05-18 14:36:33 +03:00
|
|
|
import { Brackets } from 'typeorm';
|
2022-02-27 04:07:39 +02:00
|
|
|
import { readUserMessagingMessage, readGroupMessagingMessage, deliverReadActivity } from '../../common/read-messaging-message.js';
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2018-07-16 22:36:44 +03:00
|
|
|
export const meta = {
|
2019-02-23 04:20:58 +02:00
|
|
|
tags: ['messaging'],
|
|
|
|
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: true,
|
2018-07-16 22:36:44 +03:00
|
|
|
|
2019-04-15 06:10:40 +03:00
|
|
|
kind: 'read:messaging',
|
2018-11-01 20:32:24 +02:00
|
|
|
|
2019-02-24 20:43:19 +02:00
|
|
|
res: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2019-02-24 20:43:19 +02:00
|
|
|
items: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2019-04-23 16:35:26 +03:00
|
|
|
ref: 'MessagingMessage',
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2019-02-24 20:43:19 +02:00
|
|
|
},
|
|
|
|
|
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: '11795c64-40ea-4198-b06e-3c873ed9039d',
|
2019-02-22 04:46:58 +02:00
|
|
|
},
|
2019-05-18 14:36:33 +03:00
|
|
|
|
|
|
|
noSuchGroup: {
|
|
|
|
message: 'No such group.',
|
|
|
|
code: 'NO_SUCH_GROUP',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: 'c4d9f88c-9270-4632-b032-6ed8cee36f7f',
|
2019-05-18 14:36:33 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
groupAccessDenied: {
|
|
|
|
message: 'You can not read messages of groups that you have not joined.',
|
|
|
|
code: 'GROUP_ACCESS_DENIED',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: 'a053a8dd-a491-4718-8f87-50775aad9284',
|
2019-05-18 14:36:33 +03:00
|
|
|
},
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2017-03-03 01:24:48 +02:00
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 },
|
|
|
|
sinceId: { type: 'string', format: 'misskey:id' },
|
|
|
|
untilId: { type: 'string', format: 'misskey:id' },
|
|
|
|
markAsRead: { type: 'boolean', default: true },
|
|
|
|
},
|
2022-04-02 09:04:36 +03:00
|
|
|
anyOf: [
|
|
|
|
{
|
|
|
|
properties: {
|
|
|
|
userId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['userId'],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
properties: {
|
|
|
|
groupId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['groupId'],
|
|
|
|
},
|
|
|
|
],
|
2022-02-19 07:05:32 +02:00
|
|
|
} 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, user) => {
|
2019-05-18 14:36:33 +03:00
|
|
|
if (ps.userId != null) {
|
|
|
|
// Fetch recipient (user)
|
|
|
|
const recipient = await getUser(ps.userId).catch(e => {
|
|
|
|
if (e.id === '15348ddd-432d-49c2-8a5a-8069753becff') throw new ApiError(meta.errors.noSuchUser);
|
|
|
|
throw e;
|
|
|
|
});
|
|
|
|
|
|
|
|
const query = makePaginationQuery(MessagingMessages.createQueryBuilder('message'), ps.sinceId, ps.untilId)
|
|
|
|
.andWhere(new Brackets(qb => { qb
|
|
|
|
.where(new Brackets(qb => { qb
|
|
|
|
.where('message.userId = :meId')
|
|
|
|
.andWhere('message.recipientId = :recipientId');
|
|
|
|
}))
|
|
|
|
.orWhere(new Brackets(qb => { qb
|
|
|
|
.where('message.userId = :recipientId')
|
|
|
|
.andWhere('message.recipientId = :meId');
|
|
|
|
}));
|
|
|
|
}))
|
|
|
|
.setParameter('meId', user.id)
|
|
|
|
.setParameter('recipientId', recipient.id);
|
|
|
|
|
2022-02-19 07:05:32 +02:00
|
|
|
const messages = await query.take(ps.limit).getMany();
|
2019-05-18 14:36:33 +03:00
|
|
|
|
|
|
|
// Mark all as read
|
|
|
|
if (ps.markAsRead) {
|
2019-05-19 17:42:18 +03:00
|
|
|
readUserMessagingMessage(user.id, recipient.id, messages.filter(m => m.recipientId === user.id).map(x => x.id));
|
2019-12-14 20:37:19 +02:00
|
|
|
|
|
|
|
// リモートユーザーとのメッセージだったら既読配信
|
|
|
|
if (Users.isLocalUser(user) && Users.isRemoteUser(recipient)) {
|
|
|
|
deliverReadActivity(user, recipient, messages);
|
|
|
|
}
|
2019-05-18 14:36:33 +03:00
|
|
|
}
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2019-05-18 14:36:33 +03:00
|
|
|
return await Promise.all(messages.map(message => MessagingMessages.pack(message, user, {
|
2021-12-09 16:58:30 +02:00
|
|
|
populateRecipient: false,
|
2019-05-18 14:36:33 +03:00
|
|
|
})));
|
|
|
|
} else if (ps.groupId != null) {
|
|
|
|
// Fetch recipient (group)
|
2022-03-26 08:34:00 +02:00
|
|
|
const recipientGroup = await UserGroups.findOneBy({ id: ps.groupId });
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2019-05-18 14:36:33 +03:00
|
|
|
if (recipientGroup == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchGroup);
|
|
|
|
}
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2019-05-18 14:36:33 +03:00
|
|
|
// check joined
|
2022-03-26 08:34:00 +02:00
|
|
|
const joining = await UserGroupJoinings.findOneBy({
|
2019-05-18 14:36:33 +03:00
|
|
|
userId: user.id,
|
2021-12-09 16:58:30 +02:00
|
|
|
userGroupId: recipientGroup.id,
|
2019-05-18 14:36:33 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
if (joining == null) {
|
|
|
|
throw new ApiError(meta.errors.groupAccessDenied);
|
|
|
|
}
|
2019-02-22 04:46:58 +02:00
|
|
|
|
2019-05-18 14:36:33 +03:00
|
|
|
const query = makePaginationQuery(MessagingMessages.createQueryBuilder('message'), ps.sinceId, ps.untilId)
|
|
|
|
.andWhere(`message.groupId = :groupId`, { groupId: recipientGroup.id });
|
|
|
|
|
2022-02-19 07:05:32 +02:00
|
|
|
const messages = await query.take(ps.limit).getMany();
|
2019-05-18 14:36:33 +03:00
|
|
|
|
|
|
|
// Mark all as read
|
|
|
|
if (ps.markAsRead) {
|
|
|
|
readGroupMessagingMessage(user.id, recipientGroup.id, messages.map(x => x.id));
|
|
|
|
}
|
|
|
|
|
|
|
|
return await Promise.all(messages.map(message => MessagingMessages.pack(message, user, {
|
2021-12-09 16:58:30 +02:00
|
|
|
populateGroup: false,
|
2019-05-18 14:36:33 +03:00
|
|
|
})));
|
|
|
|
}
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|