Class: Grape::Endpoint
Overview
An Endpoint is the proxy scope in which all routing blocks are executed. In other words, any methods on the instance level of this class may be called from inside a ‘get`, `post`, etc.
Instance Attribute Summary collapse
#inheritable_setting, #top_level_setting
Class Method Summary
collapse
Instance Method Summary
collapse
#body, #content_type, #cookies, #declared, #entity_class_for_obj, #entity_representation_for, #error!, #file, #header, post_filter_methods, #present, #redirect, #route, #status, #stream, #version
#api_class_setting, #get_or_set, #global_setting, #namespace_end, #namespace_inheritable, #namespace_inheritable_to_nil, #namespace_setting, #namespace_stackable, #namespace_start, #route_end, #route_setting, #unset, #unset_api_class_setting, #unset_global_setting, #unset_namespace_inheritable, #unset_namespace_setting, #unset_namespace_stackable, #unset_route_setting, #within_namespace
Constructor Details
#initialize(new_settings, options = {}, &block) ⇒ Endpoint
Returns a new instance of Endpoint.
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
# File 'lib/grape/endpoint.rb', line 73
def initialize(new_settings, options = {}, &block)
require_option(options, :path)
require_option(options, :method)
self.inheritable_setting = new_settings.point_in_time_copy
route_setting(:saved_declared_params, namespace_stackable(:declared_params))
route_setting(:saved_validations, namespace_stackable(:validations))
namespace_stackable(:representations, []) unless namespace_stackable(:representations)
namespace_inheritable(:default_error_status, 500) unless namespace_inheritable(:default_error_status)
@options = options
@options[:path] = Array(options[:path])
@options[:path] << '/' if options[:path].empty?
@options[:method] = Array(options[:method])
@options[:route_options] ||= {}
@lazy_initialize_lock = Mutex.new
return unless block_given?
@source = block
@block = self.class.generate_api_method(method_name, &block)
end
|
Instance Attribute Details
#block ⇒ Object
Returns the value of attribute block.
9
10
11
|
# File 'lib/grape/endpoint.rb', line 9
def block
@block
end
|
#env ⇒ Object
Returns the value of attribute env.
10
11
12
|
# File 'lib/grape/endpoint.rb', line 10
def env
@env
end
|
Returns the value of attribute headers.
10
11
12
|
# File 'lib/grape/endpoint.rb', line 10
def
end
|
#options ⇒ Object
Returns the value of attribute options.
9
10
11
|
# File 'lib/grape/endpoint.rb', line 9
def options
@options
end
|
#params ⇒ Object
Returns the value of attribute params.
10
11
12
|
# File 'lib/grape/endpoint.rb', line 10
def params
@params
end
|
#request ⇒ Object
Returns the value of attribute request.
10
11
12
|
# File 'lib/grape/endpoint.rb', line 10
def request
@request
end
|
#source ⇒ Object
Returns the value of attribute source.
9
10
11
|
# File 'lib/grape/endpoint.rb', line 9
def source
@source
end
|
Class Method Details
.before_each(new_setup = false, &block) ⇒ Object
23
24
25
26
27
28
29
30
31
32
33
34
|
# File 'lib/grape/endpoint.rb', line 23
def before_each(new_setup = false, &block)
@before_each ||= []
if new_setup == false
if block_given?
@before_each << block
else
return @before_each
end
else
@before_each = [new_setup]
end
end
|
.generate_api_method(method_name, &block) ⇒ Proc
This method is part of a private API.
You should avoid using this method if possible, as it may be removed or be changed in the future.
Create an UnboundMethod that is appropriate for executing an endpoint route.
The unbound method allows explicit calls to return
without raising a LocalJumpError
. The method will be removed, but a Proc
reference to it will be returned. The returned Proc
expects a single argument: the instance of Endpoint
to bind to the method during the call.
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# File 'lib/grape/endpoint.rb', line 56
def generate_api_method(method_name, &block)
if instance_methods.include?(method_name.to_sym) || instance_methods.include?(method_name.to_s)
fail NameError.new("method #{method_name.inspect} already exists and cannot be used as an unbound method name")
end
define_method(method_name, &block)
method = instance_method(method_name)
remove_method(method_name)
proc do |endpoint_instance|
ActiveSupport::Notifications.instrument('endpoint_render.grape', endpoint: endpoint_instance) do
method.bind(endpoint_instance).call
end
end
end
|
.new(*args, &block) ⇒ Object
15
16
17
18
19
20
21
|
# File 'lib/grape/endpoint.rb', line 15
def new(*args, &block)
if self == Endpoint
Class.new(Endpoint).new(*args, &block)
else
super
end
end
|
.run_before_each(endpoint) ⇒ Object
36
37
38
39
40
41
|
# File 'lib/grape/endpoint.rb', line 36
def run_before_each(endpoint)
superclass.run_before_each(endpoint) unless self == Endpoint
before_each.each do |blk|
blk.call(endpoint) if blk.respond_to? :call
end
end
|
Instance Method Details
#call(env) ⇒ Object
207
208
209
210
|
# File 'lib/grape/endpoint.rb', line 207
def call(env)
lazy_initialize!
dup.call!(env)
end
|
#call!(env) ⇒ Object
212
213
214
215
216
|
# File 'lib/grape/endpoint.rb', line 212
def call!(env)
env[Grape::Env::API_ENDPOINT] = self
@env = env
@app.call(env)
end
|
#compile_path(prepared_path, anchor = true, requirements = {}) ⇒ Object
200
201
202
203
204
205
|
# File 'lib/grape/endpoint.rb', line 200
def compile_path(prepared_path, anchor = true, requirements = {})
endpoint_options = {}
endpoint_options[:version] = /#{namespace_inheritable(:version).join('|')}/ if namespace_inheritable(:version)
endpoint_options.merge!(requirements)
Rack::Mount::Strexp.compile(prepared_path, endpoint_options, %w( / . ? ), anchor)
end
|
#endpoints ⇒ Object
Return the collection of endpoints within this endpoint. This is the case when an Grape::API mounts another Grape::API.
220
221
222
|
# File 'lib/grape/endpoint.rb', line 220
def endpoints
options[:app].endpoints if options[:app] && options[:app].respond_to?(:endpoints)
end
|
#equals?(e) ⇒ Boolean
224
225
226
|
# File 'lib/grape/endpoint.rb', line 224
def equals?(e)
(options == e.options) && (inheritable_setting.to_hash == e.inheritable_setting.to_hash)
end
|
#method_name ⇒ Object
105
106
107
108
109
110
111
|
# File 'lib/grape/endpoint.rb', line 105
def method_name
[options[:method],
Namespace.joined_space(namespace_stackable(:namespace)),
(namespace_stackable(:mount_path) || []).join('/'),
options[:path].join('/')
].join(' ')
end
|
#mount_in(route_set) ⇒ Object
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
# File 'lib/grape/endpoint.rb', line 123
def mount_in(route_set)
if endpoints
endpoints.each do |e|
e.mount_in(route_set)
end
else
@routes = nil
routes.each do |route|
methods = [route.route_method]
if !namespace_inheritable(:do_not_route_head) && route.route_method == Grape::Http::::GET
methods << Grape::Http::::HEAD
end
methods.each do |method|
route_set.add_route(self, {
path_info: route.route_compiled,
request_method: method
}, route_info: route)
end
end
end
end
|
#namespace ⇒ Object
196
197
198
|
# File 'lib/grape/endpoint.rb', line 196
def namespace
@namespace ||= Namespace.joined_space_path(namespace_stackable(:namespace))
end
|
#prepare_path(path) ⇒ Object
191
192
193
194
|
# File 'lib/grape/endpoint.rb', line 191
def prepare_path(path)
path_settings = inheritable_setting.to_hash[:namespace_stackable].merge(inheritable_setting.to_hash[:namespace_inheritable])
Path.prepare(path, namespace, path_settings)
end
|
#prepare_routes ⇒ Object
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
|
# File 'lib/grape/endpoint.rb', line 169
def prepare_routes
options[:method].map do |method|
options[:path].map do |path|
prepared_path = prepare_path(path)
anchor = options[:route_options].fetch(:anchor, true)
path = compile_path(prepared_path, anchor && !options[:app], prepare_routes_requirements)
request_method = (method.to_s.upcase unless method == :any)
Route.new(options[:route_options].clone.merge(
prefix: namespace_inheritable(:root_prefix),
version: namespace_inheritable(:version) ? namespace_inheritable(:version).join('|') : nil,
namespace: namespace,
method: request_method,
path: prepared_path,
params: prepare_routes_path_params(path),
compiled: path,
settings: inheritable_setting.route.except(:saved_declared_params, :saved_validations)
))
end
end.flatten
end
|
#prepare_routes_path_params(path) ⇒ Object
154
155
156
157
158
159
160
161
162
163
164
165
166
167
|
# File 'lib/grape/endpoint.rb', line 154
def prepare_routes_path_params(path)
path_params = {}
regex = Rack::Mount::RegexpWithNamedGroups.new(path)
named_params = regex.named_captures.map { |nc| nc[0] } - %w(version format)
named_params.each { |named_param| path_params[named_param] = '' }
route_params = options[:route_options][:params]
path_params.merge! route_params if route_params
path_params
end
|
#prepare_routes_requirements ⇒ Object
146
147
148
149
150
151
152
|
# File 'lib/grape/endpoint.rb', line 146
def prepare_routes_requirements
endpoint_requirements = options[:route_options][:requirements] || {}
all_requirements = (namespace_stackable(:namespace).map(&:requirements) << endpoint_requirements)
all_requirements.reduce({}) do |base_requirements, single_requirements|
base_requirements.merge!(single_requirements)
end
end
|
#require_option(options, key) ⇒ Object
101
102
103
|
# File 'lib/grape/endpoint.rb', line 101
def require_option(options, key)
fail Grape::Exceptions::MissingOption.new(key) unless options.key?(key)
end
|
#reset_routes! ⇒ Object
117
118
119
120
121
|
# File 'lib/grape/endpoint.rb', line 117
def reset_routes!
endpoints.map(&:reset_routes!) if endpoints
@namespace = nil
@routes = nil
end
|
#routes ⇒ Object
113
114
115
|
# File 'lib/grape/endpoint.rb', line 113
def routes
@routes ||= endpoints ? endpoints.collect(&:routes).flatten : prepare_routes
end
|