mirror of
https://github.com/paricafe/misskey.git
synced 2024-12-03 06:26:44 -06:00
1c67c26bd8
* wip * wip * wip * Update following.ts * wip * wip * wip * Update resolve-user.ts * maxQueryExecutionTime * wip * wip
41 lines
1.1 KiB
TypeScript
41 lines
1.1 KiB
TypeScript
import { publishMainStream } from '@/services/stream.js';
|
|
import define from '../../define.js';
|
|
import { MessagingMessages, UserGroupJoinings } from '@/models/index.js';
|
|
|
|
export const meta = {
|
|
tags: ['account', 'messaging'],
|
|
|
|
requireCredential: true,
|
|
|
|
kind: 'write:account',
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {},
|
|
required: [],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, async (ps, user) => {
|
|
// Update documents
|
|
await MessagingMessages.update({
|
|
recipientId: user.id,
|
|
isRead: false,
|
|
}, {
|
|
isRead: true,
|
|
});
|
|
|
|
const joinings = await UserGroupJoinings.findBy({ userId: user.id });
|
|
|
|
await Promise.all(joinings.map(j => MessagingMessages.createQueryBuilder().update()
|
|
.set({
|
|
reads: (() => `array_append("reads", '${user.id}')`) as any,
|
|
})
|
|
.where(`groupId = :groupId`, { groupId: j.userGroupId })
|
|
.andWhere('userId != :userId', { userId: user.id })
|
|
.andWhere('NOT (:userId = ANY(reads))', { userId: user.id })
|
|
.execute()));
|
|
|
|
publishMainStream(user.id, 'readAllMessagingMessages');
|
|
});
|