27 lines
650 B
Ruby
27 lines
650 B
Ruby
# frozen_string_literal: true
|
|
|
|
module BlobViewer
|
|
class GitlabCiYml < Base
|
|
include ServerSide
|
|
include Auxiliary
|
|
|
|
self.partial_name = 'gitlab_ci_yml'
|
|
self.loading_partial_name = 'gitlab_ci_yml_loading'
|
|
self.file_types = %i(gitlab_ci)
|
|
self.binary = false
|
|
|
|
def validation_message(opts)
|
|
return @validation_message if defined?(@validation_message)
|
|
|
|
prepare!
|
|
|
|
@validation_message = Gitlab::Ci::Lint
|
|
.new(project: opts[:project], current_user: opts[:user], sha: opts[:sha])
|
|
.validate(blob.data).errors.first
|
|
end
|
|
|
|
def valid?(opts)
|
|
validation_message(opts).blank?
|
|
end
|
|
end
|
|
end
|