gitlab-org--gitlab-foss/app/controllers/ci/lints_controller.rb

31 lines
716 B
Ruby

module Ci
class LintsController < ApplicationController
before_action :authenticate_user!
def show
end
def create
@content = params[:content]
if @content.blank?
@status = false
@error = "Please provide content of .gitlab-ci.yml"
else
@config_processor = Ci::GitlabCiYamlProcessor.new(@content)
@stages = @config_processor.stages
@builds = @config_processor.builds
@status = true
end
rescue Ci::GitlabCiYamlProcessor::ValidationError, Psych::SyntaxError => e
@error = e.message
@status = false
rescue
@error = 'Undefined error'
@status = false
ensure
render :show
end
end
end