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
|
|
|
|
|
|
|
def perform(commit_sha, project_id)
|
|
|
|
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
|
|
|
|
2017-08-24 08:21:26 -04:00
|
|
|
commit = project.commit(commit_sha)
|
|
|
|
|
|
|
|
return unless commit
|
|
|
|
|
2017-08-15 07:22:55 -04:00
|
|
|
# This calculates and caches the signature in the database
|
2017-08-24 08:21:26 -04:00
|
|
|
Gitlab::Gpg::Commit.new(commit).signature
|
2017-07-10 07:19:50 -04:00
|
|
|
end
|
|
|
|
end
|