2017-04-11 21:34:59 -04:00
|
|
|
module Github
|
|
|
|
module Representation
|
2017-04-19 18:17:42 -04:00
|
|
|
class PullRequest < Representation::Issuable
|
2017-04-11 21:34:59 -04:00
|
|
|
delegate :user, :repo, :ref, :sha, to: :source_branch, prefix: true
|
|
|
|
delegate :user, :exists?, :repo, :ref, :sha, :short_sha, to: :target_branch, prefix: true
|
|
|
|
|
|
|
|
def source_project
|
|
|
|
project
|
|
|
|
end
|
|
|
|
|
|
|
|
def source_branch_name
|
2017-09-22 11:43:20 -04:00
|
|
|
# Mimic the "user:branch" displayed in the MR widget,
|
|
|
|
# i.e. "Request to merge rymai:add-external-mounts into master"
|
|
|
|
cross_project? ? "#{source_branch_user}:#{source_branch_ref}" : source_branch_ref
|
2017-06-20 20:39:51 -04:00
|
|
|
end
|
|
|
|
|
2017-04-11 21:34:59 -04:00
|
|
|
def target_project
|
|
|
|
project
|
|
|
|
end
|
|
|
|
|
|
|
|
def target_branch_name
|
2017-09-22 11:43:20 -04:00
|
|
|
target_branch_ref
|
2017-06-20 20:39:51 -04:00
|
|
|
end
|
|
|
|
|
2017-04-11 21:34:59 -04:00
|
|
|
def state
|
|
|
|
return 'merged' if raw['state'] == 'closed' && raw['merged_at'].present?
|
|
|
|
return 'closed' if raw['state'] == 'closed'
|
|
|
|
|
|
|
|
'opened'
|
|
|
|
end
|
|
|
|
|
|
|
|
def opened?
|
|
|
|
state == 'opened'
|
|
|
|
end
|
|
|
|
|
|
|
|
def valid?
|
|
|
|
source_branch.valid? && target_branch.valid?
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-04-24 20:13:51 -04:00
|
|
|
def project
|
|
|
|
@project ||= options.fetch(:project)
|
|
|
|
end
|
|
|
|
|
2017-04-11 21:34:59 -04:00
|
|
|
def source_branch
|
2017-04-24 20:13:51 -04:00
|
|
|
@source_branch ||= Representation::Branch.new(raw['head'], repository: project.repository)
|
2017-04-11 21:34:59 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def target_branch
|
2017-04-24 20:13:51 -04:00
|
|
|
@target_branch ||= Representation::Branch.new(raw['base'], repository: project.repository)
|
2017-04-11 21:34:59 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def cross_project?
|
|
|
|
return true if source_branch_repo.nil?
|
|
|
|
|
|
|
|
source_branch_repo.id != target_branch_repo.id
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|