gitlab-org--gitlab-foss/app/services/ci/image_for_build_service.rb

25 lines
582 B
Ruby
Raw Normal View History

2015-08-25 21:42:46 -04:00
module Ci
class ImageForBuildService
2016-02-05 08:22:58 -05:00
def execute(project, opts)
sha = opts[:sha] || ref_sha(project, opts[:ref])
2015-08-25 21:42:46 -04:00
commit = project.ci_commits.find_by(sha: sha)
image_name = image_for_commit(commit)
2015-08-25 21:42:46 -04:00
image_path = Rails.root.join('public/ci', image_name)
2016-02-05 08:22:58 -05:00
OpenStruct.new(path: image_path, name: image_name)
2015-08-25 21:42:46 -04:00
end
private
2016-02-05 08:22:58 -05:00
def ref_sha(project, ref)
project.commit(ref).try(:sha) if ref
end
2015-08-25 21:42:46 -04:00
def image_for_commit(commit)
return 'build-unknown.svg' unless commit
'build-' + commit.status + ".svg"
end
end
end