2018-10-22 03:00:50 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-02-19 12:20:53 -05:00
|
|
|
module Gitlab
|
|
|
|
module Plugin
|
2018-02-19 12:55:54 -05:00
|
|
|
def self.files
|
2018-02-26 06:32:14 -05:00
|
|
|
Dir.glob(Rails.root.join('plugins/*')).select do |entry|
|
|
|
|
File.file?(entry)
|
|
|
|
end
|
2018-02-19 12:55:54 -05:00
|
|
|
end
|
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] }
|
|
|
|
|
|
|
|
PluginWorker.bulk_perform_async(args)
|
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
|
2018-02-28 05:16:23 -05:00
|
|
|
[exit_status.zero?, 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
|