2016-02-15 09:51:00 -05:00
|
|
|
class GitPushService < BaseService
|
|
|
|
attr_accessor :push_data, :push_commits
|
2015-01-25 10:33:54 -05:00
|
|
|
include Gitlab::CurrentSettings
|
|
|
|
include Gitlab::Access
|
2013-02-25 14:21:38 -05:00
|
|
|
|
|
|
|
# This method will be called after each git update
|
2016-02-15 09:51:00 -05:00
|
|
|
# and only if the provided user and project are present in GitLab.
|
2013-02-25 14:21:38 -05:00
|
|
|
#
|
|
|
|
# All callbacks for post receive action should be placed here.
|
|
|
|
#
|
2013-05-30 19:16:49 -04:00
|
|
|
# Next, this method:
|
|
|
|
# 1. Creates the push event
|
2015-08-11 08:33:31 -04:00
|
|
|
# 2. Updates merge requests
|
|
|
|
# 3. Recognizes cross-references from commit messages
|
2016-03-10 14:48:29 -05:00
|
|
|
# 4. Executes the project's webhooks
|
2015-08-11 08:33:31 -04:00
|
|
|
# 5. Executes the project's services
|
2016-03-03 05:51:48 -05:00
|
|
|
# 6. Checks if the project's main language has changed
|
2013-02-25 14:21:38 -05:00
|
|
|
#
|
2016-02-11 06:50:27 -05:00
|
|
|
def execute
|
2016-04-28 19:48:37 -04:00
|
|
|
@project.repository.after_create if @project.empty_repo?
|
2016-11-18 08:04:18 -05:00
|
|
|
@project.repository.after_push_commit(branch_name)
|
2016-02-08 06:50:55 -05:00
|
|
|
|
2016-02-11 06:50:27 -05:00
|
|
|
if push_remove_branch?
|
2016-11-11 04:16:03 -05:00
|
|
|
@project.repository.after_remove_branch
|
2014-12-05 16:56:43 -05:00
|
|
|
@push_commits = []
|
2016-02-11 06:50:27 -05:00
|
|
|
elsif push_to_new_branch?
|
2016-02-23 06:02:59 -05:00
|
|
|
@project.repository.after_create_branch
|
2016-02-08 06:50:55 -05:00
|
|
|
|
2014-12-05 16:56:43 -05:00
|
|
|
# Re-find the pushed commits.
|
2016-02-11 06:50:27 -05:00
|
|
|
if is_default_branch?
|
2014-12-05 16:56:43 -05:00
|
|
|
# Initial push to the default branch. Take the full history of that branch as "newly pushed".
|
2016-02-11 06:50:27 -05:00
|
|
|
process_default_branch
|
2014-12-05 16:56:43 -05:00
|
|
|
else
|
|
|
|
# Use the pushed commits that aren't reachable by the default branch
|
|
|
|
# as a heuristic. This may include more commits than are actually pushed, but
|
2016-02-12 03:16:19 -05:00
|
|
|
# that shouldn't matter because we check for existing cross-references later.
|
2016-02-15 09:51:00 -05:00
|
|
|
@push_commits = @project.repository.commits_between(@project.default_branch, params[:newrev])
|
2014-12-05 16:56:43 -05:00
|
|
|
|
|
|
|
# don't process commits for the initial push to the default branch
|
2016-02-11 06:50:27 -05:00
|
|
|
process_commit_messages
|
2013-05-30 19:16:49 -04:00
|
|
|
end
|
2016-02-11 06:50:27 -05:00
|
|
|
elsif push_to_existing_branch?
|
2014-12-05 16:56:43 -05:00
|
|
|
# Collect data for this git push
|
2016-02-15 09:51:00 -05:00
|
|
|
@push_commits = @project.repository.commits_between(params[:oldrev], params[:newrev])
|
2016-02-11 06:50:27 -05:00
|
|
|
process_commit_messages
|
2016-03-14 19:33:00 -04:00
|
|
|
|
|
|
|
# Update the bare repositories info/attributes file using the contents of the default branches
|
|
|
|
# .gitattributes file
|
|
|
|
update_gitattributes if is_default_branch?
|
2014-12-05 16:56:43 -05:00
|
|
|
end
|
2016-03-14 19:33:00 -04:00
|
|
|
|
2016-11-11 04:33:16 -05:00
|
|
|
execute_related_hooks
|
2016-03-14 11:49:24 -04:00
|
|
|
perform_housekeeping
|
2016-11-18 08:04:18 -05:00
|
|
|
|
|
|
|
update_caches
|
2016-02-11 06:50:27 -05:00
|
|
|
end
|
2015-10-15 04:41:46 -04:00
|
|
|
|
2016-03-14 19:33:00 -04:00
|
|
|
def update_gitattributes
|
|
|
|
@project.repository.copy_gitattributes(params[:ref])
|
|
|
|
end
|
|
|
|
|
2016-11-18 08:04:18 -05:00
|
|
|
def update_caches
|
|
|
|
if is_default_branch?
|
|
|
|
paths = Set.new
|
|
|
|
|
|
|
|
@push_commits.each do |commit|
|
|
|
|
commit.raw_diffs(deltas_only: true).each do |diff|
|
|
|
|
paths << diff.new_path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
types = Gitlab::FileDetector.types_in_paths(paths.to_a)
|
|
|
|
else
|
|
|
|
types = []
|
|
|
|
end
|
|
|
|
|
|
|
|
ProjectCacheWorker.perform_async(@project.id, types)
|
|
|
|
end
|
|
|
|
|
2016-03-03 10:40:05 -05:00
|
|
|
protected
|
|
|
|
|
2016-11-11 04:33:16 -05:00
|
|
|
def execute_related_hooks
|
|
|
|
# Update merge requests that may be affected by this push. A new branch
|
|
|
|
# could cause the last commit of a merge request to change.
|
|
|
|
#
|
|
|
|
UpdateMergeRequestsWorker
|
|
|
|
.perform_async(@project.id, current_user.id, params[:oldrev], params[:newrev], params[:ref])
|
2015-03-13 09:55:38 -04:00
|
|
|
|
2016-02-15 09:51:00 -05:00
|
|
|
EventCreateService.new.push(@project, current_user, build_push_data)
|
2016-02-11 06:50:27 -05:00
|
|
|
@project.execute_hooks(build_push_data.dup, :push_hooks)
|
|
|
|
@project.execute_services(build_push_data.dup, :push_hooks)
|
2016-10-10 03:40:14 -04:00
|
|
|
Ci::CreatePipelineService.new(@project, current_user, build_push_data).execute
|
2016-11-11 04:33:16 -05:00
|
|
|
|
|
|
|
if push_remove_branch?
|
|
|
|
AfterBranchDeleteService
|
|
|
|
.new(project, current_user)
|
|
|
|
.execute(branch_name)
|
|
|
|
end
|
2013-02-25 14:21:38 -05:00
|
|
|
end
|
|
|
|
|
2016-03-14 11:49:24 -04:00
|
|
|
def perform_housekeeping
|
|
|
|
housekeeping = Projects::HousekeepingService.new(@project)
|
|
|
|
housekeeping.increment!
|
|
|
|
housekeeping.execute if housekeeping.needed?
|
2016-03-15 06:03:43 -04:00
|
|
|
rescue Projects::HousekeepingService::LeaseTaken
|
2016-03-14 11:49:24 -04:00
|
|
|
end
|
|
|
|
|
2016-02-11 06:50:27 -05:00
|
|
|
def process_default_branch
|
2016-02-15 09:51:00 -05:00
|
|
|
@push_commits = project.repository.commits(params[:newrev])
|
2016-02-11 06:50:27 -05:00
|
|
|
|
|
|
|
# Ensure HEAD points to the default branch in case it is not master
|
|
|
|
project.change_head(branch_name)
|
|
|
|
|
|
|
|
# Set protection on the default branch if configured
|
2016-09-17 23:33:41 -04:00
|
|
|
if current_application_settings.default_branch_protection != PROTECTION_NONE && !@project.protected_branch?(@project.default_branch)
|
2016-07-08 05:15:29 -04:00
|
|
|
|
2016-07-29 02:13:07 -04:00
|
|
|
params = {
|
|
|
|
name: @project.default_branch,
|
2016-08-16 04:04:56 -04:00
|
|
|
push_access_levels_attributes: [{
|
2016-07-29 02:13:07 -04:00
|
|
|
access_level: current_application_settings.default_branch_protection == PROTECTION_DEV_CAN_PUSH ? Gitlab::Access::DEVELOPER : Gitlab::Access::MASTER
|
2016-08-16 04:04:56 -04:00
|
|
|
}],
|
|
|
|
merge_access_levels_attributes: [{
|
2016-07-29 02:13:07 -04:00
|
|
|
access_level: current_application_settings.default_branch_protection == PROTECTION_DEV_CAN_MERGE ? Gitlab::Access::DEVELOPER : Gitlab::Access::MASTER
|
2016-08-16 04:04:56 -04:00
|
|
|
}]
|
2016-07-29 02:13:07 -04:00
|
|
|
}
|
|
|
|
|
2016-07-08 05:15:29 -04:00
|
|
|
ProtectedBranches::CreateService.new(@project, current_user, params).execute
|
2016-02-11 06:50:27 -05:00
|
|
|
end
|
|
|
|
end
|
2013-02-25 14:21:38 -05:00
|
|
|
|
2013-05-30 19:16:49 -04:00
|
|
|
# Extract any GFM references from the pushed commit messages. If the configured issue-closing regex is matched,
|
|
|
|
# close the referenced Issue. Create cross-reference Notes corresponding to any other referenced Mentionables.
|
2016-02-11 06:50:27 -05:00
|
|
|
def process_commit_messages
|
2016-10-07 09:20:57 -04:00
|
|
|
default = is_default_branch?
|
2014-11-12 06:59:25 -05:00
|
|
|
|
2015-10-12 05:54:46 -04:00
|
|
|
@push_commits.each do |commit|
|
2016-10-07 09:20:57 -04:00
|
|
|
ProcessCommitWorker.
|
2016-11-24 09:07:44 -05:00
|
|
|
perform_async(project.id, current_user.id, commit.to_hash, default)
|
2013-05-30 19:16:49 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-02-11 06:50:27 -05:00
|
|
|
def build_push_data
|
2016-08-12 04:09:29 -04:00
|
|
|
@push_data ||= Gitlab::DataBuilder::Push.build(
|
|
|
|
@project,
|
|
|
|
current_user,
|
|
|
|
params[:oldrev],
|
|
|
|
params[:newrev],
|
|
|
|
params[:ref],
|
|
|
|
push_commits)
|
2013-02-25 14:21:38 -05:00
|
|
|
end
|
|
|
|
|
2016-02-11 06:50:27 -05:00
|
|
|
def push_to_existing_branch?
|
2013-02-25 14:21:38 -05:00
|
|
|
# Return if this is not a push to a branch (e.g. new commits)
|
2016-02-15 09:51:00 -05:00
|
|
|
Gitlab::Git.branch_ref?(params[:ref]) && !Gitlab::Git.blank_ref?(params[:oldrev])
|
2013-05-30 19:16:49 -04:00
|
|
|
end
|
|
|
|
|
2016-02-11 06:50:27 -05:00
|
|
|
def push_to_new_branch?
|
2016-02-15 09:51:00 -05:00
|
|
|
Gitlab::Git.branch_ref?(params[:ref]) && Gitlab::Git.blank_ref?(params[:oldrev])
|
2013-05-30 19:16:49 -04:00
|
|
|
end
|
|
|
|
|
2016-02-11 06:50:27 -05:00
|
|
|
def push_remove_branch?
|
2016-02-15 09:51:00 -05:00
|
|
|
Gitlab::Git.branch_ref?(params[:ref]) && Gitlab::Git.blank_ref?(params[:newrev])
|
2014-09-26 03:46:48 -04:00
|
|
|
end
|
|
|
|
|
2016-02-11 06:50:27 -05:00
|
|
|
def push_to_branch?
|
2016-02-15 09:51:00 -05:00
|
|
|
Gitlab::Git.branch_ref?(params[:ref])
|
2013-08-27 06:56:04 -04:00
|
|
|
end
|
|
|
|
|
2016-02-11 06:50:27 -05:00
|
|
|
def is_default_branch?
|
2016-02-15 09:51:00 -05:00
|
|
|
Gitlab::Git.branch_ref?(params[:ref]) &&
|
2016-02-17 04:42:59 -05:00
|
|
|
(Gitlab::Git.ref_name(params[:ref]) == project.default_branch || project.default_branch.nil?)
|
2013-05-30 19:16:49 -04:00
|
|
|
end
|
|
|
|
|
2014-09-25 18:07:40 -04:00
|
|
|
def commit_user(commit)
|
2016-02-15 09:51:00 -05:00
|
|
|
commit.author || current_user
|
2013-02-25 14:21:38 -05:00
|
|
|
end
|
2016-02-11 06:50:27 -05:00
|
|
|
|
|
|
|
def branch_name
|
2016-02-17 04:42:59 -05:00
|
|
|
@branch_name ||= Gitlab::Git.ref_name(params[:ref])
|
2016-02-11 06:50:27 -05:00
|
|
|
end
|
2013-02-25 14:21:38 -05:00
|
|
|
end
|