/* * SPDX-FileCopyrightText: syuilo and misskey-project * SPDX-License-Identifier: AGPL-3.0-only */ import { Injectable, Inject } from '@nestjs/common'; import { DataSource } from 'typeorm'; import { AppLockService } from '@/core/AppLockService.js'; import { DI } from '@/di-symbols.js'; import { bindThis } from '@/decorators.js'; import Chart from '../core.js'; import { ChartLoggerService } from '../ChartLoggerService.js'; import { name, schema } from './entities/ap-request.js'; import type { KVs } from '../core.js'; /** * Chart about ActivityPub requests */ @Injectable() export default class ApRequestChart extends Chart { // eslint-disable-line import/no-default-export constructor( @Inject(DI.db) private db: DataSource, private appLockService: AppLockService, private chartLoggerService: ChartLoggerService, ) { super(db, (k) => appLockService.getChartInsertLock(k), chartLoggerService.logger, name, schema); } protected async tickMajor(): Promise>> { return {}; } protected async tickMinor(): Promise>> { return {}; } @bindThis public async deliverSucc(): Promise { await this.commit({ 'deliverSucceeded': 1, }); } @bindThis public async deliverFail(): Promise { await this.commit({ 'deliverFailed': 1, }); } @bindThis public async inbox(): Promise { await this.commit({ 'inboxReceived': 1, }); } }