Add webhook notification channel#39
Merged
Merged
Conversation
Introduce a new Webhook notification channel with HMAC-SHA256-signed JSON deliveries. - Add Webhook enum value and ordering (NotificationChannelType). - Implement WebhookChannel to POST JSON payloads (10s timeout) with headers X-EasyMonitor-Event and X-EasyMonitor-Signature (sha256=<hex>) and log failures. - Add toWebhook payloads for MonitorDown and MonitorRecovered (event, monitor, checked_at, dashboard_url, error when present). - Expose routeNotificationForWebhook and webhookSecret helpers on NotificationChannel and mark channel as configured only when url+secret present. - Add Livewire UI + blade controls for creating, editing, deleting, copying/regenerating secrets, and validation (url rules, label max length). - Generate a 64-char secret on creation; preserve secret on edits; provide regeneration action. - Add factory support and unit/feature tests covering creation, validation, signing, delivery, skipping when missing config. - Update README with webhook docs: payload schema, signature verification examples, headers, and delivery semantics.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Introduce a new Webhook notification channel with HMAC-SHA256-signed JSON deliveries.