debian-mirror-gitlab/lib/tasks/gitlab/graphql.rake

89 lines
2.6 KiB
Ruby
Raw Normal View History

2019-09-30 21:07:59 +05:30
# frozen_string_literal: true
return if Rails.env.production?
2019-12-26 22:10:19 +05:30
require 'graphql/rake_task'
2019-09-30 21:07:59 +05:30
namespace :gitlab do
2019-12-04 20:38:33 +05:30
OUTPUT_DIR = Rails.root.join("doc/api/graphql/reference")
TEMPLATES_DIR = 'lib/gitlab/graphql/docs/templates/'
2019-09-30 21:07:59 +05:30
2020-04-08 14:13:33 +05:30
# Make all feature flags enabled so that all feature flag
# controlled fields are considered visible and are output.
# Also avoids pipeline failures in case developer
# dumps schema with flags disabled locally before pushing
task enable_feature_flags: :environment do
class Feature
def self.enabled?(*args)
true
end
end
end
2019-12-26 22:10:19 +05:30
# Defines tasks for dumping the GraphQL schema:
# - gitlab:graphql:schema:dump
# - gitlab:graphql:schema:idl
# - gitlab:graphql:schema:json
GraphQL::RakeTask.new(
schema_name: 'GitlabSchema',
2020-04-08 14:13:33 +05:30
dependencies: [:environment, :enable_feature_flags],
2019-12-26 22:10:19 +05:30
directory: OUTPUT_DIR,
idl_outfile: "gitlab_schema.graphql",
json_outfile: "gitlab_schema.json"
)
2019-09-30 21:07:59 +05:30
namespace :graphql do
2020-03-13 15:44:24 +05:30
desc 'GitLab | GraphQL | Generate GraphQL docs'
2020-04-08 14:13:33 +05:30
task compile_docs: [:environment, :enable_feature_flags] do
2019-09-30 21:07:59 +05:30
renderer = Gitlab::Graphql::Docs::Renderer.new(GitlabSchema.graphql_definition, render_options)
2019-12-21 20:55:43 +05:30
renderer.write
2019-09-30 21:07:59 +05:30
puts "Documentation compiled."
end
2019-12-21 20:55:43 +05:30
2020-03-13 15:44:24 +05:30
desc 'GitLab | GraphQL | Check if GraphQL docs are up to date'
2020-04-08 14:13:33 +05:30
task check_docs: [:environment, :enable_feature_flags] do
2019-12-21 20:55:43 +05:30
renderer = Gitlab::Graphql::Docs::Renderer.new(GitlabSchema.graphql_definition, render_options)
doc = File.read(Rails.root.join(OUTPUT_DIR, 'index.md'))
if doc == renderer.contents
puts "GraphQL documentation is up to date"
else
2019-12-26 22:10:19 +05:30
format_output('GraphQL documentation is outdated! Please update it by running `bundle exec rake gitlab:graphql:compile_docs`.')
abort
end
end
2020-03-13 15:44:24 +05:30
desc 'GitLab | GraphQL | Check if GraphQL schemas are up to date'
2020-04-08 14:13:33 +05:30
task check_schema: [:environment, :enable_feature_flags] do
2019-12-26 22:10:19 +05:30
idl_doc = File.read(Rails.root.join(OUTPUT_DIR, 'gitlab_schema.graphql'))
json_doc = File.read(Rails.root.join(OUTPUT_DIR, 'gitlab_schema.json'))
if idl_doc == GitlabSchema.to_definition && json_doc == GitlabSchema.to_json
puts "GraphQL schema is up to date"
else
format_output('GraphQL schema is outdated! Please update it by running `bundle exec rake gitlab:graphql:schema:dump`.')
2019-12-21 20:55:43 +05:30
abort
end
end
2019-09-30 21:07:59 +05:30
end
end
def render_options
{
output_dir: OUTPUT_DIR,
template: Rails.root.join(TEMPLATES_DIR, 'default.md.haml')
}
end
2019-12-26 22:10:19 +05:30
def format_output(str)
heading = '#' * 10
puts heading
puts '#'
puts "# #{str}"
puts '#'
puts heading
end