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

28 lines
610 B
Ruby
Raw Normal View History

2015-08-25 21:42:46 -04:00
module Ci
2015-12-04 06:55:23 -05:00
class LintsController < ApplicationController
2015-09-14 07:37:18 -04:00
before_action :authenticate_user!
2015-08-25 21:42:46 -04:00
def show
end
def create
@content = params[:content]
2016-08-29 09:07:19 -04:00
@error = Ci::GitlabCiYamlProcessor.validation_message(@content)
2016-08-29 09:07:19 -04:00
unless @error.blank?
@status = @error.blank?
2015-08-25 21:42:46 -04:00
else
@config_processor = Ci::GitlabCiYamlProcessor.new(@content)
2015-08-25 21:42:46 -04:00
@stages = @config_processor.stages
@builds = @config_processor.builds
@status = true
end
rescue
@error = 'Undefined error'
2015-08-25 21:42:46 -04:00
@status = false
ensure
render :show
2015-08-25 21:42:46 -04:00
end
end
end