2019-02-15 15:39:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
module Gitlab
|
|
|
|
module Graphql
|
|
|
|
class Variables
|
|
|
|
Invalid = Class.new(Gitlab::Graphql::StandardGraphqlError)
|
|
|
|
|
|
|
|
def initialize(param)
|
|
|
|
@param = param
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_h
|
|
|
|
ensure_hash(@param)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
# Handle form data, JSON body, or a blank value
|
|
|
|
def ensure_hash(ambiguous_param)
|
|
|
|
case ambiguous_param
|
|
|
|
when String
|
|
|
|
if ambiguous_param.present?
|
2020-05-24 23:13:21 +05:30
|
|
|
ensure_hash(Gitlab::Json.parse(ambiguous_param))
|
2018-11-08 19:23:39 +05:30
|
|
|
else
|
|
|
|
{}
|
|
|
|
end
|
2021-12-11 22:18:48 +05:30
|
|
|
when Hash
|
2018-11-08 19:23:39 +05:30
|
|
|
ambiguous_param
|
2021-12-11 22:18:48 +05:30
|
|
|
when ActionController::Parameters
|
|
|
|
# We can and have to trust the "Parameters" because `graphql-ruby` handles this hash safely
|
|
|
|
# Also, `graphql-ruby` uses hash-specific methods, for example `size`:
|
|
|
|
# https://sourcegraph.com/github.com/rmosolgo/graphql-ruby@61232b03412df6685406fc46c414e11d3f447817/-/blob/lib/graphql/query.rb?L304
|
|
|
|
ambiguous_param.to_unsafe_h
|
2018-11-08 19:23:39 +05:30
|
|
|
when nil
|
|
|
|
{}
|
|
|
|
else
|
|
|
|
raise Invalid, "Unexpected parameter: #{ambiguous_param}"
|
|
|
|
end
|
|
|
|
rescue JSON::ParserError => e
|
2021-06-08 01:23:25 +05:30
|
|
|
raise Invalid, e
|
2018-11-08 19:23:39 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|