57 lines
1.3 KiB
Ruby
57 lines
1.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module ResolvesSnippets
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
type Types::SnippetType, null: false
|
|
|
|
argument :ids, [GraphQL::ID_TYPE],
|
|
required: false,
|
|
description: 'Array of global snippet ids, e.g., "gid://gitlab/ProjectSnippet/1"'
|
|
|
|
argument :visibility, Types::Snippets::VisibilityScopesEnum,
|
|
required: false,
|
|
description: 'The visibility of the snippet'
|
|
end
|
|
|
|
def resolve(**args)
|
|
resolve_snippets(args)
|
|
end
|
|
|
|
private
|
|
|
|
def resolve_snippets(args)
|
|
SnippetsFinder.new(context[:current_user], snippet_finder_params(args)).execute
|
|
end
|
|
|
|
def snippet_finder_params(args)
|
|
{
|
|
ids: resolve_ids(args[:ids]),
|
|
scope: args[:visibility]
|
|
}.merge(options_by_type(args[:type]))
|
|
end
|
|
|
|
def resolve_ids(ids)
|
|
Array.wrap(ids).map { |id| resolve_gid(id, :id) }
|
|
end
|
|
|
|
def resolve_gid(gid, argument)
|
|
return unless gid.present?
|
|
|
|
GlobalID.parse(gid)&.model_id.tap do |id|
|
|
raise Gitlab::Graphql::Errors::ArgumentError, "Invalid global id format for param #{argument}" if id.nil?
|
|
end
|
|
end
|
|
|
|
def options_by_type(type)
|
|
case type
|
|
when 'personal'
|
|
{ only_personal: true }
|
|
when 'project'
|
|
{ only_project: true }
|
|
else
|
|
{}
|
|
end
|
|
end
|
|
end
|