Sharkey/packages/backend/src/core/WebhookService.ts

88 lines
2.4 KiB
TypeScript
Raw Normal View History

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