* Add `emails.export_completed` notification to settings menu Signed-off-by: AKP <tom@tdpain.net> * Don't send email when export_completed notifications are disabled Signed-off-by: AKP <tom@tdpain.net> * Automatically subscribe new users to `export_completed` notifications Signed-off-by: AKP <tom@tdpain.net> * Alter secondary text on export page to mention optional notifications Signed-off-by: AKP <tom@tdpain.net> * Alter toast text on collection export for optional notifications Signed-off-by: AKP <tom@tdpain.net> * Only subscribe new admins to export notifs Signed-off-by: AKP <tom@tdpain.net> * Move `export_completed` notification decision into `beforeSend` Signed-off-by: AKP <tom@tdpain.net> * Update server/emails/templates/ExportFailureEmail.tsx Co-authored-by: Tom Moor <tom.moor@gmail.com> * Update server/emails/templates/ExportSuccessEmail.tsx Co-authored-by: Tom Moor <tom.moor@gmail.com> Signed-off-by: AKP <tom@tdpain.net> Co-authored-by: Tom Moor <tom.moor@gmail.com>
80 lines
1.4 KiB
TypeScript
80 lines
1.4 KiB
TypeScript
import crypto from "crypto";
|
|
import {
|
|
Table,
|
|
ForeignKey,
|
|
Model,
|
|
Column,
|
|
PrimaryKey,
|
|
IsUUID,
|
|
CreatedAt,
|
|
BelongsTo,
|
|
IsIn,
|
|
Default,
|
|
DataType,
|
|
} from "sequelize-typescript";
|
|
import env from "@server/env";
|
|
import Team from "./Team";
|
|
import User from "./User";
|
|
import Fix from "./decorators/Fix";
|
|
|
|
@Table({
|
|
tableName: "notification_settings",
|
|
modelName: "notification_setting",
|
|
updatedAt: false,
|
|
})
|
|
@Fix
|
|
class NotificationSetting extends Model {
|
|
@IsUUID(4)
|
|
@PrimaryKey
|
|
@Default(DataType.UUIDV4)
|
|
@Column
|
|
id: string;
|
|
|
|
@CreatedAt
|
|
createdAt: Date;
|
|
|
|
@IsIn([
|
|
[
|
|
"documents.publish",
|
|
"documents.update",
|
|
"collections.create",
|
|
"emails.invite_accepted",
|
|
"emails.onboarding",
|
|
"emails.features",
|
|
"emails.export_completed",
|
|
],
|
|
])
|
|
@Column(DataType.STRING)
|
|
event: string;
|
|
|
|
// getters
|
|
|
|
get unsubscribeUrl() {
|
|
return `${env.URL}/api/notificationSettings.unsubscribe?token=${this.unsubscribeToken}&id=${this.id}`;
|
|
}
|
|
|
|
get unsubscribeToken() {
|
|
const hash = crypto.createHash("sha256");
|
|
hash.update(`${this.userId}-${env.SECRET_KEY}`);
|
|
return hash.digest("hex");
|
|
}
|
|
|
|
// associations
|
|
|
|
@BelongsTo(() => User, "userId")
|
|
user: User;
|
|
|
|
@ForeignKey(() => User)
|
|
@Column(DataType.UUID)
|
|
userId: string;
|
|
|
|
@BelongsTo(() => Team, "teamId")
|
|
team: Team;
|
|
|
|
@ForeignKey(() => Team)
|
|
@Column(DataType.UUID)
|
|
teamId: string;
|
|
}
|
|
|
|
export default NotificationSetting;
|