mirror of
https://github.com/paricafe/misskey.git
synced 2024-12-04 17:26:43 -06:00
d071d18dd7
* wip * wip * fix * clean up * Update tsconfig.json * Update activitypub.ts * 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.find({ 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');
|
|
});
|