2012-11-19 13:24:05 -05:00
# == Schema Information
#
# Table name: merge_requests
#
2013-04-25 10:15:33 -04:00
# id :integer not null, primary key
# target_project_id :integer not null
# target_branch :string(255) not null
# source_project_id :integer not null
# source_branch :string(255) not null
# author_id :integer
# assignee_id :integer
# title :string(255)
# created_at :datetime
# updated_at :datetime
# st_commits :text(2147483647)
# st_diffs :text(2147483647)
# milestone_id :integer
# state :string(255)
# merge_status :string(255)
2013-03-15 09:16:02 -04:00
#
2012-11-19 13:24:05 -05:00
2012-09-26 14:52:01 -04:00
require Rails . root . join ( " app/models/commit " )
2013-01-02 17:01:08 -05:00
require Rails . root . join ( " lib/static_model " )
2012-03-14 18:57:43 -04:00
2011-11-28 02:39:43 -05:00
class MergeRequest < ActiveRecord :: Base
2013-04-25 10:15:33 -04:00
2013-01-03 02:06:07 -05:00
include Issuable
2012-06-07 08:44:57 -04:00
2013-07-16 17:14:03 -04:00
belongs_to :target_project , foreign_key : :target_project_id , class_name : " Project "
belongs_to :source_project , foreign_key : :source_project_id , class_name : " Project "
2013-04-25 10:15:33 -04:00
2013-06-06 17:22:36 -04:00
attr_accessible :title , :assignee_id , :source_project_id , :source_branch , :target_project_id , :target_branch , :milestone_id , :author_id_of_changes , :state_event
2013-04-25 10:15:33 -04:00
2012-09-26 14:17:17 -04:00
2012-10-08 20:10:04 -04:00
attr_accessor :should_remove_source_branch
2013-02-18 08:22:18 -05:00
state_machine :state , initial : :opened do
2013-02-18 03:40:56 -05:00
event :close do
transition [ :reopened , :opened ] = > :closed
end
event :merge do
transition [ :reopened , :opened ] = > :merged
end
event :reopen do
2013-02-18 08:22:18 -05:00
transition closed : :reopened
2013-02-18 03:40:56 -05:00
end
state :opened
state :reopened
state :closed
state :merged
end
2013-02-20 08:15:01 -05:00
state_machine :merge_status , initial : :unchecked do
event :mark_as_unchecked do
transition [ :can_be_merged , :cannot_be_merged ] = > :unchecked
end
event :mark_as_mergeable do
transition unchecked : :can_be_merged
end
event :mark_as_unmergeable do
transition unchecked : :cannot_be_merged
end
2013-02-26 03:38:40 -05:00
state :unchecked
2012-07-05 15:59:37 -04:00
2013-02-20 08:15:01 -05:00
state :can_be_merged
state :cannot_be_merged
end
2012-03-30 01:05:04 -04:00
2012-03-14 18:57:43 -04:00
serialize :st_commits
serialize :st_diffs
2013-04-25 10:15:33 -04:00
validates :source_project , presence : true
2012-10-08 20:10:04 -04:00
validates :source_branch , presence : true
2013-04-25 10:15:33 -04:00
validates :target_project , presence : true
2012-10-08 20:10:04 -04:00
validates :target_branch , presence : true
2013-04-25 10:15:33 -04:00
validate :validate_branches
2011-11-28 02:39:43 -05:00
2013-06-06 17:22:36 -04:00
scope :of_group , - > ( group ) { where ( " source_project_id in (:group_project_ids) OR target_project_id in (:group_project_ids) " , group_project_ids : group . project_ids ) }
scope :of_user_team , - > ( team ) { where ( " (source_project_id in (:team_project_ids) OR target_project_id in (:team_project_ids) AND assignee_id in (:team_member_ids)) " , team_project_ids : team . project_ids , team_member_ids : team . member_ids ) }
2013-04-25 10:15:33 -04:00
scope :opened , - > { with_state ( :opened ) }
scope :closed , - > { with_state ( :closed ) }
2013-02-18 03:40:56 -05:00
scope :merged , - > { with_state ( :merged ) }
2013-04-25 10:15:33 -04:00
scope :by_branch , - > ( branch_name ) { where ( " (source_branch LIKE :branch) OR (target_branch LIKE :branch) " , branch : branch_name ) }
2013-02-20 08:37:20 -05:00
scope :cared , - > ( user ) { where ( 'assignee_id = :user OR author_id = :user' , user : user . id ) }
2013-02-26 03:38:40 -05:00
scope :by_milestone , - > ( milestone ) { where ( milestone_id : milestone ) }
2013-04-25 10:15:33 -04:00
scope :in_projects , - > ( project_ids ) { where ( " source_project_id in (:project_ids) OR target_project_id in (:project_ids) " , project_ids : project_ids ) }
2013-08-08 10:29:31 -04:00
scope :of_projects , - > ( ids ) { where ( target_project_id : ids ) }
2013-02-21 07:11:24 -05:00
# Closed scope for merge request should return
# both merged and closed mr's
scope :closed , - > { with_states ( :closed , :merged ) }
2012-03-13 17:54:49 -04:00
def validate_branches
2013-04-25 10:15:33 -04:00
if target_project == source_project && target_branch == source_branch
errors . add :branch_conflict , " You can not use same project/branch for source and target "
2012-03-13 17:54:49 -04:00
end
2013-06-14 08:03:22 -04:00
2013-06-14 10:19:26 -04:00
if opened? || reopened?
2013-06-26 16:45:57 -04:00
similar_mrs = self . target_project . merge_requests . where ( source_branch : source_branch , target_branch : target_branch , source_project_id : source_project . id ) . opened
2013-06-14 10:19:26 -04:00
similar_mrs = similar_mrs . where ( 'id not in (?)' , self . id ) if self . id
2013-06-14 08:17:47 -04:00
2013-06-14 10:19:26 -04:00
if similar_mrs . any?
2013-06-26 16:45:57 -04:00
errors . add :base , " Cannot Create: This merge request already exists: #{ similar_mrs . pluck ( :title ) } "
2013-06-14 10:19:26 -04:00
end
2013-06-14 08:03:22 -04:00
end
2012-03-13 17:54:49 -04:00
end
2012-03-15 19:45:46 -04:00
def reload_code
self . reloaded_commits
self . reloaded_diffs
end
2012-03-30 01:05:04 -04:00
def check_if_can_be_merged
2013-02-20 08:15:01 -05:00
if Gitlab :: Satellite :: MergeAction . new ( self . author , self ) . can_be_merged?
mark_as_mergeable
else
mark_as_unmergeable
end
2012-03-29 17:27:42 -04:00
end
2011-11-29 13:06:37 -05:00
def diffs
2013-07-08 13:12:35 -04:00
@diffs || = ( load_diffs ( st_diffs ) || [ ] )
2012-03-14 18:57:43 -04:00
end
def reloaded_diffs
2013-02-18 03:40:56 -05:00
if opened? && unmerged_diffs . any?
2013-04-15 12:01:36 -04:00
self . st_diffs = dump_diffs ( unmerged_diffs )
2012-07-05 15:59:37 -04:00
self . save
2012-03-14 18:57:43 -04:00
end
2012-07-05 15:59:37 -04:00
end
def broken_diffs?
2013-05-22 02:50:09 -04:00
diffs == broken_diffs
2013-07-08 13:12:35 -04:00
rescue
true
2012-07-05 15:59:37 -04:00
end
def valid_diffs?
! broken_diffs?
2012-03-14 18:57:43 -04:00
end
def unmerged_diffs
2013-08-08 05:22:09 -04:00
diffs = if for_fork?
Gitlab :: Satellite :: MergeAction . new ( author , self ) . diffs_between_satellite
else
2013-08-08 05:44:33 -04:00
Gitlab :: Git :: Diff . between ( target_project . repository , source_branch , target_branch )
2013-08-08 05:22:09 -04:00
end
2013-06-06 17:22:36 -04:00
diffs || = [ ]
2013-04-25 10:15:33 -04:00
diffs
2011-11-29 13:06:37 -05:00
end
def last_commit
2012-03-14 18:57:43 -04:00
commits . first
2011-11-29 13:06:37 -05:00
end
2012-03-14 18:51:03 -04:00
2012-03-15 17:32:00 -04:00
def merge_event
2013-04-25 10:15:33 -04:00
self . target_project . events . where ( target_id : self . id , target_type : " MergeRequest " , action : Event :: MERGED ) . last
2012-03-15 17:32:00 -04:00
end
2012-03-15 19:45:46 -04:00
def closed_event
2013-04-25 10:15:33 -04:00
self . target_project . events . where ( target_id : self . id , target_type : " MergeRequest " , action : Event :: CLOSED ) . last
2012-03-15 19:45:46 -04:00
end
2012-03-14 18:57:43 -04:00
def commits
2013-04-02 15:37:20 -04:00
load_commits ( st_commits || [ ] )
2012-03-14 18:57:43 -04:00
end
def probably_merged?
2012-08-08 21:40:57 -04:00
unmerged_commits . empty? &&
2013-07-16 17:14:03 -04:00
commits . any? && opened?
2012-03-29 17:27:42 -04:00
end
2012-08-08 21:40:57 -04:00
def reloaded_commits
2013-02-18 03:40:56 -05:00
if opened? && unmerged_commits . any?
2013-04-02 14:30:36 -04:00
self . st_commits = dump_commits ( unmerged_commits )
2012-03-14 18:57:43 -04:00
save
2013-04-25 10:15:33 -04:00
2012-03-14 18:57:43 -04:00
end
commits
end
def unmerged_commits
2013-07-16 17:14:03 -04:00
if for_fork?
commits = Gitlab :: Satellite :: MergeAction . new ( self . author , self ) . commits_between
else
commits = target_project . repository . commits_between ( self . target_branch , self . source_branch )
end
2013-08-08 05:44:33 -04:00
2013-04-25 10:15:33 -04:00
if commits . present?
commits = Commit . decorate ( commits ) .
2013-07-16 17:14:03 -04:00
sort_by ( & :created_at ) .
reverse
2013-04-25 10:15:33 -04:00
end
commits
2012-03-14 18:57:43 -04:00
end
2012-03-15 19:45:46 -04:00
def merge! ( user_id )
2013-02-27 10:48:51 -05:00
self . author_id_of_changes = user_id
2013-02-18 03:40:56 -05:00
self . merge
2012-03-15 19:45:46 -04:00
end
2012-03-30 01:05:04 -04:00
2012-03-30 01:15:04 -04:00
def automerge! ( current_user )
2012-10-25 18:26:47 -04:00
if Gitlab :: Satellite :: MergeAction . new ( current_user , self ) . merge! && self . unmerged_commits . empty?
2012-03-30 01:05:04 -04:00
self . merge! ( current_user . id )
true
end
2012-06-04 17:08:41 -04:00
rescue
2013-02-20 08:15:01 -05:00
mark_as_unmergeable
2012-03-30 01:05:04 -04:00
false
end
2012-07-04 18:26:23 -04:00
2012-10-04 18:25:40 -04:00
def mr_and_commit_notes
commit_ids = commits . map ( & :id )
2012-12-18 13:02:00 -05:00
Note . where ( " (noteable_type = 'MergeRequest' AND noteable_id = :mr_id) OR (noteable_type = 'Commit' AND commit_id IN (:commit_ids)) " , mr_id : id , commit_ids : commit_ids )
2012-10-04 18:25:40 -04:00
end
2013-06-06 17:22:36 -04:00
2012-11-22 18:55:57 -05:00
# Returns the raw diff for this merge request
#
# see "git diff"
2013-04-25 10:15:33 -04:00
def to_diff ( current_user )
Gitlab :: Satellite :: MergeAction . new ( current_user , self ) . diff_in_satellite
2012-11-22 18:55:57 -05:00
end
# Returns the commit as a series of email patches.
#
# see "git format-patch"
2013-04-25 10:15:33 -04:00
def to_patch ( current_user )
Gitlab :: Satellite :: MergeAction . new ( current_user , self ) . format_patch
2012-11-22 18:55:57 -05:00
end
2012-12-10 22:14:05 -05:00
def last_commit_short_sha
@last_commit_short_sha || = last_commit . sha [ 0 .. 10 ]
end
2013-04-02 14:30:36 -04:00
2013-04-25 10:15:33 -04:00
def for_fork?
target_project != source_project
end
def disallow_source_branch_removal?
( source_project . root_ref? source_branch ) || for_fork?
end
2013-04-02 14:30:36 -04:00
private
def dump_commits ( commits )
commits . map ( & :to_hash )
end
def load_commits ( array )
array . map { | hash | Commit . new ( Gitlab :: Git :: Commit . new ( hash ) ) }
end
2013-04-15 12:01:36 -04:00
def dump_diffs ( diffs )
2013-05-22 07:06:08 -04:00
if diffs == broken_diffs
2013-05-22 02:50:09 -04:00
broken_diffs
2013-05-22 07:06:08 -04:00
elsif diffs . respond_to? ( :map )
2013-05-22 02:50:09 -04:00
diffs . map ( & :to_hash )
end
end
def load_diffs ( raw )
if raw == broken_diffs
broken_diffs
2013-05-22 07:06:08 -04:00
elsif raw . respond_to? ( :map )
2013-05-22 02:50:09 -04:00
raw . map { | hash | Gitlab :: Git :: Diff . new ( hash ) }
end
2013-04-15 12:01:36 -04:00
end
2013-05-22 02:50:09 -04:00
def broken_diffs
[ Gitlab :: Git :: Diff :: BROKEN_DIFF ]
2013-04-15 12:01:36 -04:00
end
2011-11-28 02:39:43 -05:00
end