2022-02-26 20:07:39 -06:00
|
|
|
import { publishMainStream } from '@/services/stream.js';
|
|
|
|
import define from '../../define.js';
|
|
|
|
import { MessagingMessages, UserGroupJoinings } from '@/models/index.js';
|
2018-12-27 14:06:25 -06:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-22 20:20:58 -06:00
|
|
|
tags: ['account', 'messaging'],
|
|
|
|
|
2022-01-18 07:27:10 -06:00
|
|
|
requireCredential: true,
|
2018-12-27 14:06:25 -06:00
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
kind: 'write:account',
|
2022-02-18 23:05:32 -06:00
|
|
|
} as const;
|
2018-12-27 14:06:25 -06:00
|
|
|
|
2022-02-19 22:15:40 -06:00
|
|
|
export const paramDef = {
|
2022-02-18 23:05:32 -06:00
|
|
|
type: 'object',
|
|
|
|
properties: {},
|
|
|
|
required: [],
|
2022-01-18 07:27:10 -06:00
|
|
|
} as const;
|
2018-12-27 14:06:25 -06:00
|
|
|
|
2022-01-02 11:12:50 -06:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-18 23:05:32 -06:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2018-12-27 14:06:25 -06:00
|
|
|
// Update documents
|
2019-04-07 07:50:36 -05:00
|
|
|
await MessagingMessages.update({
|
|
|
|
recipientId: user.id,
|
2021-12-09 08:58:30 -06:00
|
|
|
isRead: false,
|
2018-12-27 14:06:25 -06:00
|
|
|
}, {
|
2021-12-09 08:58:30 -06:00
|
|
|
isRead: true,
|
2018-12-27 14:06:25 -06:00
|
|
|
});
|
|
|
|
|
2020-07-03 20:45:36 -05:00
|
|
|
const joinings = await UserGroupJoinings.find({ userId: user.id });
|
|
|
|
|
|
|
|
await Promise.all(joinings.map(j => MessagingMessages.createQueryBuilder().update()
|
|
|
|
.set({
|
2021-12-09 08:58:30 -06:00
|
|
|
reads: (() => `array_append("reads", '${user.id}')`) as any,
|
2020-07-03 20:45:36 -05:00
|
|
|
})
|
|
|
|
.where(`groupId = :groupId`, { groupId: j.userGroupId })
|
|
|
|
.andWhere('userId != :userId', { userId: user.id })
|
|
|
|
.andWhere('NOT (:userId = ANY(reads))', { userId: user.id })
|
|
|
|
.execute()));
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
publishMainStream(user.id, 'readAllMessagingMessages');
|
2019-02-21 20:46:58 -06:00
|
|
|
});
|