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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
1.1 KiB
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
class AnalyticsBuildEntity < Grape::Entity
include RequestAwareEntity
include EntityDateHelper
expose :name
expose :id
expose :ref, as: :branch
expose :short_sha
expose :author, using: UserEntity
2022-03-02 08:16:31 +05:30
expose :project_path do |build|
build.project.path
end
expose :namespace_full_path do |build|
build.project.namespace.full_path
end
2017-08-17 22:00:37 +05:30
expose :started_at, as: :date do |build|
interval_in_words(build[:started_at])
end
expose :duration, as: :total_time do |build|
build.duration ? distance_of_time_as_hash(build.duration.to_f) : {}
end
expose :branch do
expose :ref, as: :name
expose :url do |build|
url_to(:namespace_project_tree, build, build.ref)
end
end
expose :url do |build|
2017-09-10 17:25:29 +05:30
url_to(:namespace_project_job, build)
2017-08-17 22:00:37 +05:30
end
expose :commit_url do |build|
url_to(:namespace_project_commit, build, build.sha)
end
private
def url_to(route, build, id = nil)
2018-03-17 18:26:18 +05:30
public_send("#{route}_url", build.project.namespace, build.project, id || build) # rubocop:disable GitlabSecurity/PublicSend
2017-08-17 22:00:37 +05:30
end
end