Module: Inferno::Utils::IgDownloader
- Included in:
- CLI::New
- Defined in:
- lib/inferno/utils/ig_downloader.rb
Constant Summary collapse
- FHIR_PACKAGE_NAME_REG_EX =
/^[a-z][a-zA-Z0-9-]*\.([a-z][a-zA-Z0-9-]*\.?)*/
- HTTP_URI_REG_EX =
%r{^https?://[^/?#]+[^?#]*}
- FILE_URI_REG_EX =
%r{^file://(.+)}
- HTTP_URI_END_REG_EX =
%r{[^/]*\.x?html?$}
Instance Method Summary collapse
-
#ig_file(suffix = nil) ⇒ Object
-
#ig_http_url(ig_page_url) ⇒ Object
-
#ig_path ⇒ Object
-
#ig_registry_url(ig_npm_style) ⇒ Object
-
#load_ig(ig_input, idx = nil, thor_config = { verbose: true }) ⇒ Object
Instance Method Details
#ig_file(suffix = nil) ⇒ Object
13 14 15 |
# File 'lib/inferno/utils/ig_downloader.rb', line 13 def ig_file(suffix = nil) File.join(ig_path, suffix ? "package_#{suffix}.tgz" : 'package.tgz') end |
#ig_http_url(ig_page_url) ⇒ Object
48 49 50 51 52 53 54 |
# File 'lib/inferno/utils/ig_downloader.rb', line 48 def ig_http_url(ig_page_url) return ig_page_url if ig_page_url.end_with? 'package.tgz' return "#{ig_page_url}package.tgz" if ig_page_url.end_with? '/' ig_page_url.gsub(HTTP_URI_END_REG_EX, 'package.tgz') end |
#ig_path ⇒ Object
9 10 11 |
# File 'lib/inferno/utils/ig_downloader.rb', line 9 def ig_path File.join('lib', library_name, 'igs') end |
#ig_registry_url(ig_npm_style) ⇒ Object
37 38 39 40 41 42 43 44 45 46 |
# File 'lib/inferno/utils/ig_downloader.rb', line 37 def ig_registry_url(ig_npm_style) unless ig_npm_style.include? '@' raise StandardError, <<~NO_VERSION No IG version specified for #{ig_npm_style}; you must specify one with '@'. I.e: hl7.fhir.us.core@6.1.0 NO_VERSION end package_name, version = ig_npm_style.split('@') "https://packages.fhir.org/#{package_name}/-/#{package_name}-#{version}.tgz" end |
#load_ig(ig_input, idx = nil, thor_config = { verbose: true }) ⇒ Object
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
# File 'lib/inferno/utils/ig_downloader.rb', line 17 def load_ig(ig_input, idx = nil, thor_config = { verbose: true }) case ig_input when FHIR_PACKAGE_NAME_REG_EX uri = ig_registry_url(ig_input) when HTTP_URI_REG_EX uri = ig_http_url(ig_input) when FILE_URI_REG_EX uri = ig_input[7..] else raise StandardError, <<~FAILED_TO_LOAD Could not find implementation guide: #{ig_input} Put its package.tgz file directly in #{ig_path} FAILED_TO_LOAD end # use Thor's get to support CLI options config get(uri, ig_file(idx), thor_config) uri end |