2018-10-22 03:00:50 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-02-19 12:20:53 -05:00
|
|
|
module Gitlab
|
2020-01-16 10:08:41 -05:00
|
|
|
module FileHook
|
2020-01-06 04:07:42 -05:00
|
|
|
def self.any?
|
2020-04-21 11:21:10 -04:00
|
|
|
dir_glob.any? { |entry| File.file?(entry) }
|
2020-01-06 04:07:42 -05:00
|
|
|
end
|
|
|
|
|
2018-02-19 12:55:54 -05:00
|
|
|
def self.files
|
2020-04-21 11:21:10 -04:00
|
|
|
dir_glob.select { |entry| File.file?(entry) }
|
2020-01-06 04:07:42 -05:00
|
|
|
end
|
|
|
|
|
2020-04-21 11:21:10 -04:00
|
|
|
def self.dir_glob
|
|
|
|
Dir.glob([Rails.root.join('file_hooks/*'), Rails.root.join('plugins/*')])
|
2018-02-19 12:55:54 -05:00
|
|
|
end
|
2020-04-21 11:21:10 -04:00
|
|
|
private_class_method :dir_glob
|
2018-02-19 12:20:53 -05:00
|
|
|
|
2018-02-19 12:55:54 -05:00
|
|
|
def self.execute_all_async(data)
|
2018-02-26 07:15:51 -05:00
|
|
|
args = files.map { |file| [file, data] }
|
|
|
|
|
2020-02-04 10:08:40 -05:00
|
|
|
FileHookWorker.bulk_perform_async(args) # rubocop:disable Scalability/BulkPerformWithContext
|
2018-02-19 12:20:53 -05:00
|
|
|
end
|
|
|
|
|
2018-02-19 12:55:54 -05:00
|
|
|
def self.execute(file, data)
|
2018-02-27 11:08:38 -05:00
|
|
|
result = Gitlab::Popen.popen_with_detail([file]) do |stdin|
|
2018-02-26 06:42:25 -05:00
|
|
|
stdin.write(data.to_json)
|
2018-02-23 08:58:57 -05:00
|
|
|
end
|
|
|
|
|
2018-02-27 11:08:38 -05:00
|
|
|
exit_status = result.status&.exitstatus
|
2020-08-05 11:09:59 -04:00
|
|
|
[exit_status == 0, result.stderr]
|
2018-02-27 11:08:38 -05:00
|
|
|
rescue => e
|
2018-02-28 05:16:23 -05:00
|
|
|
[false, e.message]
|
2018-02-19 12:20:53 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|