summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDirk Hörner <dirker@gmail.com>2016-09-05 12:06:32 +0200
committerSean McGivern <sean@gitlab.com>2016-12-01 11:40:11 +0000
commit0e409ee49b1d68ea949da2d0504f325439ad53b3 (patch)
treef056b1fa4b0d0c936cf027d770b6b7f7672d73a7 /lib
parentd05522de85dcdfa91349c0d9fc78bf72931d6a39 (diff)
downloadgitlab-shell-0e409ee49b1d68ea949da2d0504f325439ad53b3.tar.gz
custom_hook: add support for global custom hooks
This commit adds the option of having another set of global custom hooks along with the already supported repository local custom hooks. The repository local custom hook is executed first (if available). If successful, execution continues with the global custom hook (if available). This way, local custom hooks get priority over global custom hooks. Global custom hooks can be enabled by placing an executable file into the "custom_hooks" directory within gitlab-shell (create if it does not exist, yet).
Diffstat (limited to 'lib')
-rw-r--r--lib/gitlab_custom_hook.rb34
1 files changed, 22 insertions, 12 deletions
diff --git a/lib/gitlab_custom_hook.rb b/lib/gitlab_custom_hook.rb
index 0187e1e..f7ae6de 100644
--- a/lib/gitlab_custom_hook.rb
+++ b/lib/gitlab_custom_hook.rb
@@ -11,28 +11,38 @@ class GitlabCustomHook
end
def pre_receive(changes)
- hook = hook_file('pre-receive', @repo_path)
- return true if hook.nil?
-
- GitlabMetrics.measure("pre-receive-hook") { call_receive_hook(hook, changes) }
+ GitlabMetrics.measure("pre-receive-hook") do
+ find_hooks('pre-receive').all? do |hook|
+ call_receive_hook(hook, changes)
+ end
+ end
end
def post_receive(changes)
- hook = hook_file('post-receive', @repo_path)
- return true if hook.nil?
-
- GitlabMetrics.measure("post-receive-hook") { call_receive_hook(hook, changes) }
+ GitlabMetrics.measure("post-receive-hook") do
+ find_hooks('post-receive').all? do |hook|
+ call_receive_hook(hook, changes)
+ end
+ end
end
def update(ref_name, old_value, new_value)
- hook = hook_file('update', @repo_path)
- return true if hook.nil?
-
- GitlabMetrics.measure("update-hook") { system(vars, hook, ref_name, old_value, new_value) }
+ GitlabMetrics.measure("update-hook") do
+ find_hooks('update').all? do |hook|
+ system(vars, hook, ref_name, old_value, new_value)
+ end
+ end
end
private
+ def find_hooks(hook_name)
+ [
+ hook_file(hook_name, @repo_path),
+ hook_file(hook_name, ROOT_PATH)
+ ].compact
+ end
+
def call_receive_hook(hook, changes)
# Prepare the hook subprocess. Attach a pipe to its stdin, and merge
# both its stdout and stderr into our own stdout.