Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2018-02-08 18:51:02 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2018-02-26 17:06:49 +0300
commit9be0c2734ae3e3cc84196cf167a0c327c7cf8570 (patch)
tree0a91f56279321052ce8e91c906f9317f0901756b /app/services
parent1ffa07e6f35fb7832ba8c6fd764da6c201e521bd (diff)
Add external plugins support to extend system hooks
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/services')
-rw-r--r--app/services/system_hooks_service.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/services/system_hooks_service.rb b/app/services/system_hooks_service.rb
index a6b7a6e1416..71de74e5a82 100644
--- a/app/services/system_hooks_service.rb
+++ b/app/services/system_hooks_service.rb
@@ -11,6 +11,15 @@ class SystemHooksService
SystemHook.hooks_for(hooks_scope).find_each do |hook|
hook.async_execute(data, 'system_hooks')
end
+
+ # Execute external plugins
+ PLUGINS.each do |plugin|
+ begin
+ plugin.new.execute(data)
+ rescue => e
+ Rails.logger.warn("GitLab -> Plugins -> #{plugin.class.name} raised an axception during execution. #{e}")
+ end
+ end
end
private