2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
class Projects::Ci::LintsController < Projects::ApplicationController
|
|
|
|
before_action :authorize_create_pipeline!
|
|
|
|
|
|
|
|
def show
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
|
|
|
@content = params[:content]
|
2019-02-15 15:39:39 +05:30
|
|
|
@error = Gitlab::Ci::YamlProcessor.validation_message(@content, yaml_processor_options)
|
2018-05-09 12:01:36 +05:30
|
|
|
@status = @error.blank?
|
|
|
|
|
|
|
|
if @error.blank?
|
|
|
|
@config_processor = Gitlab::Ci::YamlProcessor.new(@content, yaml_processor_options)
|
|
|
|
@stages = @config_processor.stages
|
|
|
|
@builds = @config_processor.builds
|
|
|
|
@jobs = @config_processor.jobs
|
|
|
|
end
|
|
|
|
|
|
|
|
render :show
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def yaml_processor_options
|
2019-02-15 15:39:39 +05:30
|
|
|
{
|
|
|
|
project: @project,
|
|
|
|
user: current_user,
|
|
|
|
sha: project.repository.commit.sha
|
|
|
|
}
|
2018-05-09 12:01:36 +05:30
|
|
|
end
|
|
|
|
end
|