debian-mirror-gitlab/app/serializers/commit_entity.rb

50 lines
1.5 KiB
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
class CommitEntity < API::Entities::Commit
2018-12-05 23:21:45 +05:30
include MarkupHelper
2017-08-17 22:00:37 +05:30
include RequestAwareEntity
expose :author, using: UserEntity
expose :author_gravatar_url do |commit|
2018-12-05 23:21:45 +05:30
GravatarService.new.execute(commit.author_email) # rubocop: disable CodeReuse/ServiceClass
2017-08-17 22:00:37 +05:30
end
2018-12-05 23:21:45 +05:30
expose :commit_url do |commit, options|
project_commit_url(request.project, commit, params: options.fetch(:commit_url_params, {}))
2017-08-17 22:00:37 +05:30
end
2018-12-05 23:21:45 +05:30
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)
end
expose :signature_html, if: { type: :full } do |commit|
render('projects/commit/_signature', signature: commit.signature) if commit.has_signature?
end
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-12-21 20:55:43 +05:30
pipeline = commit.latest_pipeline_for_project(pipeline_ref, pipeline_project)
next unless pipeline&.status
2018-12-05 23:21:45 +05:30
pipelines_project_commit_path(pipeline_project, commit.id, ref: pipeline_ref)
end
def render(*args)
return unless request.respond_to?(:render) && request.render.respond_to?(:call)
request.render.call(*args)
2017-08-17 22:00:37 +05:30
end
end