grape 1.0.0 → 1.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +346 -39
- data/LICENSE +1 -1
- data/README.md +658 -90
- data/UPGRADING.md +472 -17
- data/grape.gemspec +17 -6
- data/lib/grape/api/helpers.rb +2 -0
- data/lib/grape/api/instance.rb +279 -0
- data/lib/grape/api.rb +132 -176
- data/lib/grape/config.rb +34 -0
- data/lib/grape/content_types.rb +34 -0
- data/lib/grape/cookies.rb +4 -0
- data/lib/grape/dsl/api.rb +2 -0
- data/lib/grape/dsl/callbacks.rb +22 -0
- data/lib/grape/dsl/configuration.rb +2 -0
- data/lib/grape/dsl/desc.rb +44 -12
- data/lib/grape/dsl/headers.rb +2 -0
- data/lib/grape/dsl/helpers.rb +11 -6
- data/lib/grape/dsl/inside_route.rb +116 -36
- data/lib/grape/dsl/logger.rb +2 -0
- data/lib/grape/dsl/middleware.rb +12 -3
- data/lib/grape/dsl/parameters.rb +34 -16
- data/lib/grape/dsl/request_response.rb +13 -8
- data/lib/grape/dsl/routing.rb +19 -12
- data/lib/grape/dsl/settings.rb +22 -4
- data/lib/grape/dsl/validations.rb +24 -4
- data/lib/grape/eager_load.rb +20 -0
- data/lib/grape/endpoint.rb +66 -57
- data/lib/grape/error_formatter/base.rb +2 -0
- data/lib/grape/error_formatter/json.rb +6 -4
- data/lib/grape/error_formatter/txt.rb +10 -3
- data/lib/grape/error_formatter/xml.rb +6 -4
- data/lib/grape/error_formatter.rb +4 -2
- data/lib/grape/exceptions/base.rb +22 -14
- data/lib/grape/exceptions/empty_message_body.rb +11 -0
- data/lib/grape/exceptions/incompatible_option_values.rb +2 -1
- data/lib/grape/exceptions/invalid_accept_header.rb +2 -1
- data/lib/grape/exceptions/invalid_formatter.rb +2 -1
- data/lib/grape/exceptions/invalid_message_body.rb +2 -1
- data/lib/grape/exceptions/invalid_response.rb +11 -0
- data/lib/grape/exceptions/invalid_version_header.rb +2 -1
- data/lib/grape/exceptions/invalid_versioner_option.rb +2 -1
- data/lib/grape/exceptions/invalid_with_option_for_represent.rb +2 -1
- data/lib/grape/exceptions/method_not_allowed.rb +2 -1
- data/lib/grape/exceptions/missing_group_type.rb +2 -1
- data/lib/grape/exceptions/missing_mime_type.rb +2 -1
- data/lib/grape/exceptions/missing_option.rb +2 -1
- data/lib/grape/exceptions/missing_vendor_option.rb +2 -1
- data/lib/grape/exceptions/unknown_options.rb +2 -1
- data/lib/grape/exceptions/unknown_parameter.rb +2 -1
- data/lib/grape/exceptions/unknown_validator.rb +2 -1
- data/lib/grape/exceptions/unsupported_group_type.rb +2 -1
- data/lib/grape/exceptions/validation.rb +5 -4
- data/lib/grape/exceptions/validation_array_errors.rb +2 -0
- data/lib/grape/exceptions/validation_errors.rb +16 -13
- data/lib/grape/extensions/active_support/hash_with_indifferent_access.rb +4 -3
- data/lib/grape/extensions/deep_mergeable_hash.rb +2 -0
- data/lib/grape/extensions/deep_symbolize_hash.rb +2 -0
- data/lib/grape/extensions/hash.rb +2 -0
- data/lib/grape/extensions/hashie/mash.rb +2 -0
- data/lib/grape/formatter/json.rb +3 -0
- data/lib/grape/formatter/serializable_hash.rb +4 -1
- data/lib/grape/formatter/txt.rb +2 -0
- data/lib/grape/formatter/xml.rb +3 -0
- data/lib/grape/formatter.rb +5 -3
- data/lib/grape/http/headers.rb +50 -18
- data/lib/grape/locale/en.yml +3 -1
- data/lib/grape/middleware/auth/base.rb +7 -7
- data/lib/grape/middleware/auth/dsl.rb +2 -0
- data/lib/grape/middleware/auth/strategies.rb +2 -0
- data/lib/grape/middleware/auth/strategy_info.rb +2 -0
- data/lib/grape/middleware/base.rb +12 -7
- data/lib/grape/middleware/error.rb +75 -61
- data/lib/grape/middleware/filter.rb +2 -0
- data/lib/grape/middleware/formatter.rb +17 -13
- data/lib/grape/middleware/globals.rb +2 -0
- data/lib/grape/middleware/helpers.rb +12 -0
- data/lib/grape/middleware/stack.rb +15 -5
- data/lib/grape/middleware/versioner/accept_version_header.rb +5 -5
- data/lib/grape/middleware/versioner/header.rb +13 -9
- data/lib/grape/middleware/versioner/param.rb +4 -1
- data/lib/grape/middleware/versioner/parse_media_type_patch.rb +5 -1
- data/lib/grape/middleware/versioner/path.rb +5 -1
- data/lib/grape/middleware/versioner.rb +2 -0
- data/lib/grape/namespace.rb +15 -3
- data/lib/grape/parser/json.rb +3 -1
- data/lib/grape/parser/xml.rb +3 -1
- data/lib/grape/parser.rb +4 -2
- data/lib/grape/path.rb +16 -3
- data/lib/grape/presenters/presenter.rb +2 -0
- data/lib/grape/request.rb +19 -9
- data/lib/grape/router/attribute_translator.rb +41 -8
- data/lib/grape/router/pattern.rb +22 -18
- data/lib/grape/router/route.rb +16 -30
- data/lib/grape/router.rb +37 -28
- data/lib/grape/{serve_file → serve_stream}/file_body.rb +3 -1
- data/lib/grape/{serve_file → serve_stream}/sendfile_response.rb +3 -1
- data/lib/grape/{serve_file/file_response.rb → serve_stream/stream_response.rb} +10 -8
- data/lib/grape/util/base_inheritable.rb +43 -0
- data/lib/grape/util/cache.rb +20 -0
- data/lib/grape/util/endpoint_configuration.rb +8 -0
- data/lib/grape/util/env.rb +19 -17
- data/lib/grape/util/inheritable_setting.rb +3 -3
- data/lib/grape/util/inheritable_values.rb +7 -25
- data/lib/grape/util/json.rb +2 -0
- data/lib/grape/util/lazy_block.rb +27 -0
- data/lib/grape/util/lazy_object.rb +43 -0
- data/lib/grape/util/lazy_value.rb +99 -0
- data/lib/grape/util/registrable.rb +2 -0
- data/lib/grape/util/reverse_stackable_values.rb +10 -35
- data/lib/grape/util/stackable_values.rb +21 -34
- data/lib/grape/util/strict_hash_configuration.rb +2 -0
- data/lib/grape/util/xml.rb +2 -0
- data/lib/grape/validations/attributes_iterator.rb +16 -6
- data/lib/grape/validations/multiple_attributes_iterator.rb +13 -0
- data/lib/grape/validations/params_scope.rb +128 -66
- data/lib/grape/validations/single_attribute_iterator.rb +24 -0
- data/lib/grape/validations/types/array_coercer.rb +65 -0
- data/lib/grape/validations/types/build_coercer.rb +52 -46
- data/lib/grape/validations/types/custom_type_coercer.rb +30 -51
- data/lib/grape/validations/types/custom_type_collection_coercer.rb +56 -0
- data/lib/grape/validations/types/dry_type_coercer.rb +76 -0
- data/lib/grape/validations/types/file.rb +22 -18
- data/lib/grape/validations/types/invalid_value.rb +24 -0
- data/lib/grape/validations/types/json.rb +47 -39
- data/lib/grape/validations/types/multiple_type_coercer.rb +14 -33
- data/lib/grape/validations/types/primitive_coercer.rb +67 -0
- data/lib/grape/validations/types/set_coercer.rb +40 -0
- data/lib/grape/validations/types/variant_collection_coercer.rb +5 -13
- data/lib/grape/validations/types.rb +26 -38
- data/lib/grape/validations/validator_factory.rb +8 -11
- data/lib/grape/validations/validators/all_or_none.rb +8 -12
- data/lib/grape/validations/validators/allow_blank.rb +4 -2
- data/lib/grape/validations/validators/as.rb +12 -0
- data/lib/grape/validations/validators/at_least_one_of.rb +7 -12
- data/lib/grape/validations/validators/base.rb +23 -15
- data/lib/grape/validations/validators/coerce.rb +47 -28
- data/lib/grape/validations/validators/default.rb +7 -6
- data/lib/grape/validations/validators/exactly_one_of.rb +10 -22
- data/lib/grape/validations/validators/except_values.rb +4 -2
- data/lib/grape/validations/validators/multiple_params_base.rb +19 -10
- data/lib/grape/validations/validators/mutual_exclusion.rb +8 -17
- data/lib/grape/validations/validators/presence.rb +4 -1
- data/lib/grape/validations/validators/regexp.rb +5 -2
- data/lib/grape/validations/validators/same_as.rb +27 -0
- data/lib/grape/validations/validators/values.rb +29 -9
- data/lib/grape/validations.rb +2 -0
- data/lib/grape/version.rb +3 -1
- data/lib/grape.rb +107 -73
- data/spec/grape/api/custom_validations_spec.rb +6 -3
- data/spec/grape/api/deeply_included_options_spec.rb +2 -0
- data/spec/grape/api/defines_boolean_in_params_spec.rb +39 -0
- data/spec/grape/api/inherited_helpers_spec.rb +116 -0
- data/spec/grape/api/instance_spec.rb +104 -0
- data/spec/grape/api/invalid_format_spec.rb +2 -0
- data/spec/grape/api/namespace_parameters_in_route_spec.rb +2 -0
- data/spec/grape/api/nested_helpers_spec.rb +2 -0
- data/spec/grape/api/optional_parameters_in_route_spec.rb +2 -0
- data/spec/grape/api/parameters_modification_spec.rb +3 -1
- data/spec/grape/api/patch_method_helpers_spec.rb +2 -0
- data/spec/grape/api/recognize_path_spec.rb +2 -0
- data/spec/grape/api/required_parameters_in_route_spec.rb +2 -0
- data/spec/grape/api/required_parameters_with_invalid_method_spec.rb +2 -0
- data/spec/grape/api/routes_with_requirements_spec.rb +61 -0
- data/spec/grape/api/shared_helpers_exactly_one_of_spec.rb +49 -0
- data/spec/grape/api/shared_helpers_spec.rb +2 -0
- data/spec/grape/api_remount_spec.rb +473 -0
- data/spec/grape/api_spec.rb +775 -65
- data/spec/grape/config_spec.rb +19 -0
- data/spec/grape/dsl/callbacks_spec.rb +3 -1
- data/spec/grape/dsl/configuration_spec.rb +2 -0
- data/spec/grape/dsl/desc_spec.rb +42 -16
- data/spec/grape/dsl/headers_spec.rb +2 -0
- data/spec/grape/dsl/helpers_spec.rb +23 -2
- data/spec/grape/dsl/inside_route_spec.rb +185 -34
- data/spec/grape/dsl/logger_spec.rb +2 -0
- data/spec/grape/dsl/middleware_spec.rb +11 -1
- data/spec/grape/dsl/parameters_spec.rb +12 -9
- data/spec/grape/dsl/request_response_spec.rb +2 -0
- data/spec/grape/dsl/routing_spec.rb +13 -1
- data/spec/grape/dsl/settings_spec.rb +4 -2
- data/spec/grape/dsl/validations_spec.rb +2 -0
- data/spec/grape/endpoint/declared_spec.rb +848 -0
- data/spec/grape/endpoint_spec.rb +75 -515
- data/spec/grape/entity_spec.rb +19 -11
- data/spec/grape/exceptions/base_spec.rb +67 -0
- data/spec/grape/exceptions/body_parse_errors_spec.rb +2 -0
- data/spec/grape/exceptions/invalid_accept_header_spec.rb +2 -0
- data/spec/grape/exceptions/invalid_formatter_spec.rb +2 -1
- data/spec/grape/exceptions/invalid_response_spec.rb +13 -0
- data/spec/grape/exceptions/invalid_versioner_option_spec.rb +2 -1
- data/spec/grape/exceptions/missing_mime_type_spec.rb +2 -0
- data/spec/grape/exceptions/missing_option_spec.rb +2 -1
- data/spec/grape/exceptions/unknown_options_spec.rb +3 -2
- data/spec/grape/exceptions/unknown_validator_spec.rb +2 -1
- data/spec/grape/exceptions/validation_errors_spec.rb +17 -4
- data/spec/grape/exceptions/validation_spec.rb +3 -1
- data/spec/grape/extensions/param_builders/hash_spec.rb +2 -0
- data/spec/grape/extensions/param_builders/hash_with_indifferent_access_spec.rb +2 -0
- data/spec/grape/extensions/param_builders/hashie/mash_spec.rb +2 -0
- data/spec/grape/integration/global_namespace_function_spec.rb +2 -0
- data/spec/grape/integration/rack_sendfile_spec.rb +14 -8
- data/spec/grape/integration/rack_spec.rb +25 -7
- data/spec/grape/loading_spec.rb +2 -0
- data/spec/grape/middleware/auth/base_spec.rb +2 -0
- data/spec/grape/middleware/auth/dsl_spec.rb +6 -4
- data/spec/grape/middleware/auth/strategies_spec.rb +3 -1
- data/spec/grape/middleware/base_spec.rb +10 -0
- data/spec/grape/middleware/error_spec.rb +4 -3
- data/spec/grape/middleware/exception_spec.rb +205 -55
- data/spec/grape/middleware/formatter_spec.rb +130 -15
- data/spec/grape/middleware/globals_spec.rb +2 -0
- data/spec/grape/middleware/stack_spec.rb +15 -1
- data/spec/grape/middleware/versioner/accept_version_header_spec.rb +3 -1
- data/spec/grape/middleware/versioner/header_spec.rb +10 -2
- data/spec/grape/middleware/versioner/param_spec.rb +4 -2
- data/spec/grape/middleware/versioner/path_spec.rb +4 -2
- data/spec/grape/middleware/versioner_spec.rb +2 -0
- data/spec/grape/named_api_spec.rb +21 -0
- data/spec/grape/parser_spec.rb +7 -5
- data/spec/grape/path_spec.rb +9 -7
- data/spec/grape/presenters/presenter_spec.rb +2 -0
- data/spec/grape/request_spec.rb +26 -0
- data/spec/grape/util/inheritable_setting_spec.rb +4 -2
- data/spec/grape/util/inheritable_values_spec.rb +2 -0
- data/spec/grape/util/reverse_stackable_values_spec.rb +15 -13
- data/spec/grape/util/stackable_values_spec.rb +16 -14
- data/spec/grape/util/strict_hash_configuration_spec.rb +3 -1
- data/spec/grape/validations/attributes_iterator_spec.rb +2 -0
- data/spec/grape/validations/instance_behaivour_spec.rb +5 -3
- data/spec/grape/validations/multiple_attributes_iterator_spec.rb +41 -0
- data/spec/grape/validations/params_scope_spec.rb +364 -7
- data/spec/grape/validations/single_attribute_iterator_spec.rb +58 -0
- data/spec/grape/validations/types/array_coercer_spec.rb +35 -0
- data/spec/grape/validations/types/primitive_coercer_spec.rb +135 -0
- data/spec/grape/validations/types/set_coercer_spec.rb +34 -0
- data/spec/grape/validations/types_spec.rb +9 -36
- data/spec/grape/validations/validators/all_or_none_spec.rb +140 -30
- data/spec/grape/validations/validators/allow_blank_spec.rb +2 -0
- data/spec/grape/validations/validators/at_least_one_of_spec.rb +175 -29
- data/spec/grape/validations/validators/coerce_spec.rb +558 -133
- data/spec/grape/validations/validators/default_spec.rb +212 -0
- data/spec/grape/validations/validators/exactly_one_of_spec.rb +204 -38
- data/spec/grape/validations/validators/except_values_spec.rb +6 -3
- data/spec/grape/validations/validators/mutual_exclusion_spec.rb +186 -27
- data/spec/grape/validations/validators/presence_spec.rb +30 -0
- data/spec/grape/validations/validators/regexp_spec.rb +2 -0
- data/spec/grape/validations/validators/same_as_spec.rb +65 -0
- data/spec/grape/validations/validators/values_spec.rb +73 -19
- data/spec/grape/validations_spec.rb +403 -53
- data/spec/integration/eager_load/eager_load_spec.rb +15 -0
- data/spec/integration/multi_json/json_spec.rb +2 -0
- data/spec/integration/multi_xml/xml_spec.rb +2 -0
- data/spec/shared/versioning_examples.rb +78 -18
- data/spec/spec_helper.rb +13 -2
- data/spec/support/basic_auth_encode_helpers.rb +3 -1
- data/spec/support/chunks.rb +14 -0
- data/spec/support/content_type_helpers.rb +3 -1
- data/spec/support/eager_load.rb +19 -0
- data/spec/support/endpoint_faker.rb +2 -0
- data/spec/support/file_streamer.rb +2 -0
- data/spec/support/integer_helpers.rb +2 -0
- data/spec/support/versioned_helpers.rb +8 -8
- metadata +176 -130
- data/Appraisals +0 -32
- data/Dangerfile +0 -1
- data/Gemfile +0 -34
- data/Gemfile.lock +0 -229
- data/Guardfile +0 -10
- data/RELEASING.md +0 -111
- data/Rakefile +0 -70
- data/benchmark/simple.rb +0 -27
- data/benchmark/simple_with_type_coercer.rb +0 -22
- data/gemfiles/multi_json.gemfile +0 -36
- data/gemfiles/multi_xml.gemfile +0 -36
- data/gemfiles/rack_1.5.2.gemfile +0 -36
- data/gemfiles/rack_edge.gemfile +0 -36
- data/gemfiles/rails_3.gemfile +0 -37
- data/gemfiles/rails_4.gemfile +0 -36
- data/gemfiles/rails_5.gemfile +0 -36
- data/gemfiles/rails_edge.gemfile +0 -36
- data/lib/grape/extensions/deep_hash_with_indifferent_access.rb +0 -18
- data/lib/grape/util/content_types.rb +0 -26
- data/lib/grape/validations/types/virtus_collection_patch.rb +0 -16
@@ -0,0 +1,43 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Grape
|
4
|
+
module Util
|
5
|
+
# Base for classes which need to operate with own values kept
|
6
|
+
# in the hash and inherited values kept in a Hash-like object.
|
7
|
+
class BaseInheritable
|
8
|
+
attr_accessor :inherited_values, :new_values
|
9
|
+
|
10
|
+
# @param inherited_values [Object] An object implementing an interface
|
11
|
+
# of the Hash class.
|
12
|
+
def initialize(inherited_values = nil)
|
13
|
+
@inherited_values = inherited_values || {}
|
14
|
+
@new_values = {}
|
15
|
+
end
|
16
|
+
|
17
|
+
def delete(key)
|
18
|
+
new_values.delete key
|
19
|
+
end
|
20
|
+
|
21
|
+
def initialize_copy(other)
|
22
|
+
super
|
23
|
+
self.inherited_values = other.inherited_values
|
24
|
+
self.new_values = other.new_values.dup
|
25
|
+
end
|
26
|
+
|
27
|
+
def keys
|
28
|
+
if new_values.any?
|
29
|
+
combined = inherited_values.keys
|
30
|
+
combined.concat(new_values.keys)
|
31
|
+
combined.uniq!
|
32
|
+
combined
|
33
|
+
else
|
34
|
+
inherited_values.keys
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
def key?(name)
|
39
|
+
inherited_values.key?(name) || new_values.key?(name)
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# frozen_String_literal: true
|
2
|
+
|
3
|
+
require 'singleton'
|
4
|
+
require 'forwardable'
|
5
|
+
|
6
|
+
module Grape
|
7
|
+
module Util
|
8
|
+
class Cache
|
9
|
+
include Singleton
|
10
|
+
|
11
|
+
attr_reader :cache
|
12
|
+
|
13
|
+
class << self
|
14
|
+
extend Forwardable
|
15
|
+
def_delegators :cache, :[]
|
16
|
+
def_delegators :instance, :cache
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
data/lib/grape/util/env.rb
CHANGED
@@ -1,23 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module Grape
|
2
4
|
module Env
|
3
|
-
API_VERSION = 'api.version'
|
4
|
-
API_ENDPOINT = 'api.endpoint'
|
5
|
-
API_REQUEST_INPUT = 'api.request.input'
|
6
|
-
API_REQUEST_BODY = 'api.request.body'
|
7
|
-
API_TYPE = 'api.type'
|
8
|
-
API_SUBTYPE = 'api.subtype'
|
9
|
-
API_VENDOR = 'api.vendor'
|
10
|
-
API_FORMAT = 'api.format'
|
5
|
+
API_VERSION = 'api.version'
|
6
|
+
API_ENDPOINT = 'api.endpoint'
|
7
|
+
API_REQUEST_INPUT = 'api.request.input'
|
8
|
+
API_REQUEST_BODY = 'api.request.body'
|
9
|
+
API_TYPE = 'api.type'
|
10
|
+
API_SUBTYPE = 'api.subtype'
|
11
|
+
API_VENDOR = 'api.vendor'
|
12
|
+
API_FORMAT = 'api.format'
|
11
13
|
|
12
|
-
RACK_INPUT = 'rack.input'
|
13
|
-
RACK_REQUEST_QUERY_HASH = 'rack.request.query_hash'
|
14
|
-
RACK_REQUEST_FORM_HASH = 'rack.request.form_hash'
|
15
|
-
RACK_REQUEST_FORM_INPUT = 'rack.request.form_input'
|
14
|
+
RACK_INPUT = 'rack.input'
|
15
|
+
RACK_REQUEST_QUERY_HASH = 'rack.request.query_hash'
|
16
|
+
RACK_REQUEST_FORM_HASH = 'rack.request.form_hash'
|
17
|
+
RACK_REQUEST_FORM_INPUT = 'rack.request.form_input'
|
16
18
|
|
17
|
-
GRAPE_REQUEST = 'grape.request'
|
18
|
-
GRAPE_REQUEST_HEADERS = 'grape.request.headers'
|
19
|
-
GRAPE_REQUEST_PARAMS = 'grape.request.params'
|
20
|
-
GRAPE_ROUTING_ARGS = 'grape.routing_args'
|
21
|
-
GRAPE_ALLOWED_METHODS = 'grape.allowed_methods'
|
19
|
+
GRAPE_REQUEST = 'grape.request'
|
20
|
+
GRAPE_REQUEST_HEADERS = 'grape.request.headers'
|
21
|
+
GRAPE_REQUEST_PARAMS = 'grape.request.params'
|
22
|
+
GRAPE_ROUTING_ARGS = 'grape.routing_args'
|
23
|
+
GRAPE_ALLOWED_METHODS = 'grape.allowed_methods'
|
22
24
|
end
|
23
25
|
end
|
@@ -1,11 +1,11 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module Grape
|
2
4
|
module Util
|
3
5
|
# A branchable, inheritable settings object which can store both stackable
|
4
6
|
# and inheritable values (see InheritableValues and StackableValues).
|
5
7
|
class InheritableSetting
|
6
|
-
attr_accessor :route, :api_class, :namespace
|
7
|
-
attr_accessor :namespace_inheritable, :namespace_stackable, :namespace_reverse_stackable
|
8
|
-
attr_accessor :parent, :point_in_time_copies
|
8
|
+
attr_accessor :route, :api_class, :namespace, :namespace_inheritable, :namespace_stackable, :namespace_reverse_stackable, :parent, :point_in_time_copies
|
9
9
|
|
10
10
|
# Retrieve global settings.
|
11
11
|
def self.global
|
@@ -1,14 +1,10 @@
|
|
1
|
-
|
2
|
-
module Util
|
3
|
-
class InheritableValues
|
4
|
-
attr_accessor :inherited_values
|
5
|
-
attr_accessor :new_values
|
1
|
+
# frozen_string_literal: true
|
6
2
|
|
7
|
-
|
8
|
-
self.inherited_values = inherited_values
|
9
|
-
self.new_values = {}
|
10
|
-
end
|
3
|
+
require_relative 'base_inheritable'
|
11
4
|
|
5
|
+
module Grape
|
6
|
+
module Util
|
7
|
+
class InheritableValues < BaseInheritable
|
12
8
|
def [](name)
|
13
9
|
values[name]
|
14
10
|
end
|
@@ -17,26 +13,12 @@ module Grape
|
|
17
13
|
new_values[name] = value
|
18
14
|
end
|
19
15
|
|
20
|
-
def delete(key)
|
21
|
-
new_values.delete key
|
22
|
-
end
|
23
|
-
|
24
16
|
def merge(new_hash)
|
25
|
-
values.merge(new_hash)
|
26
|
-
end
|
27
|
-
|
28
|
-
def keys
|
29
|
-
(new_values.keys + inherited_values.keys).sort.uniq
|
17
|
+
values.merge!(new_hash)
|
30
18
|
end
|
31
19
|
|
32
20
|
def to_hash
|
33
|
-
values
|
34
|
-
end
|
35
|
-
|
36
|
-
def initialize_copy(other)
|
37
|
-
super
|
38
|
-
self.inherited_values = other.inherited_values
|
39
|
-
self.new_values = other.new_values.dup
|
21
|
+
values
|
40
22
|
end
|
41
23
|
|
42
24
|
protected
|
data/lib/grape/util/json.rb
CHANGED
@@ -0,0 +1,27 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Grape
|
4
|
+
module Util
|
5
|
+
class LazyBlock
|
6
|
+
def initialize(&new_block)
|
7
|
+
@block = new_block
|
8
|
+
end
|
9
|
+
|
10
|
+
def evaluate_from(configuration)
|
11
|
+
@block.call(configuration)
|
12
|
+
end
|
13
|
+
|
14
|
+
def evaluate
|
15
|
+
@block.call({})
|
16
|
+
end
|
17
|
+
|
18
|
+
def lazy?
|
19
|
+
true
|
20
|
+
end
|
21
|
+
|
22
|
+
def to_s
|
23
|
+
evaluate.to_s
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Based on https://github.com/HornsAndHooves/lazy_object
|
4
|
+
|
5
|
+
module Grape
|
6
|
+
module Util
|
7
|
+
class LazyObject < BasicObject
|
8
|
+
attr_reader :callable
|
9
|
+
|
10
|
+
def initialize(&callable)
|
11
|
+
@callable = callable
|
12
|
+
end
|
13
|
+
|
14
|
+
def __target_object__
|
15
|
+
@__target_object__ ||= callable.call
|
16
|
+
end
|
17
|
+
|
18
|
+
def ==(other)
|
19
|
+
__target_object__ == other
|
20
|
+
end
|
21
|
+
|
22
|
+
def !=(other)
|
23
|
+
__target_object__ != other
|
24
|
+
end
|
25
|
+
|
26
|
+
def !
|
27
|
+
!__target_object__
|
28
|
+
end
|
29
|
+
|
30
|
+
def method_missing(method_name, *args, &block)
|
31
|
+
if __target_object__.respond_to?(method_name)
|
32
|
+
__target_object__.send(method_name, *args, &block)
|
33
|
+
else
|
34
|
+
super
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
def respond_to_missing?(method_name, include_priv = false)
|
39
|
+
__target_object__.respond_to?(method_name, include_priv)
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,99 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Grape
|
4
|
+
module Util
|
5
|
+
class LazyValue
|
6
|
+
attr_reader :access_keys
|
7
|
+
|
8
|
+
def initialize(value, access_keys = [])
|
9
|
+
@value = value
|
10
|
+
@access_keys = access_keys
|
11
|
+
end
|
12
|
+
|
13
|
+
def evaluate_from(configuration)
|
14
|
+
matching_lazy_value = configuration.fetch(@access_keys)
|
15
|
+
matching_lazy_value.evaluate
|
16
|
+
end
|
17
|
+
|
18
|
+
def evaluate
|
19
|
+
@value
|
20
|
+
end
|
21
|
+
|
22
|
+
def lazy?
|
23
|
+
true
|
24
|
+
end
|
25
|
+
|
26
|
+
def reached_by(parent_access_keys, access_key)
|
27
|
+
@access_keys = parent_access_keys + [access_key]
|
28
|
+
self
|
29
|
+
end
|
30
|
+
|
31
|
+
def to_s
|
32
|
+
evaluate.to_s
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
class LazyValueEnumerable < LazyValue
|
37
|
+
def [](key)
|
38
|
+
if @value_hash[key].nil?
|
39
|
+
LazyValue.new(nil).reached_by(access_keys, key)
|
40
|
+
else
|
41
|
+
@value_hash[key].reached_by(access_keys, key)
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
def fetch(access_keys)
|
46
|
+
fetched_keys = access_keys.dup
|
47
|
+
value = self[fetched_keys.shift]
|
48
|
+
fetched_keys.any? ? value.fetch(fetched_keys) : value
|
49
|
+
end
|
50
|
+
|
51
|
+
def []=(key, value)
|
52
|
+
@value_hash[key] = case value
|
53
|
+
when Hash
|
54
|
+
LazyValueHash.new(value)
|
55
|
+
when Array
|
56
|
+
LazyValueArray.new(value)
|
57
|
+
else
|
58
|
+
LazyValue.new(value)
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
class LazyValueArray < LazyValueEnumerable
|
64
|
+
def initialize(array)
|
65
|
+
super
|
66
|
+
@value_hash = []
|
67
|
+
array.each_with_index do |value, index|
|
68
|
+
self[index] = value
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
def evaluate
|
73
|
+
evaluated = []
|
74
|
+
@value_hash.each_with_index do |value, index|
|
75
|
+
evaluated[index] = value.evaluate
|
76
|
+
end
|
77
|
+
evaluated
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
class LazyValueHash < LazyValueEnumerable
|
82
|
+
def initialize(hash)
|
83
|
+
super
|
84
|
+
@value_hash = {}.with_indifferent_access
|
85
|
+
hash.each do |key, value|
|
86
|
+
self[key] = value
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
def evaluate
|
91
|
+
evaluated = {}.with_indifferent_access
|
92
|
+
@value_hash.each do |key, value|
|
93
|
+
evaluated[key] = value.evaluate
|
94
|
+
end
|
95
|
+
evaluated
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|
@@ -1,45 +1,20 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'stackable_values'
|
4
|
+
|
1
5
|
module Grape
|
2
6
|
module Util
|
3
|
-
class ReverseStackableValues
|
4
|
-
|
5
|
-
attr_accessor :new_values
|
7
|
+
class ReverseStackableValues < StackableValues
|
8
|
+
protected
|
6
9
|
|
7
|
-
def
|
8
|
-
|
9
|
-
@new_values = {}
|
10
|
-
end
|
10
|
+
def concat_values(inherited_value, new_value)
|
11
|
+
return inherited_value unless new_value
|
11
12
|
|
12
|
-
def [](name)
|
13
13
|
[].tap do |value|
|
14
|
-
value.concat(
|
15
|
-
value.concat(
|
16
|
-
end
|
17
|
-
end
|
18
|
-
|
19
|
-
def []=(name, value)
|
20
|
-
@new_values[name] ||= []
|
21
|
-
@new_values[name].push value
|
22
|
-
end
|
23
|
-
|
24
|
-
def delete(key)
|
25
|
-
new_values.delete key
|
26
|
-
end
|
27
|
-
|
28
|
-
def keys
|
29
|
-
(@new_values.keys + @inherited_values.keys).sort.uniq
|
30
|
-
end
|
31
|
-
|
32
|
-
def to_hash
|
33
|
-
keys.each_with_object({}) do |key, result|
|
34
|
-
result[key] = self[key]
|
14
|
+
value.concat(new_value)
|
15
|
+
value.concat(inherited_value)
|
35
16
|
end
|
36
17
|
end
|
37
|
-
|
38
|
-
def initialize_copy(other)
|
39
|
-
super
|
40
|
-
self.inherited_values = other.inherited_values
|
41
|
-
self.new_values = other.new_values.dup
|
42
|
-
end
|
43
18
|
end
|
44
19
|
end
|
45
20
|
end
|
@@ -1,37 +1,23 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'base_inheritable'
|
4
|
+
|
1
5
|
module Grape
|
2
6
|
module Util
|
3
|
-
class StackableValues
|
4
|
-
|
5
|
-
attr_accessor :new_values
|
6
|
-
attr_reader :frozen_values
|
7
|
-
|
8
|
-
def initialize(inherited_values = {})
|
9
|
-
@inherited_values = inherited_values
|
10
|
-
@new_values = {}
|
11
|
-
@frozen_values = {}
|
12
|
-
end
|
13
|
-
|
7
|
+
class StackableValues < BaseInheritable
|
8
|
+
# Even if there is no value, an empty array will be returned.
|
14
9
|
def [](name)
|
15
|
-
|
16
|
-
|
17
|
-
value = []
|
18
|
-
value.concat(@inherited_values[name] || [])
|
19
|
-
value.concat(@new_values[name] || [])
|
20
|
-
value
|
21
|
-
end
|
10
|
+
inherited_value = inherited_values[name]
|
11
|
+
new_value = new_values[name]
|
22
12
|
|
23
|
-
|
24
|
-
raise if @frozen_values.key? name
|
25
|
-
@new_values[name] ||= []
|
26
|
-
@new_values[name].push value
|
27
|
-
end
|
13
|
+
return new_value || [] unless inherited_value
|
28
14
|
|
29
|
-
|
30
|
-
new_values.delete key
|
15
|
+
concat_values(inherited_value, new_value)
|
31
16
|
end
|
32
17
|
|
33
|
-
def
|
34
|
-
|
18
|
+
def []=(name, value)
|
19
|
+
new_values[name] ||= []
|
20
|
+
new_values[name].push value
|
35
21
|
end
|
36
22
|
|
37
23
|
def to_hash
|
@@ -40,14 +26,15 @@ module Grape
|
|
40
26
|
end
|
41
27
|
end
|
42
28
|
|
43
|
-
|
44
|
-
|
45
|
-
|
29
|
+
protected
|
30
|
+
|
31
|
+
def concat_values(inherited_value, new_value)
|
32
|
+
return inherited_value unless new_value
|
46
33
|
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
34
|
+
[].tap do |value|
|
35
|
+
value.concat(inherited_value)
|
36
|
+
value.concat(new_value)
|
37
|
+
end
|
51
38
|
end
|
52
39
|
end
|
53
40
|
end
|
data/lib/grape/util/xml.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module Grape
|
2
4
|
module Validations
|
3
5
|
class AttributesIterator
|
@@ -29,9 +31,7 @@ module Grape
|
|
29
31
|
|
30
32
|
if @scope.type == Array
|
31
33
|
next unless @original_params.is_a?(Array) # do not validate content of array if it isn't array
|
32
|
-
|
33
|
-
end
|
34
|
-
if inside_array
|
34
|
+
|
35
35
|
# fill current and parent scopes with correct array indicies
|
36
36
|
parent_scope = @scope.parent
|
37
37
|
parent_indicies.each do |parent_index|
|
@@ -41,11 +41,21 @@ module Grape
|
|
41
41
|
@scope.index = index
|
42
42
|
end
|
43
43
|
|
44
|
-
@attrs
|
45
|
-
yield resource_params, attr_name, inside_array
|
46
|
-
end
|
44
|
+
yield_attributes(resource_params, @attrs, &block)
|
47
45
|
end
|
48
46
|
end
|
47
|
+
|
48
|
+
def yield_attributes(_resource_params, _attrs)
|
49
|
+
raise NotImplementedError
|
50
|
+
end
|
51
|
+
|
52
|
+
# This is a special case so that we can ignore tree's where option
|
53
|
+
# values are missing lower down. Unfortunately we can remove this
|
54
|
+
# are the parameter parsing stage as they are required to ensure
|
55
|
+
# the correct indexing is maintained
|
56
|
+
def skip?(val)
|
57
|
+
val == Grape::DSL::Parameters::EmptyOptionalValue
|
58
|
+
end
|
49
59
|
end
|
50
60
|
end
|
51
61
|
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Grape
|
4
|
+
module Validations
|
5
|
+
class MultipleAttributesIterator < AttributesIterator
|
6
|
+
private
|
7
|
+
|
8
|
+
def yield_attributes(resource_params, _attrs)
|
9
|
+
yield resource_params, skip?(resource_params)
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|