2019-01-28 07:12:30 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-06-28 03:30:29 -04:00
|
|
|
class CommitPresenter < Gitlab::View::Presenter::Delegated
|
|
|
|
include GlobalID::Identification
|
|
|
|
|
2021-09-21 05:12:21 -04:00
|
|
|
presents ::Commit, as: :commit
|
2019-01-28 07:12:30 -05:00
|
|
|
|
|
|
|
def status_for(ref)
|
2019-09-30 11:08:09 -04:00
|
|
|
return unless can?(current_user, :read_commit_status, commit.project)
|
|
|
|
|
|
|
|
commit.latest_pipeline(ref)&.detailed_status(current_user)
|
2019-01-28 07:12:30 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def any_pipelines?
|
2019-09-30 11:08:09 -04:00
|
|
|
return false unless can?(current_user, :read_pipeline, commit.project)
|
|
|
|
|
|
|
|
commit.pipelines.any?
|
2019-01-28 07:12:30 -05:00
|
|
|
end
|
2019-06-28 03:30:29 -04:00
|
|
|
|
2019-10-03 14:06:11 -04:00
|
|
|
def signature_html
|
|
|
|
return unless commit.has_signature?
|
|
|
|
|
|
|
|
ApplicationController.renderer.render(
|
|
|
|
'projects/commit/_signature',
|
|
|
|
locals: { signature: commit.signature },
|
|
|
|
layout: false,
|
|
|
|
formats: [:html]
|
|
|
|
)
|
|
|
|
end
|
2019-01-28 07:12:30 -05:00
|
|
|
end
|