Class: Bibliothecary::Parsers::NPM

Inherits:
Object
  • Object
show all
Defined in:
lib/bibliothecary/parsers/npm.rb

Constant Summary collapse

PLATFORM_NAME =
'npm'

Class Method Summary collapse

Class Method Details

.analyse(folder_path, file_list) ⇒ Object



19
20
21
22
# File 'lib/bibliothecary/parsers/npm.rb', line 19

def self.analyse(folder_path, file_list)
  [analyse_package_json(folder_path, file_list),
  analyse_shrinkwrap(folder_path, file_list)]
end

.analyse_package_json(folder_path, file_list) ⇒ Object



24
25
26
27
28
29
30
31
32
33
34
35
# File 'lib/bibliothecary/parsers/npm.rb', line 24

def self.analyse_package_json(folder_path, file_list)
  path = file_list.find{|path| path.gsub(folder_path, '').gsub(/^\//, '').match(/^package\.json$/) }
  return unless path

  manifest = JSON.parse File.open(path).read

  {
    platform: PLATFORM_NAME,
    path: path,
    dependencies: parse_manifest(manifest)
  }
end

.analyse_shrinkwrap(folder_path, file_list) ⇒ Object



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

def self.analyse_shrinkwrap(folder_path, file_list)
  path = file_list.find{|path| path.gsub(folder_path, '').gsub(/^\//, '').match(/^npm-shrinkwrap\.json$/) }
  return unless path

  manifest = JSON.parse File.open(path).read

  {
    platform: PLATFORM_NAME,
    path: path,
    dependencies: parse_shrinkwrap(manifest)
  }
end

.map_dependencies(hash, key, type) ⇒ Object



65
66
67
68
69
70
71
72
73
# File 'lib/bibliothecary/parsers/npm.rb', line 65

def self.map_dependencies(hash, key, type)
  hash.fetch(key,[]).map do |name, requirement|
    {
      name: name,
      requirement: requirement,
      type: type
    }
  end
end

.parse(filename, file_contents) ⇒ Object



8
9
10
11
12
13
14
15
16
17
# File 'lib/bibliothecary/parsers/npm.rb', line 8

def self.parse(filename, file_contents)
  json = JSON.parse(file_contents)
  if filename.match(/^package\.json$/)
    parse_manifest(json)
  elsif filename.match(/^npm-shrinkwrap\.json$/)
    parse_shrinkwrap(json)
  else
    []
  end
end

.parse_manifest(manifest) ⇒ Object



60
61
62
63
# File 'lib/bibliothecary/parsers/npm.rb', line 60

def self.parse_manifest(manifest)
  map_dependencies(manifest, 'dependencies', 'runtime') +
  map_dependencies(manifest, 'devDependencies', 'development')
end

.parse_shrinkwrap(manifest) ⇒ Object



50
51
52
53
54
55
56
57
58
# File 'lib/bibliothecary/parsers/npm.rb', line 50

def self.parse_shrinkwrap(manifest)
  manifest.fetch('dependencies',[]).map do |name, requirement|
    {
      name: name,
      requirement: requirement["version"],
      type: 'runtime'
    }
  end
end