Skip to content
This repository was archived by the owner on Jul 24, 2021. It is now read-only.

Commit b9c0597

Browse files
committed
Allow for offline usage and always update if not offline
1 parent 7fe9820 commit b9c0597

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

lib/dependency_spy.rb

+6-3
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,12 @@
2828
module DependencySpy
2929
class API
3030

31-
def self.check(path = Dir.pwd, files = nil, platform = nil, database_path = YAVDB::Constants::DEFAULT_YAVDB_DATABASE_PATH)
32-
unless File.exist?(database_path)
33-
puts 'Could not find local vulnerability database, going to download the database.'
31+
def self.check(path = Dir.pwd, files = nil, platform = nil, database_path = YAVDB::Constants::DEFAULT_YAVDB_DATABASE_PATH, offline = false)
32+
if !File.exist?(database_path) && offline
33+
puts 'No local database found. Cannot obtain database since offline mode is enabled.'
34+
exit(10)
35+
elsif !offline
36+
puts 'Going to update the local vulnerability database.'
3437
YAVDB::API.download_database(false, YAVDB::Constants::DEFAULT_YAVDB_PATH)
3538
end
3639

lib/dependency_spy/cli.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,10 @@ class CLI < Thor
4545
method_option('platform', :aliases => :m, :type => :string, :enum => YAVDB::Constants::POSSIBLE_PACKAGE_MANAGERS.map(&:downcase))
4646
method_option('output-path', :aliases => :o, :type => :string)
4747
method_option('database-path', :type => :string, :aliases => :p, :default => YAVDB::Constants::DEFAULT_YAVDB_DATABASE_PATH)
48+
method_option('offline', :type => :boolean, :default => false)
4849

4950
def check
50-
manifests = API.check(options['path'], options['files'], options['platform'], options['database-path'])
51+
manifests = API.check(options['path'], options['files'], options['platform'], options['database-path'], options['offline'])
5152

5253
formatted_output =
5354
FORMATTERS

0 commit comments

Comments
 (0)