* feat: 通報を受けた際にメールまたはWebhookで通知を送出出来るようにする
* モデログに対応&エンドポイントを単一オブジェクトでのサポートに変更(API経由で大量に作るシチュエーションもないと思うので)
* fix spdx
* fix migration
* fix migration
* fix models
* add e2e webhook
* tweak
* fix modlog
* fix bugs
* add tests and fix bugs
* add tests and fix bugs
* add tests
* fix path
* regenerate locale
* 混入除去
* 混入除去
* add abuseReportResolved
* fix pnpm-lock.yaml
* add abuseReportResolved test
* fix bugs
* fix ui
* add tests
* fix CHANGELOG.md
* add tests
* add RoleService.getModeratorIds tests
* WebhookServiceをUserとSystemに分割
* fix CHANGELOG.md
* fix test
* insertOneを使う用に
* fix
* regenerate locales
* revert version
* separate webhook job queue
* fix
* 🎨
* Update QueueProcessorService.ts
---------
Co-authored-by: osamu <46447427+sam-osamu@users.noreply.github.com>
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
74 lines
1.9 KiB
TypeScript
74 lines
1.9 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
import { In } from 'typeorm';
|
|
import { DI } from '@/di-symbols.js';
|
|
import type { MiSystemWebhook, SystemWebhooksRepository } from '@/models/_.js';
|
|
import { bindThis } from '@/decorators.js';
|
|
import { Packed } from '@/misc/json-schema.js';
|
|
|
|
@Injectable()
|
|
export class SystemWebhookEntityService {
|
|
constructor(
|
|
@Inject(DI.systemWebhooksRepository)
|
|
private systemWebhooksRepository: SystemWebhooksRepository,
|
|
) {
|
|
}
|
|
|
|
@bindThis
|
|
public async pack(
|
|
src: MiSystemWebhook['id'] | MiSystemWebhook,
|
|
opts?: {
|
|
webhooks: Map<string, MiSystemWebhook>
|
|
},
|
|
): Promise<Packed<'SystemWebhook'>> {
|
|
const webhook = typeof src === 'object'
|
|
? src
|
|
: opts?.webhooks.get(src) ?? await this.systemWebhooksRepository.findOneByOrFail({ id: src });
|
|
|
|
return {
|
|
id: webhook.id,
|
|
isActive: webhook.isActive,
|
|
updatedAt: webhook.updatedAt.toISOString(),
|
|
latestSentAt: webhook.latestSentAt?.toISOString() ?? null,
|
|
latestStatus: webhook.latestStatus,
|
|
name: webhook.name,
|
|
on: webhook.on,
|
|
url: webhook.url,
|
|
secret: webhook.secret,
|
|
};
|
|
}
|
|
|
|
@bindThis
|
|
public async packMany(src: MiSystemWebhook['id'][] | MiSystemWebhook[]): Promise<Packed<'SystemWebhook'>[]> {
|
|
if (src.length === 0) {
|
|
return [];
|
|
}
|
|
|
|
const webhooks = Array.of<MiSystemWebhook>();
|
|
webhooks.push(
|
|
...src.filter((it): it is MiSystemWebhook => typeof it === 'object'),
|
|
);
|
|
|
|
const ids = src.filter((it): it is MiSystemWebhook['id'] => typeof it === 'string');
|
|
if (ids.length > 0) {
|
|
webhooks.push(
|
|
...await this.systemWebhooksRepository.findBy({ id: In(ids) }),
|
|
);
|
|
}
|
|
|
|
return Promise
|
|
.all(
|
|
webhooks.map(x =>
|
|
this.pack(x, {
|
|
webhooks: new Map(webhooks.map(x => [x.id, x])),
|
|
}),
|
|
),
|
|
)
|
|
.then(it => it.sort((a, b) => a.id.localeCompare(b.id)));
|
|
}
|
|
}
|
|
|