2018-07-19 14:43:13 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-10-05 04:48:05 -04:00
|
|
|
class CommitEntity < API::Entities::Commit
|
2018-09-26 04:28:50 -04:00
|
|
|
include MarkupHelper
|
2016-11-03 07:54:10 -04:00
|
|
|
include RequestAwareEntity
|
|
|
|
|
2016-11-04 08:08:58 -04:00
|
|
|
expose :author, using: UserEntity
|
2016-11-04 05:16:30 -04:00
|
|
|
|
2016-11-12 04:53:03 -05:00
|
|
|
expose :author_gravatar_url do |commit|
|
2018-08-27 11:31:01 -04:00
|
|
|
GravatarService.new.execute(commit.author_email) # rubocop: disable CodeReuse/ServiceClass
|
2016-11-12 04:53:03 -05:00
|
|
|
end
|
|
|
|
|
2018-09-26 04:28:50 -04:00
|
|
|
expose :commit_url do |commit, options|
|
|
|
|
project_commit_url(request.project, commit, params: options.fetch(:commit_url_params, {}))
|
2016-11-03 07:54:10 -04:00
|
|
|
end
|
2016-11-18 16:31:26 -05:00
|
|
|
|
2018-09-26 04:28:50 -04:00
|
|
|
expose :commit_path do |commit, options|
|
|
|
|
project_commit_path(request.project, commit, params: options.fetch(:commit_url_params, {}))
|
|
|
|
end
|
|
|
|
|
|
|
|
expose :description_html, if: { type: :full } do |commit|
|
|
|
|
markdown_field(commit, :description)
|
|
|
|
end
|
|
|
|
|
|
|
|
expose :title_html, if: { type: :full } do |commit|
|
|
|
|
markdown_field(commit, :title)
|
2016-11-03 07:54:10 -04:00
|
|
|
end
|
2018-10-03 02:44:18 -04:00
|
|
|
|
|
|
|
expose :signature_html, if: { type: :full } do |commit|
|
|
|
|
render('projects/commit/_signature', signature: commit.signature) if commit.has_signature?
|
|
|
|
end
|
|
|
|
|
2018-10-03 05:08:00 -04:00
|
|
|
expose :pipeline_status_path, if: { type: :full } do |commit, options|
|
|
|
|
pipeline_ref = options[:pipeline_ref]
|
|
|
|
pipeline_project = options[:pipeline_project] || commit.project
|
|
|
|
next unless pipeline_ref && pipeline_project
|
|
|
|
|
2019-09-30 11:08:09 -04:00
|
|
|
pipeline = commit.latest_pipeline_for_project(pipeline_ref, pipeline_project)
|
|
|
|
next unless pipeline&.status
|
2018-10-03 05:08:00 -04:00
|
|
|
|
|
|
|
pipelines_project_commit_path(pipeline_project, commit.id, ref: pipeline_ref)
|
|
|
|
end
|
|
|
|
|
2018-10-03 02:44:18 -04:00
|
|
|
def render(*args)
|
|
|
|
return unless request.respond_to?(:render) && request.render.respond_to?(:call)
|
|
|
|
|
|
|
|
request.render.call(*args)
|
|
|
|
end
|
2016-11-03 07:54:10 -04:00
|
|
|
end
|