tjvb/gitlab-webhooks-receiver-for-laravel
Composer 安装命令:
composer require tjvb/gitlab-webhooks-receiver-for-laravel
包简介
Receive webhooks from GitLab and store the data in the database.
README 文档
README
GitLab has the option to send webhooks for multiple events that can be used for different purposes. This package handle the receiving, validating and storing of the webhook data. After receiving it will dispatch an event that can be used to do with the data what fits your application.
Installation
You can install the package via composer:
composer require tjvb/gitlab-webhooks-receiver-for-laravelYou can publish and run the migrations with:
php artisan vendor:publish --provider="TJVB\GitLabWebhooks\GitLabWebhooksServiceProvider" --tag="migrations"
php artisan migrate
Listen to the
\TJVB\GitLabWebhooks\Events\HookStored::classevent. The package store the webhook data and dispatch an event, you can listen to the HookStored event and handle it the way you want. The Laravel documentation can explain more about events and listeners.Set the
GITLAB_WEBHOOK_SECRETenv variable (most used version is to set it in the .env file) to have the token you use for your webhook. See https://docs.gitlab.com/ee/user/project/integrations/webhooks.html#secret-token for more information.Create a webhook in GitLab. You can create a webhook in GitLab for your project, group or system. The default url is
<application.tld>/gitlabwebhookthis can be changed in the configuration from tjvb/gitlab-webhooks-receiver-for-laravel.Optional configure the package.
Manual register the service provider.
If you disable the package discovery you need to add \TJVB\GitLabWebhooks\GitLabWebhooksServiceProvider::class, to the providers array in config/app.php
Configuration
Customization
You can publish the config file with:
php artisan vendor:publish --provider="TJVB\GitLabWebhooks\GitLabWebhooksServiceProvider" --tag="config"
Security
The default configuration validates the X-Gitlab-Token in the header of the webhook request. It is possible to add multiple values in the config file or disabling the middleware to stop the verification. If you need more validation for the request (as example and i.p. filter) you can add more middleware to the configuration.
Changelog
We (try to) document all the changes in CHANGELOG so read it for more information.
Contributing
You are welcome to contribute, read about it in CONTRIBUTING
Security
If you discover any security related issues, please email info@tjvb.nl instead of using the issue tracker.
Tips
Fast response
As described here GitLab want to have a fast response. That means that it is useful to have a queue driver configured that run the jobs in the background. That means that if you use the sync driver it can happen that the response is to slow, so you get the webhook another time.
Test your webhook
On the GitLab pages with the webhook settings it is possible to test the webhook, use it to verify that everything works as suspected.
Cleanup your hooks
If you don't need the data saved in the webhook it can be a good idea to periodic remove the old data. Depending on the kind of hooks the body can be big. This can be done on the end of your event listener or with a package like spatie/laravel-model-cleanup.
Credits
Thanks to
- GitLab for the great product, without that this package isn't needed.
License
The MIT License (MIT). Please see License File for more information.
tjvb/gitlab-webhooks-receiver-for-laravel 适用场景与选型建议
tjvb/gitlab-webhooks-receiver-for-laravel 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 5.64k 次下载、GitHub Stars 达 1, 最近一次更新时间为 2021 年 06 月 13 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「gitlab」 「webhook」 「tjvb」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 tjvb/gitlab-webhooks-receiver-for-laravel 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 tjvb/gitlab-webhooks-receiver-for-laravel 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 tjvb/gitlab-webhooks-receiver-for-laravel 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
PHP GitLab generic API client (not stick to any version)
A collection of monolog handlers using PSR-18 http client
Inbox pattern process implementation for your Laravel Applications
GitHub Webhook Listener with plugin-based API for creating your own triggerered actions
Creates & updates issues on a GitLab repository from Symfony2 exceptions
统计信息
- 总下载量: 5.64k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 19
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-06-13