2018-06-27 03:23:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-07-10 07:19:50 -04:00
|
|
|
class CreateGpgSignatureWorker
|
2017-11-28 11:08:30 -05:00
|
|
|
include ApplicationWorker
|
2017-07-10 07:19:50 -04:00
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2018-07-30 12:55:28 -04:00
|
|
|
def perform(commit_shas, project_id)
|
2019-03-22 13:01:48 -04:00
|
|
|
# Older versions of Git::BranchPushService may push a single commit ID on
|
|
|
|
# the stack. We need this to be backwards compatible.
|
2018-08-02 17:22:18 -04:00
|
|
|
commit_shas = Array(commit_shas)
|
|
|
|
|
2018-07-30 12:55:28 -04:00
|
|
|
return if commit_shas.empty?
|
|
|
|
|
2017-07-10 07:19:50 -04:00
|
|
|
project = Project.find_by(id: project_id)
|
2017-07-26 10:01:24 -04:00
|
|
|
return unless project
|
2017-07-10 07:19:50 -04:00
|
|
|
|
2018-07-30 12:55:28 -04:00
|
|
|
commits = project.commits_by(oids: commit_shas)
|
2017-08-24 08:21:26 -04:00
|
|
|
|
2018-07-30 12:55:28 -04:00
|
|
|
return if commits.empty?
|
2017-08-24 08:21:26 -04:00
|
|
|
|
2017-08-15 07:22:55 -04:00
|
|
|
# This calculates and caches the signature in the database
|
2018-07-30 12:55:28 -04:00
|
|
|
commits.each do |commit|
|
2019-03-13 09:42:43 -04:00
|
|
|
Gitlab::Gpg::Commit.new(commit).signature
|
|
|
|
rescue => e
|
2019-07-10 15:26:47 -04:00
|
|
|
Rails.logger.error("Failed to create signature for commit #{commit.id}. Error: #{e.message}") # rubocop:disable Gitlab/RailsLogger
|
2018-07-30 12:55:28 -04:00
|
|
|
end
|
2017-07-10 07:19:50 -04:00
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2017-07-10 07:19:50 -04:00
|
|
|
end
|