Suppress comment notifications when viewing document (#4987)

* Updating views from collaboration server

* refactor

* Suppress comment notifications based on views

* test
This commit is contained in:
Tom Moor
2023-03-05 21:33:46 -05:00
committed by GitHub
parent f9709897fe
commit 591a87b728
7 changed files with 138 additions and 27 deletions

View File

@@ -1,5 +1,5 @@
import { subMilliseconds } from "date-fns";
import { Op } from "sequelize";
import { FindOrCreateOptions, Op } from "sequelize";
import {
BelongsTo,
Column,
@@ -52,18 +52,21 @@ class View extends IdModel {
@Column(DataType.UUID)
documentId: string;
static async incrementOrCreate(where: {
userId?: string;
documentId?: string;
collectionId?: string;
}) {
static async incrementOrCreate(
where: {
userId: string;
documentId: string;
},
options?: FindOrCreateOptions
) {
const [model, created] = await this.findOrCreate({
...options,
where,
});
if (!created) {
model.count += 1;
model.save();
model.save(options);
}
return model;
@@ -104,20 +107,21 @@ class View extends IdModel {
}
static async touch(documentId: string, userId: string, isEditing: boolean) {
const [view] = await this.findOrCreate({
const values: Partial<View> = {
updatedAt: new Date(),
};
if (isEditing) {
values.lastEditingAt = new Date();
}
await this.update(values, {
where: {
userId,
documentId,
},
returning: false,
});
if (isEditing) {
const lastEditingAt = new Date();
view.lastEditingAt = lastEditingAt;
await view.save();
}
return view;
}
}

View File

@@ -1,11 +1,13 @@
import { uniqBy } from "lodash";
import { Op } from "sequelize";
import Logger from "@server/logging/Logger";
import {
Document,
Collection,
NotificationSetting,
Subscription,
Comment,
View,
} from "@server/models";
export default class NotificationHelper {
@@ -49,9 +51,9 @@ export default class NotificationHelper {
comment: Comment,
actorId: string
): Promise<NotificationSetting[]> => {
const recipients = await this.getDocumentNotificationRecipients(
let recipients = await this.getDocumentNotificationRecipients(
document,
"comments.create",
"documents.update",
actorId,
!comment.parentCommentId
);
@@ -68,10 +70,35 @@ export default class NotificationHelper {
});
const userIdsInThread = contextComments.map((c) => c.createdById);
return recipients.filter((r) => userIdsInThread.includes(r.userId));
recipients = recipients.filter((r) => userIdsInThread.includes(r.userId));
}
return recipients;
const filtered: NotificationSetting[] = [];
for (const recipient of recipients) {
// If this recipient has viewed the document since the comment was made
// then we can avoid sending them a useless notification, yay.
const view = await View.findOne({
where: {
userId: recipient.userId,
documentId: document.id,
updatedAt: {
[Op.gt]: comment.createdAt,
},
},
});
if (view) {
Logger.info(
"processor",
`suppressing notification to ${recipient.userId} because doc viewed`
);
} else {
filtered.push(recipient);
}
}
return filtered;
};
/**
@@ -128,7 +155,7 @@ export default class NotificationHelper {
const collectionIds = await recipient.user.collectionIds();
// Check the recipient has access to the collection this document is in. Just
// because they are subscribed doesn't meant they still have access to read
// because they are subscribed doesn't meant they "still have access to read
// the document.
if (
recipient.user.email &&