summaryrefslogtreecommitdiff
path: root/app/workers/create_gpg_signature_worker.rb
blob: 9b5ff17aafa300ca352185efd7f5fca9caa1cd54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class CreateGpgSignatureWorker
  include Sidekiq::Worker
  include DedicatedSidekiqQueue

  def perform(commit_sha, project_id)
    project = Project.find_by(id: project_id)
    return unless project

    commit = project.commit(commit_sha)

    return unless commit

    # This calculates and caches the signature in the database
    Gitlab::Gpg::Commit.new(commit).signature
  end
end