Class: PacioInfernoCore::Generator::IGMetadataExtractor

Inherits:
Object
  • Object
show all
Defined in:
lib/pacio_inferno_core/generator/ig_metadata_extractor.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(ig_resources) ⇒ IGMetadataExtractor

Returns a new instance of IGMetadataExtractor.



9
10
11
12
13
14
# File 'lib/pacio_inferno_core/generator/ig_metadata_extractor.rb', line 9

def initialize(ig_resources)
  self.ig_resources = ig_resources
  remove_version_from_supported_profiles
  remove_extra_supported_profiles
  self. = IGMetadata.new
end

Instance Attribute Details

#ig_resourcesObject

Returns the value of attribute ig_resources.



7
8
9
# File 'lib/pacio_inferno_core/generator/ig_metadata_extractor.rb', line 7

def ig_resources
  @ig_resources
end

#metadataObject

Returns the value of attribute metadata.



7
8
9
# File 'lib/pacio_inferno_core/generator/ig_metadata_extractor.rb', line 7

def 
  @metadata
end

Instance Method Details

#add_metadata_from_igObject



22
23
24
25
# File 'lib/pacio_inferno_core/generator/ig_metadata_extractor.rb', line 22

def 
  .ig_version = "v#{ig_resources.ig.version}"
  .ig_package_id = ig_resources.ig.packageId
end

#add_metadata_from_resourcesObject



45
46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/pacio_inferno_core/generator/ig_metadata_extractor.rb', line 45

def 
  .groups =
    resources_in_capability_statement.flat_map do |resource|
      resource.supportedProfile&.map do |supported_profile|
        # supported_profile = supported_profile.split('|').first
        next if supported_profile == 'http://hl7.org/fhir/uv/sdc/StructureDefinition/sdc-questionnaire'

        GroupMetadataExtractor.new(resource, supported_profile, , ig_resources).
      end
    end.compact

  .postprocess_groups(ig_resources)
end

#extractObject



16
17
18
19
20
# File 'lib/pacio_inferno_core/generator/ig_metadata_extractor.rb', line 16

def extract
  
  
  
end

#remove_extra_supported_profilesObject



37
38
39
40
41
42
43
# File 'lib/pacio_inferno_core/generator/ig_metadata_extractor.rb', line 37

def remove_extra_supported_profiles
  ig_resources.capability_statement.rest.first.resource
    .find { |resource| resource.type == 'Observation' }
    .supportedProfile.delete_if do |profile_url|
    SpecialCases::PROFILES_TO_EXCLUDE.include?(profile_url)
  end
end

#remove_version_from_supported_profilesObject



31
32
33
34
35
# File 'lib/pacio_inferno_core/generator/ig_metadata_extractor.rb', line 31

def remove_version_from_supported_profiles
  resources_in_capability_statement.each do |resource|
    resource.supportedProfile.map! { |profile_url| profile_url.split('|').first }
  end
end

#resources_in_capability_statementObject



27
28
29
# File 'lib/pacio_inferno_core/generator/ig_metadata_extractor.rb', line 27

def resources_in_capability_statement
  ig_resources.capability_statement.rest.first.resource
end