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

75 lines
1.9 KiB
TypeScript
Raw Normal View History

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