2018-04-06 08:20:38 -04:00
|
|
|
# GitLab Plugin system
|
2018-02-27 09:01:17 -05:00
|
|
|
|
2018-04-06 08:20:38 -04:00
|
|
|
> Introduced in GitLab 10.6.
|
2018-04-06 05:17:35 -04:00
|
|
|
|
2018-04-06 08:20:38 -04:00
|
|
|
With custom plugins, GitLab administrators can introduce custom integrations
|
|
|
|
without modifying GitLab's source code.
|
2018-02-27 09:01:17 -05:00
|
|
|
|
2018-04-06 08:20:38 -04:00
|
|
|
NOTE: **Note:**
|
|
|
|
Instead of writing and supporting your own plugin you can make changes
|
|
|
|
directly to the GitLab source code and contribute back upstream. This way we can
|
|
|
|
ensure functionality is preserved across versions and covered by tests.
|
2018-02-27 09:01:17 -05:00
|
|
|
|
2018-04-06 08:20:38 -04:00
|
|
|
NOTE: **Note:**
|
|
|
|
Plugins must be configured on the filesystem of the GitLab server. Only GitLab
|
|
|
|
server administrators will be able to complete these tasks. Explore
|
|
|
|
[system hooks] or [webhooks] as an option if you do not have filesystem access.
|
|
|
|
|
|
|
|
A plugin will run on each event so it's up to you to filter events or projects
|
|
|
|
within a plugin code. You can have as many plugins as you want. Each plugin will
|
|
|
|
be triggered by GitLab asynchronously in case of an event. For a list of events
|
|
|
|
see the [system hooks] documentation.
|
2018-02-27 09:01:17 -05:00
|
|
|
|
|
|
|
## Setup
|
|
|
|
|
2018-04-06 08:20:38 -04:00
|
|
|
The plugins must be placed directly into the `plugins` directory, subdirectories
|
|
|
|
will be ignored. There is an
|
|
|
|
[`example` directory inside `plugins`](https://gitlab.com/gitlab-org/gitlab-ce/tree/master/plugins/examples)
|
|
|
|
where you can find some basic examples.
|
2018-02-27 09:01:17 -05:00
|
|
|
|
|
|
|
Follow the steps below to set up a custom hook:
|
|
|
|
|
2018-04-06 08:20:38 -04:00
|
|
|
1. On the GitLab server, navigate to the plugin directory.
|
2018-02-27 09:01:17 -05:00
|
|
|
For an installation from source the path is usually
|
|
|
|
`/home/git/gitlab/plugins/`. For Omnibus installs the path is
|
|
|
|
usually `/opt/gitlab/embedded/service/gitlab-rails/plugins`.
|
2018-04-12 17:10:07 -04:00
|
|
|
|
2018-04-13 13:41:02 -04:00
|
|
|
For [highly available] configurations, your hook file should exist on each
|
|
|
|
application server.
|
2018-04-12 17:10:07 -04:00
|
|
|
|
2018-04-06 08:20:38 -04:00
|
|
|
1. Inside the `plugins` directory, create a file with a name of your choice,
|
|
|
|
without spaces or special characters.
|
2018-02-28 05:16:23 -05:00
|
|
|
1. Make the hook file executable and make sure it's owned by the git user.
|
2018-04-06 08:20:38 -04:00
|
|
|
1. Write the code to make the plugin function as expected. That can be
|
|
|
|
in any language, and ensure the 'shebang' at the top properly reflects the
|
|
|
|
language type. For example, if the script is in Ruby the shebang will
|
|
|
|
probably be `#!/usr/bin/env ruby`.
|
|
|
|
1. The data to the plugin will be provided as JSON on STDIN. It will be exactly
|
|
|
|
same as for [system hooks]
|
2018-02-27 09:01:17 -05:00
|
|
|
|
2018-04-06 08:20:38 -04:00
|
|
|
That's it! Assuming the plugin code is properly implemented, the hook will fire
|
|
|
|
as appropriate. The plugins file list is updated for each event, there is no
|
|
|
|
need to restart GitLab to apply a new plugin.
|
2018-02-27 09:01:17 -05:00
|
|
|
|
2018-02-28 05:31:19 -05:00
|
|
|
If a plugin executes with non-zero exit code or GitLab fails to execute it, a
|
|
|
|
message will be logged to `plugin.log`.
|
|
|
|
|
2018-02-27 09:01:17 -05:00
|
|
|
## Validation
|
|
|
|
|
2018-04-06 08:20:38 -04:00
|
|
|
Writing your own plugin can be tricky and it's easier if you can check it
|
|
|
|
without altering the system. A rake task is provided so that you can use it
|
|
|
|
in a staging environment to test your plugin before using it in production.
|
|
|
|
The rake task will use a sample data and execute each of plugin. The output
|
|
|
|
should be enough to determine if the system sees your plugin and if it was
|
|
|
|
executed without errors.
|
2018-02-27 09:01:17 -05:00
|
|
|
|
|
|
|
```bash
|
|
|
|
# Omnibus installations
|
|
|
|
sudo gitlab-rake plugins:validate
|
|
|
|
|
|
|
|
# Installations from source
|
2018-04-06 08:20:38 -04:00
|
|
|
cd /home/git/gitlab
|
2018-02-27 09:01:17 -05:00
|
|
|
bundle exec rake plugins:validate RAILS_ENV=production
|
|
|
|
```
|
|
|
|
|
2018-04-06 08:20:38 -04:00
|
|
|
Example of output:
|
2018-02-27 09:02:42 -05:00
|
|
|
|
|
|
|
```
|
|
|
|
Validating plugins from /plugins directory
|
|
|
|
* /home/git/gitlab/plugins/save_to_file.clj succeed (zero exit code)
|
|
|
|
* /home/git/gitlab/plugins/save_to_file.rb failure (non-zero exit code)
|
|
|
|
```
|
2018-02-27 09:01:17 -05:00
|
|
|
|
|
|
|
[system hooks]: ../system_hooks/system_hooks.md
|
|
|
|
[webhooks]: ../user/project/integrations/webhooks.md
|
2018-04-13 13:41:02 -04:00
|
|
|
[highly available]: ./high_availability/README.md
|