2022-09-17 21:27:08 +03:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2023-05-29 05:54:49 +03:00
|
|
|
import * as Bull from 'bullmq';
|
2022-09-17 21:27:08 +03:00
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-09-20 23:33:11 +03:00
|
|
|
import type { WebhooksRepository } from '@/models/index.js';
|
|
|
|
import type { Config } from '@/config.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
import type Logger from '@/logger.js';
|
|
|
|
import { HttpRequestService } from '@/core/HttpRequestService.js';
|
|
|
|
import { StatusError } from '@/misc/status-error.js';
|
2023-01-25 05:00:04 +02:00
|
|
|
import { bindThis } from '@/decorators.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
import { QueueLoggerService } from '../QueueLoggerService.js';
|
|
|
|
import type { WebhookDeliverJobData } from '../types.js';
|
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class WebhookDeliverProcessorService {
|
2022-09-18 21:11:50 +03:00
|
|
|
private logger: Logger;
|
2022-09-17 21:27:08 +03:00
|
|
|
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.config)
|
|
|
|
private config: Config,
|
|
|
|
|
|
|
|
@Inject(DI.webhooksRepository)
|
|
|
|
private webhooksRepository: WebhooksRepository,
|
|
|
|
|
|
|
|
private httpRequestService: HttpRequestService,
|
|
|
|
private queueLoggerService: QueueLoggerService,
|
|
|
|
) {
|
2022-09-18 21:11:50 +03:00
|
|
|
this.logger = this.queueLoggerService.logger.createSubLogger('webhook');
|
2022-09-17 21:27:08 +03:00
|
|
|
}
|
|
|
|
|
2022-12-04 08:03:09 +02:00
|
|
|
@bindThis
|
2022-09-17 21:27:08 +03:00
|
|
|
public async process(job: Bull.Job<WebhookDeliverJobData>): Promise<string> {
|
|
|
|
try {
|
2022-09-18 21:11:50 +03:00
|
|
|
this.logger.debug(`delivering ${job.data.webhookId}`);
|
2023-07-08 01:08:16 +03:00
|
|
|
|
2023-01-25 05:00:04 +02:00
|
|
|
const res = await this.httpRequestService.send(job.data.to, {
|
|
|
|
method: 'POST',
|
|
|
|
headers: {
|
|
|
|
'User-Agent': 'Misskey-Hooks',
|
|
|
|
'X-Misskey-Host': this.config.host,
|
|
|
|
'X-Misskey-Hook-Id': job.data.webhookId,
|
|
|
|
'X-Misskey-Hook-Secret': job.data.secret,
|
2023-04-05 08:49:58 +03:00
|
|
|
'Content-Type': 'application/json',
|
2023-01-25 05:00:04 +02:00
|
|
|
},
|
|
|
|
body: JSON.stringify({
|
|
|
|
hookId: job.data.webhookId,
|
|
|
|
userId: job.data.userId,
|
|
|
|
eventId: job.data.eventId,
|
|
|
|
createdAt: job.data.createdAt,
|
|
|
|
type: job.data.type,
|
|
|
|
body: job.data.content,
|
|
|
|
}),
|
|
|
|
});
|
2023-07-08 01:08:16 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
this.webhooksRepository.update({ id: job.data.webhookId }, {
|
|
|
|
latestSentAt: new Date(),
|
|
|
|
latestStatus: res.status,
|
|
|
|
});
|
2023-07-08 01:08:16 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
return 'Success';
|
|
|
|
} catch (res) {
|
|
|
|
this.webhooksRepository.update({ id: job.data.webhookId }, {
|
|
|
|
latestSentAt: new Date(),
|
|
|
|
latestStatus: res instanceof StatusError ? res.statusCode : 1,
|
|
|
|
});
|
2023-07-08 01:08:16 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (res instanceof StatusError) {
|
|
|
|
// 4xx
|
|
|
|
if (res.isClientError) {
|
2023-05-29 05:54:49 +03:00
|
|
|
throw new Bull.UnrecoverableError(`${res.statusCode} ${res.statusMessage}`);
|
2022-09-17 21:27:08 +03:00
|
|
|
}
|
2023-07-08 01:08:16 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
// 5xx etc.
|
2023-05-29 05:54:49 +03:00
|
|
|
throw new Error(`${res.statusCode} ${res.statusMessage}`);
|
2022-09-17 21:27:08 +03:00
|
|
|
} else {
|
|
|
|
// DNS error, socket error, timeout ...
|
|
|
|
throw res;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|