Class: Bibliothecary::Parsers::Packagist

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

Class Method Summary collapse

Methods included from Analyser

create_analysis, create_error_analysis, included

Class Method Details

.mappingObject



10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/bibliothecary/parsers/packagist.rb', line 10

def self.mapping
  {
    match_filename("composer.json") => {
      kind: "manifest",
      parser: :parse_manifest,
    },
    match_filename("composer.lock") => {
      kind: "lockfile",
      parser: :parse_lockfile,
    },
  }
end

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



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
58
59
60
61
62
# File 'lib/bibliothecary/parsers/packagist.rb', line 27

def self.parse_lockfile(file_contents, options: {})
  manifest = JSON.parse file_contents
  manifest.fetch("packages", []).map do |dependency|
    requirement = dependency["version"]

    # Store Drupal version if Drupal, but include the original manifest version for reference
    if drupal_module?(dependency)
      original_requirement = requirement
      requirement = dependency.dig("source", "reference")
    end

    Dependency.new(
      name: dependency["name"],
      requirement: requirement,
      type: "runtime",
      original_requirement: original_requirement,
      source: options.fetch(:filename, nil)
    )
  end + manifest.fetch("packages-dev", []).map do |dependency|
    requirement = dependency["version"]

    # Store Drupal version if Drupal, but include the original manifest version for reference
    if drupal_module?(dependency)
      original_requirement = requirement
      requirement = dependency.dig("source", "reference")
    end

    Dependency.new(
      name: dependency["name"],
      requirement: requirement,
      type: "development",
      original_requirement: original_requirement,
      source: options.fetch(:filename, nil)
    )
  end
end

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



64
65
66
67
68
# File 'lib/bibliothecary/parsers/packagist.rb', line 64

def self.parse_manifest(file_contents, options: {})
  manifest = JSON.parse file_contents
  map_dependencies(manifest, "require", "runtime", options.fetch(:filename, nil)) +
    map_dependencies(manifest, "require-dev", "development", options.fetch(:filename, nil))
end