We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UserWebhookを送出用のキューに積む処理が随所でむき出しになっているので、これをUserWebhookServiceにまとめたいです。 ↓こんなの
misskey/packages/backend/src/core/NoteCreateService.ts
Lines 658 to 663 in ff47fef
具体的なイメージとしては、SystemWebhookServiceの下記処理と同等の構造にします。に近い形となります。
misskey/packages/backend/src/core/SystemWebhookService.ts
Lines 168 to 187 in 5229f5d
アクティブなWebhookを取得し、それら全件に向かって発信するのはどこも同じなので、以下のように出来ると良いと思っています
public async enqueueUserWebhook<T extends WebhookEventTypes>( type: T, content: UserWebhookPayload<T>, ) { const webhooks = await this.getActiveWebhooks() .then(webhooks => webhooks.filter(webhook => webhook.on.includes(type))); return Promise.all( webhooks.map(webhook => { return this.queueService.userWebhookDeliver(webhook, type, content); }), ); }
The text was updated successfully, but these errors were encountered:
(SystemWebhookServiceも改良の余地あるのでそっちもやろうと思います)
Sorry, something went wrong.
samunohito
Successfully merging a pull request may close this issue.
Summary
UserWebhookを送出用のキューに積む処理が随所でむき出しになっているので、これをUserWebhookServiceにまとめたいです。
↓こんなの
misskey/packages/backend/src/core/NoteCreateService.ts
Lines 658 to 663 in ff47fef
具体的なイメージとしては、SystemWebhookServiceの下記処理
と同等の構造にします。に近い形となります。misskey/packages/backend/src/core/SystemWebhookService.ts
Lines 168 to 187 in 5229f5d
アクティブなWebhookを取得し、それら全件に向かって発信するのはどこも同じなので、以下のように出来ると良いと思っています
Purpose
Do you want to implement this feature yourself?
The text was updated successfully, but these errors were encountered: