@tstdl/base 0.93.180 → 0.93.181
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/mail/mail.service.js +21 -2
- package/mail/module.d.ts +1 -0
- package/mail/module.js +1 -0
- package/notification/api/notification.api.d.ts +4 -4
- package/notification/api/notification.api.js +3 -3
- package/notification/server/api/notification.api-controller.d.ts +1 -1
- package/notification/server/api/notification.api-controller.js +2 -2
- package/notification/server/services/notification.service.d.ts +5 -0
- package/notification/server/services/notification.service.js +5 -7
- package/notification/tests/notification-api.test.js +9 -9
- package/package.json +1 -1
package/mail/mail.service.js
CHANGED
|
@@ -12,8 +12,9 @@ import { buildJsonb } from '../orm/index.js';
|
|
|
12
12
|
import { DatabaseConfig, injectRepository } from '../orm/server/index.js';
|
|
13
13
|
import { TaskProcessResult, TaskQueue } from '../task-queue/task-queue.js';
|
|
14
14
|
import { TemplateService } from '../templates/template.service.js';
|
|
15
|
+
import { toArray } from '../utils/array/array.js';
|
|
15
16
|
import { currentTimestamp } from '../utils/date-time.js';
|
|
16
|
-
import { assertDefined } from '../utils/type-guards.js';
|
|
17
|
+
import { assertDefined, isDefined } from '../utils/type-guards.js';
|
|
17
18
|
import { MailClient, MailClientConfig } from './mail.client.js';
|
|
18
19
|
import { MailLog } from './models/index.js';
|
|
19
20
|
import { mailLog as mailLogTable } from './models/schemas.js';
|
|
@@ -24,6 +25,7 @@ let MailService = class MailService {
|
|
|
24
25
|
#templateService = inject(TemplateService);
|
|
25
26
|
#mailLogRepository = injectRepository(MailLog);
|
|
26
27
|
#taskQueue = inject((TaskQueue), 'mail');
|
|
28
|
+
#moduleConfig = inject(MailModuleConfig, undefined, { optional: true });
|
|
27
29
|
#defaultClientConfig = inject(MailClientConfig, undefined, { optional: true });
|
|
28
30
|
#defaultData = inject(MAIL_DEFAULT_DATA, undefined, { optional: true });
|
|
29
31
|
#logger = inject(Logger, 'MailService');
|
|
@@ -42,6 +44,7 @@ let MailService = class MailService {
|
|
|
42
44
|
const config = options?.clientConfig ?? this.#defaultClientConfig;
|
|
43
45
|
assertDefined(config, 'No mail client config provided.');
|
|
44
46
|
const data = { ...this.#defaultData, ...mailData };
|
|
47
|
+
const rewriteTo = this.#moduleConfig?.rewriteTo;
|
|
45
48
|
let mailLog;
|
|
46
49
|
mailLog = await this.#mailLogRepository.insert({
|
|
47
50
|
timestamp: currentTimestamp(),
|
|
@@ -50,8 +53,24 @@ let MailService = class MailService {
|
|
|
50
53
|
sendResult: null,
|
|
51
54
|
errors: [],
|
|
52
55
|
});
|
|
56
|
+
const finalMailData = isDefined(rewriteTo)
|
|
57
|
+
? {
|
|
58
|
+
...data,
|
|
59
|
+
to: rewriteTo,
|
|
60
|
+
cc: undefined,
|
|
61
|
+
bcc: undefined,
|
|
62
|
+
headers: {
|
|
63
|
+
...data.headers,
|
|
64
|
+
'X-Original-To': [
|
|
65
|
+
...toArray(data.to ?? []),
|
|
66
|
+
...toArray(data.cc ?? []),
|
|
67
|
+
...toArray(data.bcc ?? []),
|
|
68
|
+
].map((address) => (typeof address == 'string' ? address : `${address.name} <${address.address}>`)).join(', '),
|
|
69
|
+
},
|
|
70
|
+
}
|
|
71
|
+
: data;
|
|
53
72
|
try {
|
|
54
|
-
const result = await this.#mailClient.send(
|
|
73
|
+
const result = await this.#mailClient.send(finalMailData, config);
|
|
55
74
|
await this.#mailLogRepository.update(mailLog.id, { sendResult: result });
|
|
56
75
|
return result;
|
|
57
76
|
}
|
package/mail/module.d.ts
CHANGED
package/mail/module.js
CHANGED
|
@@ -93,10 +93,10 @@ export declare const notificationApiDefinition: {
|
|
|
93
93
|
}>;
|
|
94
94
|
credentials: true;
|
|
95
95
|
};
|
|
96
|
-
|
|
96
|
+
updatePreferences: {
|
|
97
97
|
resource: string;
|
|
98
98
|
method: "POST";
|
|
99
|
-
parameters: import("../../schema/index.js").
|
|
99
|
+
parameters: import("../../schema/index.js").ArraySchema<{
|
|
100
100
|
type: string;
|
|
101
101
|
enabled: boolean;
|
|
102
102
|
channel: "email" | "in-app" | "web-push";
|
|
@@ -210,10 +210,10 @@ declare const _NotificationApiClient: import("../../api/client/index.js").ApiCli
|
|
|
210
210
|
}>;
|
|
211
211
|
credentials: true;
|
|
212
212
|
};
|
|
213
|
-
|
|
213
|
+
updatePreferences: {
|
|
214
214
|
resource: string;
|
|
215
215
|
method: "POST";
|
|
216
|
-
parameters: import("../../schema/index.js").
|
|
216
|
+
parameters: import("../../schema/index.js").ArraySchema<{
|
|
217
217
|
type: string;
|
|
218
218
|
enabled: boolean;
|
|
219
219
|
channel: "email" | "in-app" | "web-push";
|
|
@@ -96,14 +96,14 @@ export const notificationApiDefinition = defineApi({
|
|
|
96
96
|
})),
|
|
97
97
|
credentials: true,
|
|
98
98
|
},
|
|
99
|
-
|
|
99
|
+
updatePreferences: {
|
|
100
100
|
resource: 'preferences',
|
|
101
101
|
method: 'POST',
|
|
102
|
-
parameters: object({
|
|
102
|
+
parameters: array(object({
|
|
103
103
|
type: string(),
|
|
104
104
|
channel: enumeration(NotificationChannel),
|
|
105
105
|
enabled: boolean(),
|
|
106
|
-
}),
|
|
106
|
+
})),
|
|
107
107
|
result: literal('ok'),
|
|
108
108
|
credentials: true,
|
|
109
109
|
},
|
|
@@ -17,6 +17,6 @@ export declare class NotificationApiController implements ApiController<Notifica
|
|
|
17
17
|
archiveAll({ getToken }: ApiRequestContext<NotificationApiDefinition, 'archiveAll'>): Promise<'ok'>;
|
|
18
18
|
unreadCount({ getToken }: ApiRequestContext<NotificationApiDefinition, 'unreadCount'>): Promise<number>;
|
|
19
19
|
getPreferences({ getToken }: ApiRequestContext<NotificationApiDefinition, 'getPreferences'>): Promise<any>;
|
|
20
|
-
|
|
20
|
+
updatePreferences({ parameters, getToken }: ApiRequestContext<NotificationApiDefinition, 'updatePreferences'>): Promise<'ok'>;
|
|
21
21
|
registerWebPush({ parameters, getToken }: ApiRequestContext<NotificationApiDefinition, 'registerWebPush'>): Promise<'ok'>;
|
|
22
22
|
}
|
|
@@ -85,9 +85,9 @@ let NotificationApiController = class NotificationApiController {
|
|
|
85
85
|
const token = await getToken();
|
|
86
86
|
return await this.notificationService.getPreferences(token.payload.tenant, token.payload.subject);
|
|
87
87
|
}
|
|
88
|
-
async
|
|
88
|
+
async updatePreferences({ parameters, getToken }) {
|
|
89
89
|
const token = await getToken();
|
|
90
|
-
await this.notificationService.
|
|
90
|
+
await this.notificationService.updatePreferences(token.payload.tenant, token.payload.subject, parameters);
|
|
91
91
|
return 'ok';
|
|
92
92
|
}
|
|
93
93
|
async registerWebPush({ parameters, getToken }) {
|
|
@@ -34,5 +34,10 @@ export declare class NotificationService<Definitions extends NotificationDefinit
|
|
|
34
34
|
}>;
|
|
35
35
|
getPreferences(tenantId: string, userId: string): Promise<NotificationPreference[]>;
|
|
36
36
|
updatePreference(tenantId: string, userId: string, type: string, channel: NotificationChannel, enabled: boolean): Promise<void>;
|
|
37
|
+
updatePreferences(tenantId: string, userId: string, preferences: {
|
|
38
|
+
type: string;
|
|
39
|
+
channel: NotificationChannel;
|
|
40
|
+
enabled: boolean;
|
|
41
|
+
}[]): Promise<void>;
|
|
37
42
|
registerWebPush(tenantId: string, userId: string, endpoint: string, p256dh: Uint8Array<ArrayBuffer>, auth: Uint8Array<ArrayBuffer>): Promise<void>;
|
|
38
43
|
}
|
|
@@ -235,13 +235,11 @@ let NotificationService = NotificationService_1 = class NotificationService exte
|
|
|
235
235
|
return await this.#preferenceRepository.loadManyByQuery({ tenantId, userId });
|
|
236
236
|
}
|
|
237
237
|
async updatePreference(tenantId, userId, type, channel, enabled) {
|
|
238
|
-
await this.#preferenceRepository.upsert(['tenantId', 'userId', 'type', 'channel'], {
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
enabled,
|
|
244
|
-
});
|
|
238
|
+
await this.#preferenceRepository.upsert(['tenantId', 'userId', 'type', 'channel'], { tenantId, userId, type, channel, enabled });
|
|
239
|
+
}
|
|
240
|
+
async updatePreferences(tenantId, userId, preferences) {
|
|
241
|
+
const entities = preferences.map((preference) => ({ tenantId, userId, ...preference }));
|
|
242
|
+
await this.#preferenceRepository.upsertMany(['tenantId', 'userId', 'type', 'channel'], entities);
|
|
245
243
|
}
|
|
246
244
|
async registerWebPush(tenantId, userId, endpoint, p256dh, auth) {
|
|
247
245
|
try {
|
|
@@ -27,11 +27,14 @@ describe('Notification API (Integration)', () => {
|
|
|
27
27
|
rateLimiter: true,
|
|
28
28
|
},
|
|
29
29
|
}));
|
|
30
|
-
await clearTenantData(database, 'authentication', ['user', 'subject'], tenantId);
|
|
31
30
|
controller = injector.resolve(NotificationApiController);
|
|
32
31
|
notificationService = injector.resolve(NotificationService);
|
|
33
32
|
sseService = injector.resolve(NotificationSseService);
|
|
34
33
|
subjectService = injector.resolve(SubjectService);
|
|
34
|
+
});
|
|
35
|
+
beforeEach(async () => {
|
|
36
|
+
vi.clearAllMocks();
|
|
37
|
+
await clearTenantData(database, 'authentication', ['user', 'subject'], tenantId);
|
|
35
38
|
// Create a dummy user
|
|
36
39
|
const user = await subjectService.createUser({
|
|
37
40
|
tenantId,
|
|
@@ -41,9 +44,6 @@ describe('Notification API (Integration)', () => {
|
|
|
41
44
|
});
|
|
42
45
|
userId = user.id;
|
|
43
46
|
});
|
|
44
|
-
beforeEach(() => {
|
|
45
|
-
vi.clearAllMocks();
|
|
46
|
-
});
|
|
47
47
|
afterEach(async () => {
|
|
48
48
|
await clearTenantData(database, schema, ['in_app', 'in_app_archive', 'log', 'preference', 'web_push_subscription'], tenantId);
|
|
49
49
|
await clearTenantData(database, 'authentication', ['user', 'subject'], tenantId);
|
|
@@ -109,11 +109,11 @@ describe('Notification API (Integration)', () => {
|
|
|
109
109
|
await controller.getPreferences(createMockContext());
|
|
110
110
|
expect(getPreferencesSpy).toHaveBeenCalledWith(tenantId, userId);
|
|
111
111
|
});
|
|
112
|
-
test('
|
|
113
|
-
const
|
|
114
|
-
const params = { type: 'test', channel: NotificationChannel.Email, enabled: true };
|
|
115
|
-
await controller.
|
|
116
|
-
expect(
|
|
112
|
+
test('updatePreferences should call service', async () => {
|
|
113
|
+
const updatePreferencesSpy = vi.spyOn(notificationService, 'updatePreferences').mockResolvedValue();
|
|
114
|
+
const params = [{ type: 'test', channel: NotificationChannel.Email, enabled: true }];
|
|
115
|
+
await controller.updatePreferences(createMockContext(params));
|
|
116
|
+
expect(updatePreferencesSpy).toHaveBeenCalledWith(tenantId, userId, params);
|
|
117
117
|
});
|
|
118
118
|
test('registerWebPush should call service', async () => {
|
|
119
119
|
const registerWebPushSpy = vi.spyOn(notificationService, 'registerWebPush').mockResolvedValue();
|