debian-mirror-gitlab/lib/gitlab/file_hook.rb

35 lines
788 B
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2018-03-27 19:54:05 +05:30
module Gitlab
2020-03-13 15:44:24 +05:30
module FileHook
2020-01-12 00:16:45 +05:30
def self.any?
plugin_glob.any? { |entry| File.file?(entry) }
end
2018-03-27 19:54:05 +05:30
def self.files
2020-01-12 00:16:45 +05:30
plugin_glob.select { |entry| File.file?(entry) }
end
def self.plugin_glob
Dir.glob(Rails.root.join('plugins/*'))
2018-03-27 19:54:05 +05:30
end
def self.execute_all_async(data)
args = files.map { |file| [file, data] }
2020-03-13 15:44:24 +05:30
FileHookWorker.bulk_perform_async(args) # rubocop:disable Scalability/BulkPerformWithContext
2018-03-27 19:54:05 +05:30
end
def self.execute(file, data)
result = Gitlab::Popen.popen_with_detail([file]) do |stdin|
stdin.write(data.to_json)
end
exit_status = result.status&.exitstatus
[exit_status.zero?, result.stderr]
rescue => e
[false, e.message]
end
end
end