Class: Bundler::Plumber::Database

Inherits:
Object
  • Object
show all
Defined in:
lib/bundler/plumber/database.rb

Overview

Represents the directory of advisories, grouped by gem name and CVE number.

Constant Summary collapse

URL =

Git URL of the ruby-mem-advisory-db

'https://github.com/rubymem/ruby-mem-advisory-db.git'
VENDORED_PATH =

Default path to the ruby-mem-advisory-db

File.expand_path(File.join(File.dirname(__FILE__),'..','..','..','data','ruby-mem-advisory-db'))
VENDORED_TIMESTAMP =

Timestamp for when the database was last updated

Time.parse(File.read("#{VENDORED_PATH}.ts")).utc
USER_PATH =

Path to the user's copy of the ruby-mem-advisory-db

File.expand_path(File.join(ENV['HOME'],'.local','share','ruby-mem-advisory-db'))

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path = self.class.path) ⇒ Database

Initializes the Advisory Database.

Parameters:

  • path (String) (defaults to: self.class.path)

    The path to the advisory database.

Raises:

  • (ArgumentError)

    The path was not a directory.



56
57
58
59
60
61
62
# File 'lib/bundler/plumber/database.rb', line 56

def initialize(path=self.class.path)
  unless File.directory?(path)
    raise(ArgumentError,"#{path.dump} is not a directory")
  end

  @path = path
end

Instance Attribute Details

#pathObject (readonly)

The path to the advisory database



45
46
47
# File 'lib/bundler/plumber/database.rb', line 45

def path
  @path
end

Class Method Details

.pathString

The default path for the database.

Returns:

  • (String)

    The path to the database directory.



70
71
72
73
74
75
76
77
78
79
80
81
82
83
# File 'lib/bundler/plumber/database.rb', line 70

def self.path
  if File.directory?(USER_PATH)
    t1 = Dir.chdir(USER_PATH) { Time.parse(`git log --date=iso8601 --pretty="%cd" -1`) }
    t2 = VENDORED_TIMESTAMP

    if t1 >= t2
      USER_PATH
    else
      VENDORED_PATH
    end
  else
    VENDORED_PATH
  end
end

.update!(options = {}) ⇒ Boolean?

Note:

Requires network access.

Updates the ruby-mem-advisory-db.

Parameters:

  • Specify (Boolean, quiet)

    whether git should be --quiet.

Returns:

  • (Boolean, nil)

    Specifies whether the update was successful. A nil indicates no update was performed.



98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# File 'lib/bundler/plumber/database.rb', line 98

def self.update!(options={})
  raise "Invalid option(s)" unless (options.keys - [:quiet]).empty?
  if File.directory?(USER_PATH)
    if File.directory?(File.join(USER_PATH, ".git"))
      Dir.chdir(USER_PATH) do
        command = "git fetch --all; git reset --hard origin/main"
        command << ' --quiet' if options[:quiet]

        system *command
      end
    end
  else
    command = %w(git clone)
    command << '--quiet' if options[:quiet]
    command << URL << USER_PATH
    system *command
  end
end

Instance Method Details

#advisories {|advisory| ... } ⇒ Enumerator

Enumerates over every advisory in the database.

Yields:

  • (advisory)

    If a block is given, it will be passed each advisory.

Yield Parameters:

  • advisory (Advisory)

    An advisory from the database.

Returns:

  • (Enumerator)

    If no block is given, an Enumerator will be returned.



129
130
131
132
133
134
135
# File 'lib/bundler/plumber/database.rb', line 129

def advisories(&block)
  return enum_for(__method__) unless block_given?

  each_advisory_path do |path|
    yield Advisory.load(path)
  end
end

#advisories_for(name) {|advisory| ... } ⇒ Enumerator

Enumerates over advisories for the given gem.

Parameters:

  • name (String)

    The gem name to lookup.

Yields:

  • (advisory)

    If a block is given, each advisory for the given gem will be yielded.

Yield Parameters:

  • advisory (Advisory)

    An advisory for the given gem.

Returns:

  • (Enumerator)

    If no block is given, an Enumerator will be returned.



152
153
154
155
156
157
158
# File 'lib/bundler/plumber/database.rb', line 152

def advisories_for(name)
  return enum_for(__method__,name) unless block_given?

  each_advisory_path_for(name) do |path|
    yield Advisory.load(path)
  end
end

#check_gem(gem) {|advisory| ... } ⇒ Enumerator

Verifies whether the gem is effected by any advisories.

Parameters:

  • gem (Gem::Specification)

    The gem to verify.

Yields:

  • (advisory)

    If a block is given, it will be passed advisories that effect the gem.

Yield Parameters:

  • advisory (Advisory)

    An advisory that effects the specific version of the gem.

Returns:

  • (Enumerator)

    If no block is given, an Enumerator will be returned.



176
177
178
179
180
181
182
183
184
# File 'lib/bundler/plumber/database.rb', line 176

def check_gem(gem)
  return enum_for(__method__,gem) unless block_given?

  advisories_for(gem.name) do |advisory|
    if advisory.leaky?(gem.version)
      yield advisory
    end
  end
end

#each_advisory_path {|path| ... } ⇒ Object (protected)

Enumerates over every advisory path in the database.

Yields:

  • (path)

    The given block will be passed each advisory path.

Yield Parameters:

  • path (String)

    A path to an advisory .yml file.



227
228
229
# File 'lib/bundler/plumber/database.rb', line 227

def each_advisory_path(&block)
  Dir.glob(File.join(@path,'gems','*','*.yml'),&block)
end

#each_advisory_path_for(name) {|path| ... } ⇒ Object (protected)

Enumerates over the advisories for the given gem.

Parameters:

  • name (String)

    The gem of the gem.

Yields:

  • (path)

    The given block will be passed each advisory path.

Yield Parameters:

  • path (String)

    A path to an advisory .yml file.



243
244
245
# File 'lib/bundler/plumber/database.rb', line 243

def each_advisory_path_for(name,&block)
  Dir.glob(File.join(@path,'gems',name,'*.yml'),&block)
end

#inspectString

Inspects the database.

Returns:

  • (String)

    The inspected database.



212
213
214
# File 'lib/bundler/plumber/database.rb', line 212

def inspect
  "#<#{self.class}:#{self}>"
end

#sizeInteger

The number of advisories within the database.

Returns:

  • (Integer)

    The number of advisories.



192
193
194
# File 'lib/bundler/plumber/database.rb', line 192

def size
  each_advisory_path.count
end

#to_sString

Converts the database to a String.

Returns:

  • (String)

    The path to the database.



202
203
204
# File 'lib/bundler/plumber/database.rb', line 202

def to_s
  @path
end