gitlab-org--gitlab-foss/lib/gitlab/light_url_builder.rb
James Lopez eccb6a5e92 Refactored test events
Now test events return the builds instead a list of pipelines to avoid calling pipeline.builds per each and get the info. Also, added missing fields/data, URLs, and fixed specs in events spec.
2016-11-17 08:22:57 +01:00

83 lines
2.2 KiB
Ruby

module Gitlab
class LightUrlBuilder
include Gitlab::Routing.url_helpers
include GitlabRoutingHelper
include ActionView::RecordIdentifier
def self.build(*args)
new(*args).url
end
def initialize(entity:, project: nil, id:, opts: {})
@entity = entity
@project = project
@id = id
@opts = opts
end
def url
#TODO refactor this
case @entity
when :issue
issue_url
when :user
user_url(@id)
when :user_avatar_url
user_avatar_url
when :commit_url
commit_url
when :merge_request
mr_url
when :build_url
namespace_project_build_url(@project.namespace, @project, @id)
when :branch_url
branch_url
else
raise NotImplementedError.new("No URL builder defined for #{object.class}")
end
end
private
def issue_url
namespace_project_issue_url({
namespace_id: @project.namespace,
project_id: @project,
id: @id
}.merge!(@opts))
end
def user_avatar_url
User.find(@id).avatar_url
end
def commit_url
namespace_project_commit_url({
namespace_id: @project.namespace,
project_id: @project,
id: @id
}.merge!(@opts))
end
def mr_url
namespace_project_merge_request_url({
namespace_id: @project.namespace,
project_id: @project,
id: @id
}.merge!(@opts))
end
def pipeline_url
namespace_project_build_url({
namespace_id: @project.namespace,
project_id: @project,
id: @id
}.merge!(@opts))
end
def branch_url
"#{project_url(@project)}/commits/#{@id}"
end
end
end