gitlab-org--gitlab-foss/lib/gitlab/github_import/pull_request_formatter.rb

91 lines
2.4 KiB
Ruby
Raw Normal View History

2015-12-23 17:04:46 +00:00
module Gitlab
module GithubImport
class PullRequestFormatter < IssuableFormatter
delegate :user, :project, :ref, :repo, :sha, to: :source_branch, prefix: true
delegate :user, :exists?, :project, :ref, :repo, :sha, :short_sha, to: :target_branch, prefix: true
2016-05-09 22:45:37 +00:00
2015-12-23 17:04:46 +00:00
def attributes
{
iid: number,
2015-12-23 17:04:46 +00:00
title: raw_data.title,
description: description,
2016-05-09 22:45:37 +00:00
source_project: source_branch_project,
source_branch: source_branch_name,
source_branch_sha: source_branch_sha,
2016-05-09 22:45:37 +00:00
target_project: target_branch_project,
target_branch: target_branch_name,
target_branch_sha: target_branch_sha,
2015-12-23 17:04:46 +00:00
state: state,
milestone: milestone,
2015-12-23 17:04:46 +00:00
author_id: author_id,
assignee_id: assignee_id,
created_at: raw_data.created_at,
updated_at: raw_data.updated_at,
imported: true
2015-12-23 17:04:46 +00:00
}
end
2016-10-19 18:42:31 +00:00
def project_association
:merge_requests
end
2015-12-23 17:04:46 +00:00
def valid?
source_branch.valid? && target_branch.valid?
end
def source_branch
2016-05-09 22:45:37 +00:00
@source_branch ||= BranchFormatter.new(project, raw_data.head)
end
def source_branch_name
2017-03-26 01:16:27 +00:00
@source_branch_name ||=
if cross_project? || !source_branch_exists?
source_branch_name_prefixed
else
2017-03-26 01:16:27 +00:00
source_branch_ref
end
end
def source_branch_name_prefixed
"gh-#{target_branch_short_sha}/#{number}/#{source_branch_user}/#{source_branch_ref}"
end
def source_branch_exists?
2017-03-26 01:16:27 +00:00
!cross_project? && source_branch.exists?
end
def target_branch
2016-05-09 22:45:37 +00:00
@target_branch ||= BranchFormatter.new(project, raw_data.base)
end
def target_branch_name
2017-03-26 01:16:27 +00:00
@target_branch_name ||= target_branch_exists? ? target_branch_ref : target_branch_name_prefixed
end
def target_branch_name_prefixed
"gl-#{target_branch_short_sha}/#{number}/#{target_branch_user}/#{target_branch_ref}"
end
2017-03-08 18:16:39 +00:00
def cross_project?
return true if source_branch_repo.nil?
source_branch_repo.id != target_branch_repo.id
2017-03-08 18:16:39 +00:00
end
def opened?
state == 'opened'
end
2015-12-23 17:04:46 +00:00
private
def state
if raw_data.state == 'closed' && raw_data.merged_at.present?
'merged'
else
super
end
2015-12-23 17:04:46 +00:00
end
end
end
end