soap/laravel-omise-webhooks
Composer 安装命令:
composer require soap/laravel-omise-webhooks
包简介
This is my package laravel-omise-webhooks
README 文档
README
Write simple code to receive webhook calls from Omise payment gateway.
Support us
Installation
You can install the package via composer:
composer require soap/laravel-omise-webhooks
The service provider will automatically register itself.
You must publish the config file with:
php artisan vendor:publish --tag="omise-webhooks-config"
This is the contents of the published config file:
return [ /* /* * You can define a default job that should be run for all other Omise event type * without a job defined in next configuration. * You may leave it empty to store the job in database but without processing it. */ 'default_job' => '', /* * You can define the job that should be run when a certain webhook hits your application * here. The key is the name of the Omise event type with the `.` replaced by a `_`. * * You can find a list of Omise webhook types here: * https://docs.opn.ooo/api-webhooks#supported-events. */ 'jobs' => [ // 'card_destroy' => \App\Jobs\OmiseWebhooks\HandleCardDestroy::class, // 'card_update' => \App\Jobs\OmiseWebhooks\HandleCardUpdate::class, // 'charge_capture' => \App\Jobs\OmiseWebhooks\HandleChargeCapture::class, // 'charge_create' => \App\Jobs\OmiseWebhooks\HandleChargeCreate::class, // 'charge_expire' => \App\Jobs\OmiseWebhooks\HandleChargeExpire::class, // 'charge_reverse' => \App\Jobs\OmiseWebhooks\HandleChargeReverse::class, // 'charge_update' => \App\Jobs\OmiseWebhooks\HandleChargeUpdate::class, // 'customer_create' => \App\Jobs\OmiseWebhooks\HandleCustomerCreate::class, // 'customer_update' => \App\Jobs\OmiseWebhooks\HandleCustomerUpdate::class, // 'customer_destroy' => \App\Jobs\OmiseWebhooks\HandleCustomerDestroy::class, // 'customer_update_card' => \App\Jobs\OmiseWebhooks\HandleCustomerUpdateCard::class, // 'dispute_create' => \App\Jobs\OmiseWebhooks\HandleDisputeCreate::class, // 'dispute_update' => \App\Jobs\OmiseWebhooks\HandleDisputeUpdate::class, // 'dispute_destroy' => \App\Jobs\OmiseWebhooks\HandleDisputeDestroy::class, // 'dispute_activate' => \App\Jobs\OmiseWebhooks\HandleDisputeActivate::class, // 'dispute_deactivate' => \App\Jobs\OmiseWebhooks\HandleDisputeDeactivate::class, // 'dispute_verify' => \App\Jobs\OmiseWebhooks\HandleDisputeVerify::class, // 'refund_create' => \App\Jobs\OmiseWebhooks\HandleRefundCreate::class, // 'schedule_create' => \App\Jobs\OmiseWebhooks\HandleScheduleCreate::class, // 'schedule_destroy' => \App\Jobs\OmiseWebhooks\HandleScheduleDestroy::class, // 'schedule_expire' => \App\Jobs\OmiseWebhooks\HandleScheduleExpire::class, // 'schedule_expiring' => \App\Jobs\OmiseWebhooks\HandleScheduleExpiring::class, // 'schedule_suspend' => \App\Jobs\OmiseWebhooks\HandleScheduleSuspend::class, // 'transfer_create' => \App\Jobs\OmiseWebhooks\HandleTransferCreate::class, // 'transfer_update' => \App\Jobs\OmiseWebhooks\HandleTransferUpdate::class, // 'transfer_destroy' => \App\Jobs\OmiseWebhooks\HandleTransferDestroy::class, // 'transfer_fail' => \App\Jobs\OmiseWebhooks\HandleTransferFail::class, // 'transfer_pay' => \App\Jobs\OmiseWebhooks\HandleTransferPay::class, // 'transfer_send' => \App\Jobs\OmiseWebhooks\HandleTransferSend::class, ], /* * The classname of the model to be used. The class should equal or extend * Spatie\WebhookClient\Models\WebhookCall. */ 'model' => \Spatie\WebhookClient\Models\WebhookCall::class, /** * This class determines if the webhook call should be stored and processed. */ 'profile' => \Soap\OmiseWebhooks\OmiseWebhookProfile::class, /* * Specify a connection and or a queue to process the webhooks */ 'connection' => env('OMISE_WEBHOOK_CONNECTION'), 'queue' => env('OMISE_WEBHOOK_QUEUE'), /* * When disabled, the package will not verify if the signature is valid. * This can be handy in local environments. */ 'verify_signature' => env('OMISE_SIGNATURE_VERIFICATION', true), ];
Next, you must publish the migration with:
php artisan vendor:publish --provider="Spatie\WebhookClient\WebhookClientServiceProvider" --tag="webhook-client-migrations"
After the migration has been published you can create the webhook_calls table by running the migrations:
php artisan migrate
Finally, take care of the routing: At the Omise dashboard you must configure at what url Omise webhooks should hit your app. In the routes file of your app you must pass that route to Route::omiseWebhooks:
Route::omiseWebhooks('webhook-route-configured-at-the-omise-dashboard');
Behind the scenes this will register a POST route to a controller provided by this package. Because Omise has no way of getting a csrf-token, you must add that route to the except array of the VerifyCsrfToken middleware:
protected $except = [ 'webhook-route-configured-at-the-omise-dashboard', ];
Usage
Omise will send out webhooks for serveral event types. You can find the full list of event types in Omise documentation.
However, Omise doesnot sign requests sending to our application. So, for simplicity we check only source IPs from Omise. Omise reccomends us to re-verify object status again. You can customise it yourself using Laravel-Omise package.
Unless something goes terribly wrong, this package will always respond with a 200 to webhook requests. Sending a 200 will prevent Omise from resending the same event over and over again. Omise might occasionally send a duplicate webhook request more than once. This package makes sure that each request will only be processed once. All webhook requests with a valid source IP will be logged in the webhook_calls table. The table has a payload column where the entire payload of the incoming webhook is saved.
If the source IP is not valid, the request will not be logged in the webhook_calls table but a Spatie\StripeWebhooks\WebhookFailed exception will be thrown. If something goes wrong during the webhook request the thrown exception will be saved in the exception column. In that case the controller will send a 500 instead of 200.
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 request 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 stripe webhook requests and avoid timeouts.
After having created your job you must register it at the jobs array in the omise-webhooks.php config file. The key should be the name of the stripe event type where but with the . replaced by _. The value should be the fully qualified classname. In the configuration file, most of events are configured but commented out. So you can should the desired event and uncomment the line.
In case you want to configure one job as default to process all undefined event, you may set the job at default_job in the omise-webhooks.php config file. The value should be the fully qualified classname.
// config/stripe-webhooks.php 'default_job' => \App\Jobs\OmiseWebhooks\HandleOtherEvent::class,
Handling webhook request 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 omise-webhooks:: event. The payload of the events will be the instance of WebhookCall 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
/** * The event listener mappings for the application. * * @var array */ protected $listen = [ 'omise-webhooks::charge.expire' => [ App\Listeners\ChargeExpire::class, ], ];
Create your webhook endpoint.
Register route.
Exclude CSRF verification on the webhook route.
Create jobs to handle webhook calls.
Testing
vendor\bin\pest
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
- Prasit Gebsaap
- All Contributors
- Spatie team for their Laravel Stripe Webhook and Laravel Webhook package.
License
The MIT License (MIT). Please see License File for more information.
soap/laravel-omise-webhooks 适用场景与选型建议
soap/laravel-omise-webhooks 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.1k 次下载、GitHub Stars 达 1, 最近一次更新时间为 2024 年 12 月 13 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「omise-php」 「prasit gebsaap」 「laravel-omise-webhooks」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 soap/laravel-omise-webhooks 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 soap/laravel-omise-webhooks 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 soap/laravel-omise-webhooks 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
This is my package laravel-running-numbers
Make Omise payment gateway integration easier with Laravel
Provides Laravel workflow guards using Symfony expression and related objects
Laravel shopping cart with conditions and coupons support
Time zone list and helpers for Laravel application
Thai provinces database for Laravel application
统计信息
- 总下载量: 1.1k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 10
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-12-13