Files
Christophe Bliard 8fa8584538 Run rubocop --autocorrect on all files
Only the safe cops have run. rubocop version is 1.59.0.
2024-01-05 15:27:09 +01:00

128 lines
3.5 KiB
Ruby

module API
module OpenAPI
extend self
def spec
spec = if Rails.env.development?
load_spec
else
memoized_spec
end
spec["servers"] = [
{
"description" => "This server",
"url" => "#{Setting.protocol}://#{Setting.host_name}/"
}
]
spec
end
def assemble_spec(file_path)
spec = YAML.safe_load_file(file_path.to_s)
substitute_refs(spec, path: file_path.parent, root_path: file_path.parent)
rescue Psych::SyntaxError => e
raise "Failed to load #{file_path}: #{e.class} #{e.message}"
end
private
def memoized_spec
@memoized_spec ||= load_spec
end
def load_spec
spec_path = Rails.application.root.join("docs/api/apiv3/openapi-spec.yml")
if spec_path.exist?
assemble_spec spec_path
else
raise "Could not find openapi-spec.yml under #{spec_path}"
end
end
def substitute_refs(spec, path:, root_path:, root_spec: spec)
case spec
when Hash
substitute_refs_in_hash spec, path:, root_path:, root_spec:
when Array
spec.map { |s| substitute_refs s, path:, root_path:, root_spec: }
else
spec
end
end
def substitute_refs_in_hash(spec, path:, root_path:, root_spec: spec)
if spec.size == 1 && spec.keys.first == "$ref"
ref_path = path.join spec.values.first
ref_value = YAML.safe_load_file(ref_path.to_s)
resolve_refs ref_value, path: ref_path.parent, root_path:, root_spec:
else
spec.transform_values { |v| substitute_refs(v, path:, root_path:, root_spec:) }
end
rescue Psych::SyntaxError => e
raise "Failed to load #{ref_path}: #{e.class} #{e.message}"
end
def resolve_refs(spec, path:, root_path:, root_spec:)
case spec
when Hash
resolve_refs_in_hash spec, path:, root_path:, root_spec:
when Array
spec.map { |v| resolve_refs v, path:, root_path:, root_spec: }
else
spec
end
end
def resolve_refs_in_hash(spec, path:, root_path:, root_spec:)
if spec.size == 1 && spec.keys.first == "$ref"
resolve_ref(spec, path:, root_path:, root_spec:)
else
spec.transform_values { |v| resolve_refs v, path:, root_path:, root_spec: }
end
end
def resolve_ref(spec, path:, root_path:, root_spec:)
ref_path = spec.values.first
if ref_path.start_with?(".")
{ spec.keys.first => schema_ref(ref_path, path:, root_path:, root_spec:) }
else
spec
end
end
def schema_ref(ref_path, path:, root_path:, root_spec:)
name = schema_name(ref_path, path:, root_path:, root_spec:)
path.join(ref_path).parent.join(name).to_s.sub(root_path.to_s, "#")
end
def schema_file(ref_path, path:, root_path:)
path.join(ref_path).to_s.sub root_path.to_s, "."
end
def schema_path(ref_path, path:, root_path:)
path.join(ref_path).parent.to_s.sub(root_path.to_s, "").split("/").drop 1
end
def schema_name(ref_path, path:, root_path:, root_spec:)
file = schema_file(ref_path, path:, root_path:)
spec_path = schema_path(ref_path, path:, root_path:)
spec_files = root_spec.dig(*spec_path)
raise "Path not defined #{spec_path}" unless spec_files
spec_file = spec_files.find { |_k, v| v["$ref"] == file }&.first
raise "'#{file}' not defined under #{spec_path.join('.')} in `docs/api/apiv3/openapi-spec.yml`" unless spec_file
spec_file
end
end
end