2022-09-17 11:27:08 -07:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import Redis from 'ioredis';
|
2022-09-20 13:33:11 -07:00
|
|
|
import type { WebhooksRepository } from '@/models/index.js';
|
2022-09-17 11:27:08 -07:00
|
|
|
import type { Webhook } from '@/models/entities/Webhook.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-12-03 22:03:09 -08:00
|
|
|
import { bindThis } from '@/decorators.js';
|
2023-01-13 15:27:23 -08:00
|
|
|
import { StreamMessages } from '@/server/api/stream/types.js';
|
|
|
|
import type { OnApplicationShutdown } from '@nestjs/common';
|
2022-09-17 11:27:08 -07:00
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class WebhookService implements OnApplicationShutdown {
|
2022-09-18 11:11:50 -07:00
|
|
|
private webhooksFetched = false;
|
|
|
|
private webhooks: Webhook[] = [];
|
2022-09-17 11:27:08 -07:00
|
|
|
|
|
|
|
constructor(
|
2023-04-06 19:20:14 -07:00
|
|
|
@Inject(DI.redisForPubsub)
|
|
|
|
private redisForPubsub: Redis.Redis,
|
2022-09-17 11:27:08 -07:00
|
|
|
|
|
|
|
@Inject(DI.webhooksRepository)
|
|
|
|
private webhooksRepository: WebhooksRepository,
|
|
|
|
) {
|
2022-12-03 22:03:09 -08:00
|
|
|
//this.onMessage = this.onMessage.bind(this);
|
2023-04-06 19:20:14 -07:00
|
|
|
this.redisForPubsub.on('message', this.onMessage);
|
2022-09-17 11:27:08 -07:00
|
|
|
}
|
|
|
|
|
2022-12-03 22:03:09 -08:00
|
|
|
@bindThis
|
2022-09-17 11:27:08 -07:00
|
|
|
public async getActiveWebhooks() {
|
2022-09-18 11:11:50 -07:00
|
|
|
if (!this.webhooksFetched) {
|
|
|
|
this.webhooks = await this.webhooksRepository.findBy({
|
2022-09-17 11:27:08 -07:00
|
|
|
active: true,
|
|
|
|
});
|
2022-09-18 11:11:50 -07:00
|
|
|
this.webhooksFetched = true;
|
2022-09-17 11:27:08 -07:00
|
|
|
}
|
|
|
|
|
2022-09-18 11:11:50 -07:00
|
|
|
return this.webhooks;
|
2022-09-17 11:27:08 -07:00
|
|
|
}
|
|
|
|
|
2022-12-03 22:03:09 -08:00
|
|
|
@bindThis
|
2022-09-23 15:12:11 -07:00
|
|
|
private async onMessage(_: string, data: string): Promise<void> {
|
2022-09-17 11:27:08 -07:00
|
|
|
const obj = JSON.parse(data);
|
|
|
|
|
|
|
|
if (obj.channel === 'internal') {
|
2023-01-13 15:27:23 -08:00
|
|
|
const { type, body } = obj.message as StreamMessages['internal']['payload'];
|
2022-09-17 11:27:08 -07:00
|
|
|
switch (type) {
|
|
|
|
case 'webhookCreated':
|
|
|
|
if (body.active) {
|
2023-02-01 03:15:11 -08:00
|
|
|
this.webhooks.push({
|
|
|
|
...body,
|
|
|
|
createdAt: new Date(body.createdAt),
|
2023-02-27 23:46:25 -08:00
|
|
|
latestSentAt: body.latestSentAt ? new Date(body.latestSentAt) : null,
|
2023-02-01 03:15:11 -08:00
|
|
|
});
|
2022-09-17 11:27:08 -07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'webhookUpdated':
|
|
|
|
if (body.active) {
|
2022-09-18 11:11:50 -07:00
|
|
|
const i = this.webhooks.findIndex(a => a.id === body.id);
|
2022-09-17 11:27:08 -07:00
|
|
|
if (i > -1) {
|
2023-02-01 03:15:11 -08:00
|
|
|
this.webhooks[i] = {
|
|
|
|
...body,
|
|
|
|
createdAt: new Date(body.createdAt),
|
2023-02-27 23:46:25 -08:00
|
|
|
latestSentAt: body.latestSentAt ? new Date(body.latestSentAt) : null,
|
2023-02-01 03:15:11 -08:00
|
|
|
};
|
2022-09-17 11:27:08 -07:00
|
|
|
} else {
|
2023-02-01 03:15:11 -08:00
|
|
|
this.webhooks.push({
|
|
|
|
...body,
|
|
|
|
createdAt: new Date(body.createdAt),
|
2023-02-27 23:46:25 -08:00
|
|
|
latestSentAt: body.latestSentAt ? new Date(body.latestSentAt) : null,
|
2023-02-01 03:15:11 -08:00
|
|
|
});
|
2022-09-17 11:27:08 -07:00
|
|
|
}
|
|
|
|
} else {
|
2022-09-18 11:11:50 -07:00
|
|
|
this.webhooks = this.webhooks.filter(a => a.id !== body.id);
|
2022-09-17 11:27:08 -07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'webhookDeleted':
|
2022-09-18 11:11:50 -07:00
|
|
|
this.webhooks = this.webhooks.filter(a => a.id !== body.id);
|
2022-09-17 11:27:08 -07:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-03 22:03:09 -08:00
|
|
|
@bindThis
|
2022-09-17 11:27:08 -07:00
|
|
|
public onApplicationShutdown(signal?: string | undefined) {
|
2023-04-06 19:20:14 -07:00
|
|
|
this.redisForPubsub.off('message', this.onMessage);
|
2022-09-17 11:27:08 -07:00
|
|
|
}
|
|
|
|
}
|