tjvb / gitlab-models-for-laravel
Save the GitLab data in your Laravel project
Requires
- php: ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0
- doctrine/dbal: ^3.6
- laravel/framework: ^9.0 || ^10.0 || ^11.0
- nesbot/carbon: ^2.57
- thecodingmachine/safe: ^2.5
- tjvb/gitlab-webhooks-receiver-for-laravel: ^2.0.0
Requires (Dev)
- infection/infection: ^0.26.10 || ^0.27.0
- orchestra/testbench: ^7.0 || ^8.0 || ^9.0
- phpmd/phpmd: ^2.13
- phpstan/phpstan: ^1.9
- phpunit/phpunit: ^9.5 || ^10.0
- slevomat/coding-standard: ^8.14
- squizlabs/php_codesniffer: ^3.7
- symplify/easy-coding-standard: ^12.1
- thecodingmachine/phpstan-safe-rule: ^1.2
README
Purpose
GitLab push data for different objects with its webhook, this package provides the option to store that data in your database. Under the hood it use tjvb/gitlab-webhooks-receiver-for-laravel for receiving the webhook data. After storing the data it will dispatch an event that can be used to update other parts of your data or react on the new input.
Installation
You can install the package via composer:
composer require tjvb/gitlab-models-for-laravel
You can publish and run the migrations for GitLab Models for Laravel and GitLab Webhooks with:
php artisan vendor:publish --provider="TJVB\GitLabWebhooks\GitLabWebhooksServiceProvider" --tag="migrations"
php artisan vendor:publish --provider="TJVB\GitlabModelsForLaravel\Providers\GitlabModelsProvider" --tag="migrations"
php artisan migrate
- Set the
GITLAB_WEBHOOK_SECRET
env 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>/gitlabwebhook
this can be changed in the configuration from tjvb/gitlab-webhooks-receiver-for-laravel. - Optional configure the package.
- Listen to the events
Manual register the service provider.
If you disable the package discovery you need to add \TJVB\GitlabModelsForLaravel\Providers\GitlabModelsProvider::class,
and \TJVB\GitLabWebhooks\GitLabWebhooksServiceProvider::class,
to the providers array in config/app.php
.
Events
The package dispatched multiple events after saving the received data (a create or update) The event contains the new data.
TJVB\GitlabModelsForLaravel\Events\BuildDataReceived
TJVB\GitlabModelsForLaravel\Events\DeploymentDataReceived
TJVB\GitlabModelsForLaravel\Events\IssueDataReceived
TJVB\GitlabModelsForLaravel\Events\MergeRequestDataReceived
TJVB\GitlabModelsForLaravel\Events\NoteDataReceived
TJVB\GitlabModelsForLaravel\Events\PipelineDataReceived
TJVB\GitlabModelsForLaravel\Events\ProjectDataReceived
TJVB\GitlabModelsForLaravel\Events\TagDataReceived
Configuration
Env variables
There are a couple of env variables that can be used to change the data that should be stored.
Key | Default | Description |
---|---|---|
GITLAB_MODELS_QUEUE_CONNECTION | null | The queue connection for the HookStoredListener, if not provided it will use the project default. |
GITLAB_MODELS_QUEUE_QUEUE | null | The queue for the HookStoredListener, if not provided it will use the project default. |
GITLAB_MODELS_STORE_BUILDS | true | That we want to store the data from the builds. |
GITLAB_MODELS_STORE_DEPLOYMENTS | true | That we want to store the data from the deployments. |
GITLAB_MODELS_STORE_ISSUES | true | That we want to store the data from the issues. |
GITLAB_MODELS_STORE_MERGE_REQUESTS | true | That we want to store the data from the merge requests. |
GITLAB_MODELS_STORE_NOTES | true | That we want to store the data from the notes (comments). |
GITLAB_MODELS_STORE_PIPELINES | true | That we want to store the data from the pipelines. |
GITLAB_MODELS_STORE_PROJECTS | true | That we want to store the data from the projects. |
GITLAB_MODELS_STORE_TAGS | true | That we want to store the data from the tags. |
Customization
You can publish the config file with:
php artisan vendor:publish --provider="TJVB\GitlabModelsForLaravel\Providers\GitlabModelsProvider" --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.
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.