Module: DaVinciPDexTestKit::FHIRResourceNavigation

Included in:
MustSupportTest
Defined in:
lib/davinci_pdex_test_kit/fhir_resource_navigation.rb

Constant Summary collapse

DAR_EXTENSION_URL =
'http://hl7.org/fhir/StructureDefinition/data-absent-reason'.freeze
PRIMITIVE_DATA_TYPES =
FHIR::PRIMITIVES.keys

Instance Method Summary collapse

Instance Method Details

#find_a_value_at(element, path, include_dar: false) ⇒ Object



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
# File 'lib/davinci_pdex_test_kit/fhir_resource_navigation.rb', line 20

def find_a_value_at(element, path, include_dar: false)
  return nil if element.nil?

  elements = Array.wrap(element)
  if path.empty?
    unless include_dar
      elements = elements.reject do |el|
        el.respond_to?(:extension) && el.extension.any? { |ext| ext.url == DAR_EXTENSION_URL}
      end
    end

    return elements.find { |el| yield(el) } if block_given?
    return elements.first
  end

  path_segments = path.split(/(?<!hl7)\./)

  segment = path_segments.shift.delete_suffix('[x]').gsub(/^class$/, 'local_class').gsub(/\[x\]:/, ':').to_sym
  no_elements_present =
    elements.none? do |element|
    child = get_next_value(element, segment)
    child.present? || child == false
  end
  return nil if no_elements_present

  remaining_path = path_segments.join('.')
  elements.each do |element|
    child = get_next_value(element, segment)
    element_found =
      if block_given?
        find_a_value_at(child, remaining_path, include_dar: include_dar) { |value_found| yield(value_found) }
      else
        find_a_value_at(child, remaining_path, include_dar: include_dar)
      end
    return element_found if element_found.present? || element_found == false
  end
  nil
end

#find_primitive_extension(element, property) ⇒ Object



75
76
77
78
79
80
# File 'lib/davinci_pdex_test_kit/fhir_resource_navigation.rb', line 75

def find_primitive_extension(element, property)
  type = element.class::METADATA[property.to_s]['type']
  source_value = element.source_hash["_#{property}"]

  PRIMITIVE_DATA_TYPES.include?(type) && source_value.present? ? FHIR::Element.new(source_value) : nil
end

#find_slice_via_discriminator(element, property) ⇒ Object



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
# File 'lib/davinci_pdex_test_kit/fhir_resource_navigation.rb', line 82

def find_slice_via_discriminator(element, property)
  element_name = property.to_s.split(':')[0].gsub(/^class$/, 'local_class')
  slice_name = property.to_s.split(':')[1].gsub(/^class$/, 'local_class')
  if .present?
    slice_by_name = .must_supports[:slices].find{ |slice| slice[:slice_name] == slice_name }
    discriminator = slice_by_name[:discriminator]
    slices = Array.wrap(element.send(element_name))
    slices.find do |slice|
      case discriminator[:type]
      when 'patternCodeableConcept'
        slice_value = discriminator[:path].present? ? slice.send("#{discriminator[:path]}")&.coding : slice.coding
        slice_value&.any? { |coding| coding.code == discriminator[:code] && coding.system == discriminator[:system] }
      when 'patternCoding'
        slice_value = discriminator[:path].present? ? slice.send(discriminator[:path]) : slice
        slice_value&.code == discriminator[:code] && slice_value&.system == discriminator[:system]
      when 'patternIdentifier'
        slice.identifier.system == discriminator[:system]
      when 'value'
        values = discriminator[:values].map { |value| value.merge(path: value[:path].split('.')) }
        verify_slice_by_values(slice, values)
      when 'type'
        case discriminator[:code]
        when 'Date'
          begin
            Date.parse(slice)
          rescue ArgumentError
            false
          end
        when 'DateTime'
          begin
            DateTime.parse(slice)
          rescue ArgumentError
            false
          end
        when 'String'
          slice.is_a? String
        else
          slice.is_a? FHIR.const_get(discriminator[:code])
        end
      when 'requiredBinding'
        slice_value = discriminator[:path].present? ? slice.send("#{discriminator[:path]}").coding : slice.coding
        slice_value {|coding| discriminator[:values].include?(coding.code) }
      end
    end
  else
    #TODO: Error handling for if this file doesn't have access to metadata for some reason (begin/rescue with StandardError?)
  end
end

#get_next_value(element, property) ⇒ Object



59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# File 'lib/davinci_pdex_test_kit/fhir_resource_navigation.rb', line 59

def get_next_value(element, property)
  extension_url = property[/(?<=where\(url=').*(?='\))/]
  if extension_url.present?
    element.url == extension_url ? element : nil
  elsif property.to_s.include?(':') && !property.to_s.include?('url')
    slice = find_slice_via_discriminator(element, property)
    slice
  else
    result = element.send(property)
    result = find_primitive_extension(element, property) if result.nil?
    result
  end
rescue NoMethodError
  nil
end

#resolve_path(elements, path) ⇒ Object



6
7
8
9
10
11
12
13
14
15
16
17
18
# File 'lib/davinci_pdex_test_kit/fhir_resource_navigation.rb', line 6

def resolve_path(elements, path)
  elements = Array.wrap(elements)
  return elements if path.blank?

  paths = path.split(/(?<!hl7)\./)
  segment = paths.first
  remaining_path = paths.drop(1).join('.')

  elements.flat_map do |element|
    child = get_next_value(element, segment)
    resolve_path(child, remaining_path)
  end.compact
end

#verify_slice_by_values(element, value_definitions) ⇒ Object



131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
# File 'lib/davinci_pdex_test_kit/fhir_resource_navigation.rb', line 131

def verify_slice_by_values(element, value_definitions)
  path_prefixes = value_definitions.map { |value_definition| value_definition[:path].first }.uniq
  path_prefixes.all? do |path_prefix|
    value_definitions_for_path =
      value_definitions
        .select { |value_definition| value_definition[:path].first == path_prefix }
        .each { |value_definition| value_definition[:path].shift }
    find_a_value_at(element, path_prefix) do |el_found|
      child_element_value_definitions, current_element_value_definitions =
        value_definitions_for_path.partition { |value_definition| value_definition[:path].present? }

      current_element_values_match =
        current_element_value_definitions
          .all? { |value_definition| value_definition[:value] == el_found }

      child_element_values_match =
        child_element_value_definitions.present? ?
          verify_slice_by_values(el_found, child_element_value_definitions) : true
      current_element_values_match && child_element_values_match
    end
  end
end