debian-mirror-gitlab/app/models/blob_viewer/gitlab_ci_yml.rb

26 lines
621 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2017-09-10 17:25:29 +05:30
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
2018-12-05 23:21:45 +05:30
def validation_message(project, sha)
2017-09-10 17:25:29 +05:30
return @validation_message if defined?(@validation_message)
prepare!
2018-12-05 23:21:45 +05:30
@validation_message = Gitlab::Ci::YamlProcessor.validation_message(blob.data, { project: project, sha: sha })
2017-09-10 17:25:29 +05:30
end
2018-12-05 23:21:45 +05:30
def valid?(project, sha)
validation_message(project, sha).blank?
2017-09-10 17:25:29 +05:30
end
end
end