Download the PHP package ohdearapp/laravel-ohdear-webhooks without Composer
On this page you can find all versions of the php package ohdearapp/laravel-ohdear-webhooks. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ohdearapp/laravel-ohdear-webhooks
More information about ohdearapp/laravel-ohdear-webhooks
Files in ohdearapp/laravel-ohdear-webhooks
Package laravel-ohdear-webhooks
Short Description Handle Oh Dear webhook calls in a Laravel app
License MIT
Homepage https://github.com/ohdear/laravel-ohdear-webhooks
Informations about the package laravel-ohdear-webhooks
Handle Oh Dear! webhooks in a Laravel application
Oh Dear can notify your application of events using webhooks. This package can help you handle those webhooks. Out of the box it will verify the Oh Dear signature of all incoming requests. You can easily define jobs or events that should be dispatched when specific events hit your app.
This package will not handle what should be done after the webhook request has been validated and the right job or event is called.
Installation
The service provider will automatically register itself.
You must publish the config file with:
This is the contents of the config file that will be published at config/ohdear-webhooks.php
:
In the signing_secret
key of the config file you specify your signing secret. You can find the correct at the team webhooks settings on the notification settings screen.
Finally, take care of the routing: At the Oh Dear notification settings you must configure at what url Oh Dear webhooks should hit your app. In the routes file of your app you must pass that route to Route::ohDearWebhooks
:
Behind the scenes this will register a POST
route to a controller provided by this package. Because Oh Dear has no way of getting a csrf-token, you must add that route to the except
array of the VerifyCsrfToken
middleware:
Usage
Oh Dear will send out webhooks for several event types. You can find the full list of events types in the Oh Dear documentation.
Oh Dear will sign all requests hitting the webhook url of your app. This package will automatically verify if the signature is valid. If it is not, the request was probably not sent by Oh Dear.
Unless something wrong, this package will respond with a 200
to webhook requests. Sending a 200
will prevent Oh Dear from resending the same event again.
If the signature is not valid a OhDear\OhDearWebhooks\WebhookFailed
exception will be thrown.
There are two ways this package enables you to handle webhook requests: you can opt to queue a job or listen to the events the package will fire.
Handling webhook requests using jobs
If you want to do something when a specific event type comes in you can define a job that does the work. Here's an example of such a job:
We highly recommend that you make this job queueable, because this will minimize the response time of the webhook requests. This allows you to handle more oh dear webhook requests and avoid timeouts.
After having created your job you must register it at the jobs
array in the ohdear-webhooks.php
config file. The key should be the name of the oh dear event type. The value should be the fully qualified classname.
Handling webhook requests using events
Instead of queueing jobs to perform some work when a webhook request comes in, you can opt to listen to the events this package will fire. Whenever a valid request hits your app, the package will fire a ohdear-webhooks::<name-of-the-event>
event.
The payload of the events will be the instance of OhDearWebhookCall
that was created for the incoming request.
Let's take a look at how you can listen for such an event. In the EventServiceProvider
you can register listeners.
Here's an example of such a listener:
We highly recommend that you make the event listener queueable, as this will minimize the response time of the webhook requests. This allows you to handle more Oh Dear webhook requests and avoid timeouts.
The above example is only one way to handle events in Laravel. To learn the other options, read the Laravel documentation on handling events.
Using the OhDearWebhookCall
Like mentioned above your events or jobs will receive an instance of OhDear\LaravelWebhooks\OhDearWebhookCall
.
You can access the raw payload by calling:
Or you can opt to get more specific information:
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
Credits
- Freek Van der Herten
- Mattias Geniar
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
All versions of laravel-ohdear-webhooks with dependencies
illuminate/http Version ^7.0|^8.0|^9.0|^10.0|^11.0
illuminate/routing Version ^7.0|^8.0|^9.0|^10.0|^11.0
illuminate/support Version ^7.0|^8.0|^9.0|^10.0|^11.0