629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
|
# File 'lib/brick.rb', line 629
def finalize!
unless ::Rails.application.routes.named_routes.names.include?(:brick_status)
path_prefix = ::Brick.config.path_prefix
existing_controllers = routes.each_with_object({}) do |r, s|
c = r.defaults[:controller]
s[c] = nil if c
end
::Rails.application.routes.append do
tables = []
views = []
table_class_length = 38 view_class_length = 37
brick_routes_create = lambda do |schema_name, controller_name, v, options|
if schema_name send(:namespace, schema_name) do
send(:resources, v[:resource].to_sym, **options)
end
else
send(:resources, v[:resource].to_sym, **options)
end
end
controller_prefix = (path_prefix ? "#{path_prefix}/" : '')
::Brick.relations.each do |k, v|
unless !(controller_name = v.fetch(:resource, nil)&.pluralize) || existing_controllers.key?(controller_name)
options = {}
options[:only] = [:index, :show] if v.key?(:isView)
full_resource = nil
if (schema_name = v.fetch(:schema, nil))
full_resource = "#{schema_name}/#{v[:resource]}"
send(:get, "#{::Brick.api_root}#{full_resource}", { to: "#{controller_prefix}#{schema_name}/#{controller_name}#index" }) if Object.const_defined?('Rswag::Ui')
else
send(:get, "#{::Brick.api_root}#{v[:resource]}", { to: "#{controller_prefix}#{controller_name}#index" }) if Object.const_defined?('Rswag::Ui')
end
if path_prefix
send(:namespace, path_prefix) do
brick_routes_create.call(schema_name, controller_name, v, options)
end
else
brick_routes_create.call(schema_name, controller_name, v, options)
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, full_resource || v[:resource]]
end
end
end
if ::Brick.config.add_status && instance_variable_get(:@set).named_routes.names.exclude?(:brick_status)
get("/#{controller_prefix}brick_status", to: 'brick_gem#status', as: 'brick_status')
end
if ::Brick.config.add_orphans && instance_variable_get(:@set).named_routes.names.exclude?(:brick_orphans)
get("/#{controller_prefix}brick_orphans", to: 'brick_gem#orphans', as: 'brick_orphans')
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
unless ::Brick.routes_done
if Object.const_defined?('Rswag::Ui')
rswag_path = ::Rails.application.routes.routes.find { |r| r.app.app == Rswag::Ui::Engine }&.instance_variable_get(:@path_formatter)&.instance_variable_get(:@parts)&.join
if (doc_endpoint = Rswag::Ui.config.config_object[:urls]&.last)
puts "Mounting OpenApi 3.0 documentation endpoint for \"#{doc_endpoint[:name]}\" on #{doc_endpoint[:url]}"
send(:get, doc_endpoint[:url], { to: 'brick_openapi#index' })
endpoint_parts = doc_endpoint[:url]&.split('/')
if rswag_path && endpoint_parts
puts "API documentation now available when navigating to: /#{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 => '/#{endpoint_parts&.find(&:present?) || 'api-docs'}'"
end
else
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
end
::Brick.routes_done = true
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
end
end
end
super
end
|