Module: Swagger::Blocks::InternalHelpers

Defined in:
lib/swagger/blocks/internal_helpers.rb

Class Method Summary collapse

Class Method Details

.limit_root_node(root_nodes) ⇒ Object

Make sure there is exactly one root_node and return it. TODO should this merge the contents of the root nodes instead?



40
41
42
43
44
45
46
47
48
49
# File 'lib/swagger/blocks/internal_helpers.rb', line 40

def self.limit_root_node(root_nodes)
  if root_nodes.length == 0
    raise Swagger::Blocks::DeclarationError.new(
      'swagger_root must be declared')
  elsif root_nodes.length > 1
    raise Swagger::Blocks::DeclarationError.new(
      'Only one swagger_root declaration is allowed.')
  end
  root_nodes.first
end

.parse_swaggered_classes(swaggered_classes) ⇒ Object

Return [root_node, api_node_map] from all of the given swaggered_classes.



5
6
7
8
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
# File 'lib/swagger/blocks/internal_helpers.rb', line 5

def self.parse_swaggered_classes(swaggered_classes)
  root_nodes = []

  api_node_map = {}
  models_nodes = []

  path_node_map = {}
  schema_node_map = {}
  swaggered_classes.each do |swaggered_class|
    next unless swaggered_class.respond_to?(:_swagger_nodes, true)
    swagger_nodes = swaggered_class.send(:_swagger_nodes)
    root_node = swagger_nodes[:root_node]
    root_nodes << root_node if root_node

    # 2.0
    if swagger_nodes[:path_node_map]
      path_node_map.merge!(swagger_nodes[:path_node_map])
    end
    if swagger_nodes[:schema_node_map]
      schema_node_map.merge!(swagger_nodes[:schema_node_map])
    end
  end
  data = {root_node: self.limit_root_node(root_nodes)}
  if data[:root_node].is_swagger_2_0?
    data[:path_nodes] = path_node_map
    data[:schema_nodes] = schema_node_map
  else
    data[:api_node_map] = api_node_map
    data[:models_nodes] = models_nodes
  end
  data
end