37 lines
691 B
Ruby
37 lines
691 B
Ruby
module Gitlab
|
|
module Badge
|
|
module Build
|
|
##
|
|
# Build status badge
|
|
#
|
|
class Status < Badge::Base
|
|
attr_reader :project, :ref
|
|
|
|
def initialize(project, ref)
|
|
@project = project
|
|
@ref = ref
|
|
|
|
@sha = @project.commit(@ref).try(:sha)
|
|
end
|
|
|
|
def entity
|
|
'build'
|
|
end
|
|
|
|
def status
|
|
@project.pipelines
|
|
.where(sha: @sha)
|
|
.latest_status(@ref) || 'unknown'
|
|
end
|
|
|
|
def metadata
|
|
@metadata ||= Build::Metadata.new(self)
|
|
end
|
|
|
|
def template
|
|
@template ||= Build::Template.new(self)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|