2016-05-09 19:26:13 -04:00
|
|
|
module Ci
|
|
|
|
class CreatePipelineService < BaseService
|
2016-08-11 09:22:35 -04:00
|
|
|
attr_reader :pipeline
|
2016-05-18 14:02:10 -04:00
|
|
|
|
2017-05-07 18:35:56 -04:00
|
|
|
def execute(ignore_skip_ci: false, save_on_errors: true, trigger_request: nil, schedule: nil)
|
2016-08-11 09:22:35 -04:00
|
|
|
@pipeline = Ci::Pipeline.new(
|
|
|
|
project: project,
|
|
|
|
ref: ref,
|
|
|
|
sha: sha,
|
|
|
|
before_sha: before_sha,
|
|
|
|
tag: tag?,
|
|
|
|
trigger_requests: Array(trigger_request),
|
2017-05-07 18:35:56 -04:00
|
|
|
user: current_user,
|
|
|
|
pipeline_schedule: schedule
|
2016-08-11 09:22:35 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
unless project.builds_enabled?
|
|
|
|
return error('Pipeline is disabled')
|
|
|
|
end
|
|
|
|
|
|
|
|
unless trigger_request || can?(current_user, :create_pipeline, project)
|
|
|
|
return error('Insufficient permissions to create a new pipeline')
|
2016-05-09 19:26:13 -04:00
|
|
|
end
|
|
|
|
|
2016-08-11 09:22:35 -04:00
|
|
|
unless branch? || tag?
|
|
|
|
return error('Reference not found')
|
2016-05-09 19:26:13 -04:00
|
|
|
end
|
|
|
|
|
2016-08-11 09:22:35 -04:00
|
|
|
unless commit
|
|
|
|
return error('Commit not found')
|
2016-05-09 19:26:13 -04:00
|
|
|
end
|
|
|
|
|
2016-06-02 06:39:15 -04:00
|
|
|
unless pipeline.config_processor
|
2016-08-11 09:22:35 -04:00
|
|
|
unless pipeline.ci_yaml_file
|
|
|
|
return error('Missing .gitlab-ci.yml file')
|
|
|
|
end
|
|
|
|
return error(pipeline.yaml_errors, save: save_on_errors)
|
2016-06-02 06:39:15 -04:00
|
|
|
end
|
2016-05-14 20:47:16 -04:00
|
|
|
|
2016-08-11 09:22:35 -04:00
|
|
|
if !ignore_skip_ci && skip_ci?
|
2016-08-11 14:54:02 -04:00
|
|
|
pipeline.skip if save_on_errors
|
|
|
|
return pipeline
|
2016-08-11 09:22:35 -04:00
|
|
|
end
|
2016-05-09 19:26:13 -04:00
|
|
|
|
2016-08-11 09:22:35 -04:00
|
|
|
unless pipeline.config_builds_attributes.present?
|
|
|
|
return error('No builds for this pipeline.')
|
2016-05-09 19:26:13 -04:00
|
|
|
end
|
|
|
|
|
2016-11-24 09:58:31 -05:00
|
|
|
Ci::Pipeline.transaction do
|
2017-03-17 18:14:27 -04:00
|
|
|
update_merge_requests_head_pipeline if pipeline.save
|
2016-11-24 09:58:31 -05:00
|
|
|
|
|
|
|
Ci::CreatePipelineBuildsService
|
|
|
|
.new(project, current_user)
|
|
|
|
.execute(pipeline)
|
|
|
|
end
|
|
|
|
|
2017-02-19 17:17:24 -05:00
|
|
|
cancel_pending_pipelines if project.auto_cancel_pending_pipelines?
|
|
|
|
|
2016-11-24 09:58:31 -05:00
|
|
|
pipeline.tap(&:process!)
|
2016-05-09 19:26:13 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-05-25 17:14:40 -04:00
|
|
|
def update_merge_requests_head_pipeline
|
|
|
|
merge_requests = MergeRequest.where(source_branch: @pipeline.ref, source_project: @pipeline.project)
|
|
|
|
|
|
|
|
merge_requests = merge_requests.select do |mr|
|
|
|
|
mr.diff_head_sha == @pipeline.sha
|
|
|
|
end
|
|
|
|
|
|
|
|
MergeRequest.where(id: merge_requests).update_all(head_pipeline_id: @pipeline.id)
|
|
|
|
end
|
|
|
|
|
2016-08-11 09:22:35 -04:00
|
|
|
def skip_ci?
|
2017-02-10 05:32:59 -05:00
|
|
|
return false unless pipeline.git_commit_message
|
|
|
|
pipeline.git_commit_message =~ /\[(ci[ _-]skip|skip[ _-]ci)\]/i
|
2016-05-09 19:26:13 -04:00
|
|
|
end
|
|
|
|
|
2017-02-19 17:17:24 -05:00
|
|
|
def cancel_pending_pipelines
|
2017-03-18 06:04:14 -04:00
|
|
|
Gitlab::OptimisticLocking.retry_lock(auto_cancelable_pipelines) do |cancelables|
|
2017-02-19 17:17:24 -05:00
|
|
|
cancelables.find_each do |cancelable|
|
2017-04-06 09:32:56 -04:00
|
|
|
cancelable.auto_cancel_running(pipeline)
|
2017-02-19 17:17:24 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-03-18 06:04:14 -04:00
|
|
|
def auto_cancelable_pipelines
|
|
|
|
project.pipelines
|
|
|
|
.where(ref: pipeline.ref)
|
|
|
|
.where.not(id: pipeline.id)
|
|
|
|
.where.not(sha: project.repository.sha_from_ref(pipeline.ref))
|
|
|
|
.created_or_pending
|
|
|
|
end
|
|
|
|
|
2016-05-09 19:26:13 -04:00
|
|
|
def commit
|
2016-08-11 09:22:35 -04:00
|
|
|
@commit ||= project.commit(origin_sha || origin_ref)
|
|
|
|
end
|
|
|
|
|
|
|
|
def sha
|
|
|
|
commit.try(:id)
|
|
|
|
end
|
|
|
|
|
|
|
|
def before_sha
|
|
|
|
params[:checkout_sha] || params[:before] || Gitlab::Git::BLANK_SHA
|
|
|
|
end
|
|
|
|
|
|
|
|
def origin_sha
|
|
|
|
params[:checkout_sha] || params[:after]
|
|
|
|
end
|
|
|
|
|
|
|
|
def origin_ref
|
|
|
|
params[:ref]
|
|
|
|
end
|
|
|
|
|
|
|
|
def branch?
|
|
|
|
project.repository.ref_exists?(Gitlab::Git::BRANCH_REF_PREFIX + ref)
|
|
|
|
end
|
|
|
|
|
|
|
|
def tag?
|
|
|
|
project.repository.ref_exists?(Gitlab::Git::TAG_REF_PREFIX + ref)
|
|
|
|
end
|
|
|
|
|
|
|
|
def ref
|
|
|
|
Gitlab::Git.ref_name(origin_ref)
|
|
|
|
end
|
|
|
|
|
|
|
|
def valid_sha?
|
|
|
|
origin_sha && origin_sha != Gitlab::Git::BLANK_SHA
|
|
|
|
end
|
|
|
|
|
|
|
|
def error(message, save: false)
|
|
|
|
pipeline.errors.add(:base, message)
|
2016-08-11 14:54:02 -04:00
|
|
|
pipeline.drop if save
|
2016-08-11 09:22:35 -04:00
|
|
|
pipeline
|
2016-05-09 19:26:13 -04:00
|
|
|
end
|
|
|
|
end
|
2016-05-12 14:08:18 -04:00
|
|
|
end
|