Class: Bundler::Audit::Database
- Inherits:
-
Object
- Object
- Bundler::Audit::Database
- Defined in:
- lib/bundler/audit/database.rb
Overview
Represents the directory of advisories, grouped by gem name and CVE number.
Constant Summary collapse
- URL =
Git URL of the ruby-advisory-db
'https://github.com/rubysec/ruby-advisory-db.git'
- VENDORED_PATH =
Default path to the ruby-advisory-db
File.(File.join(File.dirname(__FILE__),'..','..','..','data','ruby-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-advisory-db
File.(File.join(ENV['HOME'],'.local','share','ruby-advisory-db'))
Instance Attribute Summary collapse
-
#path ⇒ Object
readonly
The path to the advisory database.
Class Method Summary collapse
-
.path ⇒ String
The default path for the database.
-
.update!(options = {}) ⇒ Boolean?
Updates the ruby-advisory-db.
Instance Method Summary collapse
-
#advisories {|advisory| ... } ⇒ Enumerator
Enumerates over every advisory in the database.
-
#advisories_for(name) {|advisory| ... } ⇒ Enumerator
Enumerates over advisories for the given gem.
-
#check_gem(gem) {|advisory| ... } ⇒ Enumerator
Verifies whether the gem is effected by any advisories.
-
#each_advisory_path {|path| ... } ⇒ Object
protected
Enumerates over every advisory path in the database.
-
#each_advisory_path_for(name) {|path| ... } ⇒ Object
protected
Enumerates over the advisories for the given gem.
-
#initialize(path = self.class.path) ⇒ Database
constructor
Initializes the Advisory Database.
-
#inspect ⇒ String
Inspects the database.
-
#size ⇒ Integer
The number of advisories within the database.
-
#to_s ⇒ String
Converts the database to a String.
Constructor Details
#initialize(path = self.class.path) ⇒ Database
Initializes the Advisory Database.
55 56 57 58 59 60 61 |
# File 'lib/bundler/audit/database.rb', line 55 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
#path ⇒ Object (readonly)
The path to the advisory database
44 45 46 |
# File 'lib/bundler/audit/database.rb', line 44 def path @path end |
Class Method Details
.path ⇒ String
The default path for the database.
69 70 71 72 73 74 75 76 77 78 79 80 |
# File 'lib/bundler/audit/database.rb', line 69 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 then USER_PATH else VENDORED_PATH end else VENDORED_PATH end end |
.update!(options = {}) ⇒ Boolean?
Requires network access.
Updates the ruby-advisory-db.
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
# File 'lib/bundler/audit/database.rb', line 97 def self.update!(={}) raise "Invalid option(s)" unless (.keys - [:quiet]).empty? if File.directory?(USER_PATH) if File.directory?(File.join(USER_PATH, ".git")) Dir.chdir(USER_PATH) do command = %w(git pull) command << '--quiet' if [:quiet] command << 'origin' << 'master' system *command end end else command = %w(git clone) command << '--quiet' if [:quiet] command << URL << USER_PATH system *command end end |
Instance Method Details
#advisories {|advisory| ... } ⇒ Enumerator
Enumerates over every advisory in the database.
128 129 130 131 132 133 134 |
# File 'lib/bundler/audit/database.rb', line 128 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.
151 152 153 154 155 156 157 |
# File 'lib/bundler/audit/database.rb', line 151 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.
175 176 177 178 179 180 181 182 183 |
# File 'lib/bundler/audit/database.rb', line 175 def check_gem(gem) return enum_for(__method__,gem) unless block_given? advisories_for(gem.name) do |advisory| if advisory.vulnerable?(gem.version) yield advisory end end end |
#each_advisory_path {|path| ... } ⇒ Object (protected)
Enumerates over every advisory path in the database.
226 227 228 |
# File 'lib/bundler/audit/database.rb', line 226 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.
242 243 244 |
# File 'lib/bundler/audit/database.rb', line 242 def each_advisory_path_for(name,&block) Dir.glob(File.join(@path,'gems',name,'*.yml'),&block) end |
#inspect ⇒ String
Inspects the database.
211 212 213 |
# File 'lib/bundler/audit/database.rb', line 211 def inspect "#<#{self.class}:#{self}>" end |
#size ⇒ Integer
The number of advisories within the database.
191 192 193 |
# File 'lib/bundler/audit/database.rb', line 191 def size each_advisory_path.count end |
#to_s ⇒ String
Converts the database to a String.
201 202 203 |
# File 'lib/bundler/audit/database.rb', line 201 def to_s @path end |