9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
|
# File 'lib/brick/route_mapper.rb', line 9
def add_brick_routes
routeset_to_use = ::Rails.application.routes
path_prefix = ::Brick.config.path_prefix
existing_controllers = routeset_to_use.routes.each_with_object({}) do |r, s|
if (r.verb == 'GET' || (r.verb.is_a?(Regexp) && r.verb.source == '^GET$')) &&
(controller_name = r.defaults[:controller])
path = r.path.ast.to_s
path = path[0..((path.index('(') || 0) - 1)]
next if "#{path}##{r.defaults[:action]}" == ::Brick.established_drf ||
[:index, :show, :new, :edit].exclude?(action = r.defaults[:action].to_sym)
c_parts = controller_name.split('/')
while c_parts.length > 0
c_dotted = c_parts.join('.')
if (relation = ::Brick.relations.fetch(c_dotted, nil)) if (route_name = r.name&.to_sym) != :root
relation[:existing][action] = route_name
else
relation[:existing][action] ||= path
end
s[c_dotted.tr('.', '/')] = nil
break
end
c_parts.shift
end
s[controller_name] = nil if c_parts.length.zero?
end
end
tables = []
views = []
table_class_length = 38 view_class_length = 37
brick_namespace_create = lambda do |path_names, res_name, options, ind = 0|
if path_names&.present?
if (path_name = path_names.pop).is_a?(Array)
module_name = path_name[1]
path_name = path_name.first
end
scope_options = { module: module_name || path_name, path: path_name, as: path_name }
send(:scope, scope_options) do
brick_namespace_create.call(path_names, res_name, options, ind + 1)
end
else
if options.key(:only) || !Object.const_defined?('Rails') ||
!::Rails.application.config.respond_to?(:api_only) || !::Rails.application.config.api_only
resources_options = options
else resources_options = options.merge(only: [:index, :show, :create, :update, :destroy, :new, :edit])
end
send(:resources, res_name.to_sym, **resources_options)
end
end
controller_prefix = (path_prefix ? "#{path_prefix}/" : '')
sti_subclasses = ::Brick.config.sti_namespace_prefixes.each_with_object(Hash.new { |h, k| h[k] = [] }) do |v, s|
s[v.last] << v.first[2..-1] unless v.first.end_with?('::')
end
versioned_views = {} ::Brick.relations.each do |k, v|
next if k.is_a?(Symbol)
if (schema_name = v.fetch(:schema, nil))
schema_prefix = "#{schema_name}."
end
resource_name = v.fetch(:resource, nil) || k
next if !resource_name ||
existing_controllers.key?(
"#{controller_prefix}#{schema_prefix&.tr('.', '/')}#{resource_name}".pluralize
)
object_name = k.split('.').last
full_schema_prefix = if (aps = v.fetch(:auto_prefixed_schema, nil))
aps = aps[0..-2] if aps[-1] == '_'
aps2 = v[:auto_prefixed_class]&.underscore
(schema_prefix&.dup || +'') << "#{aps}."
else
schema_prefix
end
if (class_name = v.fetch(:class_name, nil))
if v.key?(:isView)
view_class_length = class_name.length if class_name.length > view_class_length
views
else
table_class_length = class_name.length if class_name.length > table_class_length
tables
end << [class_name, aps, "#{"#{schema_name}/" if schema_name}#{resource_name}"]
end
options = {}
options[:only] = [:index, :show] if v.key?(:isView)
prefixes = []
prefixes << [aps, aps2] if aps
prefixes << schema_name if schema_name
prefixes << path_prefix if path_prefix
brick_namespace_create.call(prefixes, resource_name, options)
sti_subclasses.fetch(class_name, nil)&.each do |sc| brick_namespace_create.call(prefixes, sc.underscore.tr('/', '_').pluralize, options)
end
full_resource = nil
::Brick.api_roots&.each do |api_root|
api_done_views = (versioned_views[api_root] ||= {})
found = nil
test_ver_num = nil
view_relation = nil
if v.key?(:isView)
if (ver = object_name.match(/^v([\d_]*)/)&.captures&.first) && ver[-1] == '_'
core_object_name = object_name[ver.length + 1..-1]
next if api_done_views.key?(unversioned = "#{schema_prefix}v_#{core_object_name}")
api_ver = api_root.split('/')[-1]&.gsub('_', '.')
vn_idx = api_ver.rindex(/[^\d._]/) test_ver_num = api_ver_num = api_ver[vn_idx + 1..-1].gsub('_', '.').to_i
next if ver.to_i > api_ver_num
test_ver_num -= 1 until test_ver_num.zero? ||
(view_relation = ::Brick.relations.fetch(
found = "#{schema_prefix}v#{test_ver_num}_#{core_object_name}", nil
))
api_done_views[unversioned] = nil
no_v_prefix_name = "#{schema_prefix}#{core_object_name}"
standard_prefix = 'v_'
else
core_object_name = object_name
end
if (rvp = ::Brick.config.api_remove_view_prefix) && core_object_name.start_with?(rvp)
core_object_name.slice!(0, rvp.length)
end
no_prefix_name = "#{schema_prefix}#{core_object_name}"
unversioned = "#{schema_prefix}#{standard_prefix}#{::Brick.config.api_add_view_prefix}#{core_object_name}"
else
unversioned = k
end
view_relation ||= ::Brick.relations.fetch(found = unversioned, nil) ||
(no_v_prefix_name && ::Brick.relations.fetch(found = no_v_prefix_name, nil)) ||
(no_prefix_name && ::Brick.relations.fetch(found = no_prefix_name, nil))
if view_relation
actions = view_relation.key?(:isView) ? [:index, :show] : ::Brick::ALL_API_ACTIONS proc_result = if (filter = ::Brick.config.api_filter).is_a?(Proc)
begin
num_args = filter.arity.negative? ? 6 : filter.arity
filter.call(*[unversioned, k, view_relation, actions, api_ver_num, found, test_ver_num][0...num_args])
rescue StandardError => e
puts "::Brick.api_filter Proc error: #{e.message}"
end
end
case proc_result
when NilClass
when FalseClass view_relation[:api][api_ver_num] = nil
next
when Array unless proc_result.any? { |pr| ::Brick::ALL_API_ACTIONS.exclude?(pr) }
proc_result = [unversioned, to_relation, proc_result]
end
when String
proc_result = [proc_result] else
puts "::Brick.api_filter Proc warning: Unable to parse this result returned: \n #{proc_result.inspect}"
proc_result = nil end
if proc_result&.present?
if proc_result[1] if (new_view_relation = ::Brick.relations.fetch(proc_result[1], nil))
k = proc_result[1] view_relation = new_view_relation
else
puts "::Brick.api_filter Proc warning: Unable to find new suggested relation with name #{proc_result[1]} -- sticking with #{k} instead."
end
end
if proc_result.first&.!=(k) found = proc_result.first
end
actions &= proc_result[2] if proc_result[2] end
(view_relation[:api][api_ver_num] ||= {})[unversioned] = actions
controller_name = if (last = view_relation.fetch(:resource, nil)&.pluralize)
"#{full_schema_prefix}#{last}"
else
found
end.tr('.', '/')
{ :index => 'get', :create => 'post' }.each do |action, method|
if actions.include?(action)
send(method, "#{api_root}#{unversioned.tr('.', '/')}", { to: "#{controller_prefix}#{controller_name}##{action}" })
end
end
if (id_col = view_relation[:pk]&.first) { :update => ['put', 'patch'], :destroy => ['delete'] }.each do |action, methods|
if actions.include?(action)
methods.each do |method|
send(method, "#{api_root}#{unversioned.tr('.', '/')}/:#{id_col}", { to: "#{controller_prefix}#{controller_name}##{action}" })
end
end
end
end
end
end
if Object.const_defined?('Trestle') && ::Trestle.config.options&.key?(:site_title) &&
!Object.const_defined?("#{(res_name = resource_name.tr('/', '_')).camelize}Admin")
begin
::Trestle.resource(res_sym = res_name.to_sym, model: class_name&.constantize) do
{ item res_sym, icon: "fa fa-star" }
end
rescue
end
end
end
if (named_routes = instance_variable_get(:@set).named_routes).respond_to?(:find)
if ::Brick.config.add_status && (status_as = "#{controller_prefix.tr('/', '_')}brick_status".to_sym)
(
!(status_route = instance_variable_get(:@set).named_routes.find { |route| route.first == status_as }&.last) ||
!status_route.ast.to_s.include?("/#{controller_prefix}brick_status/")
)
get("/#{controller_prefix}brick_status", to: 'brick_gem#status', as: status_as.to_s)
end
if (associate_as = "#{controller_prefix.tr('/', '_')}brick_associate".to_sym)
(
!(associate_route = instance_variable_get(:@set).named_routes.find { |route| route.first == associate_as }&.last) ||
!associate_route.ast.to_s.include?("/#{controller_prefix}brick_associate/")
)
post("/#{controller_prefix}brick_associate", to: 'brick_gem#associate', as: associate_as.to_s)
delete("/#{controller_prefix}brick_associate", to: 'brick_gem#unassociate')
end
if ::Brick.config.add_orphans && (orphans_as = "#{controller_prefix.tr('/', '_')}brick_orphans".to_sym)
(
!(orphans_route = instance_variable_get(:@set).named_routes.find { |route| route.first == orphans_as }&.last) ||
!orphans_route.ast.to_s.include?("/#{controller_prefix}brick_orphans/")
)
get("/#{controller_prefix}brick_orphans", to: 'brick_gem#orphans', as: 'brick_orphans')
end
end
if instance_variable_get(:@set).named_routes.names.exclude?(:brick_crosstab)
get("/#{controller_prefix}brick_crosstab", to: 'brick_gem#crosstab', as: 'brick_crosstab')
get("/#{controller_prefix}brick_crosstab/data", to: 'brick_gem#crosstab_data')
end
if ((rswag_ui_present = Object.const_defined?('Rswag::Ui')) &&
(rswag_path = routeset_to_use.routes.find { |r| r.app.app == ::Rswag::Ui::Engine }
&.instance_variable_get(:@path_formatter)
&.instance_variable_get(:@parts)&.join) &&
(doc_endpoints = ::Rswag::Ui.config.config_object[:urls])) ||
(doc_endpoints = ::Brick.instance_variable_get(:@swagger_endpoints))
last_endpoint_parts = nil
doc_endpoints.each do |doc_endpoint|
puts "Mounting OpenApi 3.0 documentation endpoint for \"#{doc_endpoint[:name]}\" on #{doc_endpoint[:url]}" unless ::Brick.routes_done
send(:get, doc_endpoint[:url], { to: 'brick_openapi#index' })
endpoint_parts = doc_endpoint[:url]&.split('/')
last_endpoint_parts = endpoint_parts
end
end
return if ::Brick.routes_done
if doc_endpoints.present?
if rswag_ui_present
if rswag_path
puts "API documentation now available when navigating to: /#{last_endpoint_parts&.find(&:present?)}/index.html"
else
puts "In order to make documentation available you can put this into your routes.rb:"
puts " mount Rswag::Ui::Engine => '/#{last_endpoint_parts&.find(&:present?) || 'api-docs'}'"
end
else
puts "Having this exposed, one easy way to leverage this to create HTML-based API documentation is to use Scalar.
It will jump to life when you put these two lines into a view template or other HTML resource:
<script id=\"api-reference\" data-url=\"#{last_endpoint_parts.join('/')}\"></script>
<script src=\"https://cdn.jsdelivr.net/@scalar/api-reference\"></script>
Alternatively you can add the rswag-ui gem."
end
elsif rswag_ui_present
sample_path = rswag_path || '/api-docs'
puts
puts "Brick: rswag-ui gem detected -- to make OpenAPI 3.0 documentation available from a path such as '#{sample_path}/v1/swagger.json',"
puts ' put code such as this in an initializer:'
puts ' Rswag::Ui.configure do |config|'
puts " config.swagger_endpoint '#{sample_path}/v1/swagger.json', 'API V1 Docs'"
puts ' end'
unless rswag_path
puts
puts ' and put this into your routes.rb:'
puts " mount Rswag::Ui::Engine => '/api-docs'"
end
end
puts "\n" if tables.present? || views.present?
if tables.present?
puts "Classes that can be built from tables:#{' ' * (table_class_length - 38)} Path:"
puts "======================================#{' ' * (table_class_length - 38)} ====="
::Brick.display_classes(controller_prefix, tables, table_class_length)
end
if views.present?
puts "Classes that can be built from views:#{' ' * (view_class_length - 37)} Path:"
puts "=====================================#{' ' * (view_class_length - 37)} ====="
::Brick.display_classes(controller_prefix, views, view_class_length)
end
::Brick.routes_done = true
end
|