Class: Bibliothecary::Parsers::Carthage

Inherits:
Object
  • Object
show all
Includes:
Analyser
Defined in:
lib/bibliothecary/parsers/carthage.rb

Class Method Summary collapse

Methods included from Analyser

create_analysis, create_error_analysis, included

Class Method Details

.map_dependencies(manifest, path) ⇒ Object



37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/bibliothecary/parsers/carthage.rb', line 37

def self.map_dependencies(manifest, path)
  response = Typhoeus.post("#{Bibliothecary.configuration.carthage_parser_host}/#{path}", params: { body: manifest })
  raise Bibliothecary::RemoteParsingError.new("Http Error #{response.response_code} when contacting: #{Bibliothecary.configuration.carthage_parser_host}/#{path}", response.response_code) unless response.success?
  json = JSON.parse(response.body)

  json.map do |dependency|
    {
      name: dependency['name'],
      requirement: dependency['version'],
      type: dependency["type"]
    }
  end
end

.mappingObject



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/bibliothecary/parsers/carthage.rb', line 6

def self.mapping
  {
    match_filename("Cartfile") => {
      kind: 'manifest',
      parser: :parse_cartfile
    },
    match_filename("Cartfile.private") => {
      kind: 'manifest',
      parser: :parse_cartfile_private
    },
    match_filename("Cartfile.resolved") => {
      kind: 'lockfile',
      parser: :parse_cartfile_resolved
    }
  }
end

.parse_cartfile(file_contents, options: {}) ⇒ Object



25
26
27
# File 'lib/bibliothecary/parsers/carthage.rb', line 25

def self.parse_cartfile(file_contents, options: {})
  map_dependencies(file_contents, 'cartfile')
end

.parse_cartfile_private(file_contents, options: {}) ⇒ Object



29
30
31
# File 'lib/bibliothecary/parsers/carthage.rb', line 29

def self.parse_cartfile_private(file_contents, options: {})
  map_dependencies(file_contents, 'cartfile.private')
end

.parse_cartfile_resolved(file_contents, options: {}) ⇒ Object



33
34
35
# File 'lib/bibliothecary/parsers/carthage.rb', line 33

def self.parse_cartfile_resolved(file_contents, options: {})
  map_dependencies(file_contents, 'cartfile.resolved')
end