diffend 0.2.35 → 0.2.40
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/.github/workflows/ci.yml +32 -8
- data/.ruby-version +1 -1
- data/CHANGELOG.md +34 -1
- data/Gemfile +1 -0
- data/Gemfile.lock +11 -7
- data/lib/diffend/build_bundler_definition.rb +4 -4
- data/lib/diffend/bundle_secure.rb +23 -0
- data/lib/diffend/commands.rb +2 -0
- data/lib/diffend/config.rb +34 -7
- data/lib/diffend/configs/error_messages.rb +38 -0
- data/lib/diffend/configs/fetcher.rb +11 -28
- data/lib/diffend/configs/validator.rb +4 -34
- data/lib/diffend/enabled.rb +22 -0
- data/lib/diffend/execute.rb +4 -4
- data/lib/diffend/local_context.rb +1 -1
- data/lib/diffend/local_context/host.rb +0 -12
- data/lib/diffend/local_context/packages.rb +40 -37
- data/lib/diffend/local_context/platform.rb +1 -1
- data/lib/diffend/logger.rb +9 -9
- data/lib/diffend/monitor.rb +32 -10
- data/lib/diffend/plugin.rb +9 -15
- data/lib/diffend/request.rb +0 -1
- data/lib/diffend/request_verdict.rb +5 -4
- data/lib/diffend/version.rb +1 -1
- data/plugins.rb +1 -0
- metadata +6 -3
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ab9ba402e382256b6318f8a4b278ae8e6ae0e68dc9ab15fedca98b8e46f8a105
|
4
|
+
data.tar.gz: 7f0fa88a9af55b5b7d2992fa67fcde7f464f36b68801f4b69b3d0204033428df
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e41cad9b056aed9f846424964a14862cf5dfeab3596b93673bf7ed9ceacc50beab92157cfe8b98aa4a35c8bce5341862c79e6a35ae03fdc754a85eeb730b7077
|
7
|
+
data.tar.gz: dfd06d10e56962b7ffa3eca0530b8b7fcaa9bb83169c2bd52e672a957de9dba22dd63f2dd91c3d90441c466256446d4609c293e028e75deaa66db28f47fccbfc
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/.github/workflows/ci.yml
CHANGED
@@ -2,16 +2,23 @@ name: ci
|
|
2
2
|
|
3
3
|
jobs:
|
4
4
|
specs:
|
5
|
-
|
5
|
+
needs:
|
6
|
+
- diffend
|
7
|
+
- coditsu
|
6
8
|
|
9
|
+
runs-on: ubuntu-latest
|
7
10
|
strategy:
|
8
11
|
fail-fast: false
|
9
12
|
matrix:
|
10
13
|
ruby:
|
14
|
+
- '3.0'
|
11
15
|
- '2.7'
|
12
16
|
- '2.6'
|
13
17
|
- '2.5'
|
14
|
-
- 'jruby'
|
18
|
+
- 'jruby-9.2.14.0'
|
19
|
+
bundler:
|
20
|
+
- '2.1.4'
|
21
|
+
- '2.2.7'
|
15
22
|
include:
|
16
23
|
- ruby: '2.7'
|
17
24
|
coverage: 'true'
|
@@ -30,19 +37,36 @@ jobs:
|
|
30
37
|
uses: ruby/setup-ruby@v1
|
31
38
|
with:
|
32
39
|
ruby-version: ${{matrix.ruby}}
|
33
|
-
|
34
|
-
run: |
|
35
|
-
gem install bundler --no-document
|
40
|
+
bundler: ${{matrix.bundler}}
|
36
41
|
- name: Bundle install
|
37
42
|
env:
|
38
43
|
DIFFEND_DEVELOPMENT: true
|
39
44
|
run: |
|
40
|
-
bundle config path vendor/bundle
|
41
|
-
bundle install --jobs 4 --retry 3
|
45
|
+
bundle _${{matrix.bundler}}_ config path vendor/bundle
|
46
|
+
bundle _${{matrix.bundler}}_ install --jobs 4 --retry 3
|
42
47
|
- name: Run all tests
|
43
48
|
env:
|
44
49
|
GITHUB_COVERAGE: ${{matrix.coverage}}
|
45
|
-
run: bundle exec rspec
|
50
|
+
run: bundle _${{matrix.bundler}}_ exec rspec
|
51
|
+
|
52
|
+
diffend:
|
53
|
+
runs-on: ubuntu-latest
|
54
|
+
strategy:
|
55
|
+
fail-fast: false
|
56
|
+
steps:
|
57
|
+
- uses: actions/checkout@v2
|
58
|
+
with:
|
59
|
+
fetch-depth: 0
|
60
|
+
- name: Set up Ruby
|
61
|
+
uses: ruby/setup-ruby@v1
|
62
|
+
with:
|
63
|
+
ruby-version: 3.0
|
64
|
+
- name: Install latest bundler
|
65
|
+
run: gem install bundler --no-document
|
66
|
+
- name: Install Diffend plugin
|
67
|
+
run: bundle plugin install diffend
|
68
|
+
- name: Bundle Secure
|
69
|
+
run: bundle secure
|
46
70
|
|
47
71
|
coditsu:
|
48
72
|
runs-on: ubuntu-latest
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
3.0.0
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,34 @@
|
|
2
2
|
|
3
3
|
## [Unreleased][master]
|
4
4
|
|
5
|
+
## [0.2.40] (2021-02-23)
|
6
|
+
- don't expose ips, we can identify instance by a hostname ([#108](https://github.com/diffend-io/diffend-ruby/pull/108))
|
7
|
+
- don't set `verify_mode` when creating request in `Diffend::Request`, use default value set by `use_ssl` flag instead ([#109](https://github.com/diffend-io/diffend-ruby/pull/109))
|
8
|
+
|
9
|
+
## [0.2.39] (2021-01-18)
|
10
|
+
- handle a case if we start to fast and some gems require things it may break the execution ([#101](https://github.com/diffend-io/diffend-ruby/pull/101))
|
11
|
+
|
12
|
+
## [0.2.38] (2021-01-15)
|
13
|
+
- allow executing `bundle secure` without plugin being present in the Gemfile ([#96](https://github.com/diffend-io/diffend-ruby/pull/96))
|
14
|
+
- be explicit about `Bundler` scope ([#97](https://github.com/diffend-io/diffend-ruby/pull/97))
|
15
|
+
- switch to exponential backoff in `Diffend::Monitor` ([#98](https://github.com/diffend-io/diffend-ruby/pull/98))
|
16
|
+
|
17
|
+
## [0.2.37] (2021-01-05)
|
18
|
+
- add support for ENV loaded at runtime ([#92](https://github.com/diffend-io/diffend-ruby/pull/92))
|
19
|
+
- allow us to have more control over config errors ([#91](https://github.com/diffend-io/diffend-ruby/pull/91))
|
20
|
+
- add `bundle secure` command ([#90](https://github.com/diffend-io/diffend-ruby/pull/90))
|
21
|
+
- test against bundler 2.1 and 2.2 ([#83](https://github.com/diffend-io/diffend-ruby/pull/83))
|
22
|
+
- test against ruby 3.0.0 ([#89](https://github.com/diffend-io/diffend-ruby/pull/89))
|
23
|
+
- simplify how we build full json in specs ([#82](https://github.com/diffend-io/diffend-ruby/pull/82))
|
24
|
+
- simplify how we build bundler json in specs ([#84](https://github.com/diffend-io/diffend-ruby/pull/84))
|
25
|
+
- simplify how we build diffend json in specs ([#85](https://github.com/diffend-io/diffend-ruby/pull/85))
|
26
|
+
- simplify how we build rubygems json in specs ([#86](https://github.com/diffend-io/diffend-ruby/pull/86))
|
27
|
+
- simplify how we build packages platforms json in specs ([#87](https://github.com/diffend-io/diffend-ruby/pull/87))
|
28
|
+
|
29
|
+
## [0.2.36] (2020-12-06)
|
30
|
+
- handle `Bundler::PermissionError` ([#79](https://github.com/diffend-io/diffend-ruby/pull/79))
|
31
|
+
- use cache to resolve dependencies in exec mode ([#78](https://github.com/diffend-io/diffend-ruby/pull/78))
|
32
|
+
|
5
33
|
## [0.2.35] (2020-11-04)
|
6
34
|
- clean command name and title of a process ([#76](https://github.com/diffend-io/diffend-ruby/pull/76))
|
7
35
|
- handle `uninitialized constant #<Class:Diffend::Configs::Fetcher>::ERB` ([#75](https://github.com/diffend-io/diffend-ruby/pull/75))
|
@@ -98,7 +126,12 @@
|
|
98
126
|
|
99
127
|
- initial release
|
100
128
|
|
101
|
-
[master]: https://github.com/diffend-io/diffend-ruby/compare/v0.2.
|
129
|
+
[master]: https://github.com/diffend-io/diffend-ruby/compare/v0.2.40...HEAD
|
130
|
+
[0.2.40]: https://github.com/diffend-io/diffend-ruby/compare/v0.2.39...v0.2.40
|
131
|
+
[0.2.39]: https://github.com/diffend-io/diffend-ruby/compare/v0.2.38...v0.2.39
|
132
|
+
[0.2.38]: https://github.com/diffend-io/diffend-ruby/compare/v0.2.37...v0.2.38
|
133
|
+
[0.2.37]: https://github.com/diffend-io/diffend-ruby/compare/v0.2.36...v0.2.37
|
134
|
+
[0.2.36]: https://github.com/diffend-io/diffend-ruby/compare/v0.2.35...v0.2.36
|
102
135
|
[0.2.35]: https://github.com/diffend-io/diffend-ruby/compare/v0.2.34...v0.2.35
|
103
136
|
[0.2.34]: https://github.com/diffend-io/diffend-ruby/compare/v0.2.33...v0.2.34
|
104
137
|
[0.2.33]: https://github.com/diffend-io/diffend-ruby/compare/v0.2.32...v0.2.33
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,36 +1,40 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
diffend (0.2.
|
4
|
+
diffend (0.2.40)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
8
8
|
specs:
|
9
|
+
byebug (11.1.3)
|
9
10
|
diff-lcs (1.4.4)
|
10
|
-
rake (13.0.
|
11
|
+
rake (13.0.3)
|
11
12
|
rspec (3.10.0)
|
12
13
|
rspec-core (~> 3.10.0)
|
13
14
|
rspec-expectations (~> 3.10.0)
|
14
15
|
rspec-mocks (~> 3.10.0)
|
15
|
-
rspec-core (3.10.
|
16
|
+
rspec-core (3.10.1)
|
16
17
|
rspec-support (~> 3.10.0)
|
17
|
-
rspec-expectations (3.10.
|
18
|
+
rspec-expectations (3.10.1)
|
18
19
|
diff-lcs (>= 1.2.0, < 2.0)
|
19
20
|
rspec-support (~> 3.10.0)
|
20
|
-
rspec-mocks (3.10.
|
21
|
+
rspec-mocks (3.10.2)
|
21
22
|
diff-lcs (>= 1.2.0, < 2.0)
|
22
23
|
rspec-support (~> 3.10.0)
|
23
|
-
rspec-support (3.10.
|
24
|
+
rspec-support (3.10.2)
|
24
25
|
|
25
26
|
PLATFORMS
|
26
27
|
java
|
27
28
|
ruby
|
29
|
+
universal-java-13
|
30
|
+
x86_64-darwin-19
|
28
31
|
|
29
32
|
DEPENDENCIES
|
30
33
|
bundler
|
34
|
+
byebug
|
31
35
|
diffend!
|
32
36
|
rake
|
33
37
|
rspec
|
34
38
|
|
35
39
|
BUNDLED WITH
|
36
|
-
2.
|
40
|
+
2.2.7
|
@@ -10,14 +10,14 @@ module Diffend
|
|
10
10
|
# @param gemfile [String] path to Gemfile
|
11
11
|
# @param lockfile [String] path to Gemfile.lock
|
12
12
|
#
|
13
|
-
# @return [Bundler::Definition]
|
13
|
+
# @return [::Bundler::Definition]
|
14
14
|
def call(command, gemfile, lockfile)
|
15
15
|
unlock = command == 'update' ? true : nil
|
16
16
|
|
17
|
-
Bundler.configure
|
18
|
-
Bundler::Fetcher.disable_endpoint = nil
|
17
|
+
::Bundler.configure
|
18
|
+
::Bundler::Fetcher.disable_endpoint = nil
|
19
19
|
|
20
|
-
Bundler::Definition
|
20
|
+
::Bundler::Definition
|
21
21
|
.build(gemfile, lockfile, unlock)
|
22
22
|
.tap(&:validate_runtime!)
|
23
23
|
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Diffend
|
4
|
+
# Extend bundler with a new secure command to be able to run Diffend separately
|
5
|
+
class BundleSecure
|
6
|
+
::Bundler::Plugin::API.command(Diffend::Commands::SECURE, self)
|
7
|
+
|
8
|
+
# Execute diffend check
|
9
|
+
#
|
10
|
+
# @param _name [String] command name
|
11
|
+
# @param _args [Array] arguments from ARGV
|
12
|
+
def exec(_name, _args)
|
13
|
+
config = Diffend::Config.new(
|
14
|
+
command: Diffend::Commands::SECURE,
|
15
|
+
severity: Diffend::Logger::INFO
|
16
|
+
)
|
17
|
+
|
18
|
+
Diffend::LatestVersion.call(config)
|
19
|
+
|
20
|
+
Diffend::Execute.call(config)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
data/lib/diffend/commands.rb
CHANGED
data/lib/diffend/config.rb
CHANGED
@@ -3,29 +3,50 @@
|
|
3
3
|
module Diffend
|
4
4
|
# Diffend config object
|
5
5
|
class Config
|
6
|
-
|
6
|
+
# Name of the diffend config file
|
7
|
+
FILENAME = '.diffend.yml'
|
8
|
+
|
9
|
+
attr_reader :project_id, :shareable_id, :shareable_key, :build_path, :env, :command, :errors
|
7
10
|
|
8
11
|
# Build diffend config object
|
9
12
|
#
|
13
|
+
# @param command [String] command executed via bundler
|
14
|
+
# @param severity [Integer] logging severity threshold
|
15
|
+
# @param build_path [String] path of the current build
|
16
|
+
#
|
10
17
|
# @return [Diffend::Config]
|
11
18
|
def initialize(command: nil, severity: nil, build_path: nil)
|
12
19
|
@log_level = severity
|
20
|
+
@errors = []
|
13
21
|
build(command, build_path)
|
14
|
-
|
22
|
+
Diffend::Configs::Validator.call(self)
|
15
23
|
end
|
16
24
|
|
25
|
+
# Initialize logger
|
17
26
|
def logger
|
18
27
|
@logger ||= Diffend::Logger.new(@log_level)
|
19
28
|
end
|
20
29
|
|
30
|
+
# @return [Boolean] true if config is valid, false otherwise
|
31
|
+
def valid?
|
32
|
+
@errors.empty?
|
33
|
+
end
|
34
|
+
|
35
|
+
# @return [Boolean] true if we want to ignore errors, false otherwise
|
21
36
|
def ignore_errors?
|
22
37
|
@ignore_errors
|
23
38
|
end
|
24
39
|
|
40
|
+
# @return [Boolean] true if we are in development mode, false otherwise
|
25
41
|
def development?
|
26
42
|
@development
|
27
43
|
end
|
28
44
|
|
45
|
+
# @return [Boolean] true if we are in deployment mode, false otherwise
|
46
|
+
def deployment?
|
47
|
+
!%w[development test].include?(env)
|
48
|
+
end
|
49
|
+
|
29
50
|
# Provides diffend commands endpoint url
|
30
51
|
#
|
31
52
|
# @return [String]
|
@@ -51,19 +72,24 @@ module Diffend
|
|
51
72
|
"https://my.diffend.io/api/projects/#{project_id}/bundle/#{request_id}/track"
|
52
73
|
end
|
53
74
|
|
75
|
+
# Print config errors
|
76
|
+
def print_errors
|
77
|
+
@errors.each { |error| logger.fatal(error) }
|
78
|
+
end
|
79
|
+
|
54
80
|
private
|
55
81
|
|
82
|
+
# @param command [String] command executed via bundler
|
83
|
+
# @param build_path [String] path of the current build
|
56
84
|
def build(command, build_path)
|
57
85
|
build_path ||= File.expand_path('..', ::Bundler.bin_path)
|
58
|
-
hash = Diffend::Configs::Fetcher.call(
|
86
|
+
hash = Diffend::Configs::Fetcher.call(plugin_path, build_path)
|
59
87
|
hash['build_path'] = build_path
|
60
88
|
hash['command'] = command || build_command
|
61
89
|
|
62
90
|
hash.each { |key, value| instance_variable_set(:"@#{key}", value) }
|
63
|
-
|
64
|
-
|
65
|
-
def validate
|
66
|
-
Diffend::Configs::Validator.call(self)
|
91
|
+
rescue Errors::MalformedConfigurationFile
|
92
|
+
@errors << Diffend::Configs::ErrorMessages.malformed_file
|
67
93
|
end
|
68
94
|
|
69
95
|
# Command that was run with bundle
|
@@ -73,6 +99,7 @@ module Diffend
|
|
73
99
|
ARGV.first || ::Bundler.feature_flag.default_cli_command.to_s
|
74
100
|
end
|
75
101
|
|
102
|
+
# @return [String] path to the plugin
|
76
103
|
def plugin_path
|
77
104
|
Pathname.new(File.expand_path('../..', __dir__))
|
78
105
|
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Diffend
|
4
|
+
# Module for all the components related to setting up the config
|
5
|
+
module Configs
|
6
|
+
# Class responsible for config error messages
|
7
|
+
module ErrorMessages
|
8
|
+
class << self
|
9
|
+
# @return [String] malformed configuration file message
|
10
|
+
def malformed_file
|
11
|
+
'Your Diffend configuration file is malformed. Please re-setup.'
|
12
|
+
end
|
13
|
+
|
14
|
+
# Missing key message
|
15
|
+
#
|
16
|
+
# @param key [String] missing key
|
17
|
+
#
|
18
|
+
# @return [String]
|
19
|
+
def missing_key(key)
|
20
|
+
"Diffend configuration is missing #{key} key"
|
21
|
+
end
|
22
|
+
|
23
|
+
# Invalid key message
|
24
|
+
#
|
25
|
+
# @param config [Diffend::Config]
|
26
|
+
# @param key [String] invalid key
|
27
|
+
#
|
28
|
+
# @return [String]
|
29
|
+
def invalid_key(config, key)
|
30
|
+
<<~MSG
|
31
|
+
Diffend configuration value for #{key} is invalid.
|
32
|
+
Expected #{Validator::KNOWN_KEYS[key].join(' or ')}, was #{config.public_send(key).class}.
|
33
|
+
MSG
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -11,7 +11,6 @@ module Diffend
|
|
11
11
|
# Class responsible for fetching the config from .diffend.yml
|
12
12
|
module Fetcher
|
13
13
|
class << self
|
14
|
-
# @param logger [Diffend::Logger]
|
15
14
|
# @param plugin_path [String] path of the plugin
|
16
15
|
# @param build_path [String] path of the current build
|
17
16
|
#
|
@@ -20,24 +19,9 @@ module Diffend
|
|
20
19
|
# @example
|
21
20
|
# details = Fetcher.new.call('./')
|
22
21
|
# details.build_path #=> './'
|
23
|
-
def call(
|
24
|
-
build(plugin_path, build_path)
|
25
|
-
rescue Errors::MalformedConfigurationFile
|
26
|
-
build_malformed_error_message(build_path)
|
27
|
-
.tap(&logger.method(:fatal))
|
28
|
-
|
29
|
-
raise Diffend::Errors::HandledException
|
30
|
-
end
|
31
|
-
|
32
|
-
private
|
33
|
-
|
34
|
-
# @param plugin_path [String] path of the plugin
|
35
|
-
# @param build_path [String] path of the current build
|
36
|
-
#
|
37
|
-
# @return [OpenStruct] open struct with config details
|
38
|
-
def build(plugin_path, build_path)
|
22
|
+
def call(plugin_path, build_path)
|
39
23
|
default_config = File.join(plugin_path, 'config', 'diffend.yml')
|
40
|
-
project_config = File.join(build_path,
|
24
|
+
project_config = File.join(build_path, Diffend::Config::FILENAME)
|
41
25
|
|
42
26
|
hash = read_file(default_config)
|
43
27
|
|
@@ -48,19 +32,18 @@ module Diffend
|
|
48
32
|
hash
|
49
33
|
end
|
50
34
|
|
51
|
-
|
52
|
-
|
35
|
+
private
|
36
|
+
|
37
|
+
# Load config file
|
38
|
+
#
|
39
|
+
# @param file_path [String]
|
40
|
+
#
|
41
|
+
# @return [Hash]
|
42
|
+
def read_file(file_path)
|
43
|
+
YAML.safe_load(ERB.new(File.read(file_path)).result)
|
53
44
|
rescue Psych::SyntaxError
|
54
45
|
raise Errors::MalformedConfigurationFile
|
55
46
|
end
|
56
|
-
|
57
|
-
# @return [String] malformed configuration file message
|
58
|
-
def build_malformed_error_message
|
59
|
-
<<~MSG
|
60
|
-
\nYour Diffend configuration file is malformed.\n
|
61
|
-
Please re-setup.\n
|
62
|
-
MSG
|
63
|
-
end
|
64
47
|
end
|
65
48
|
end
|
66
49
|
end
|
@@ -5,6 +5,7 @@ module Diffend
|
|
5
5
|
module Configs
|
6
6
|
# Class responsible for validating the config from .diffend.yml
|
7
7
|
module Validator
|
8
|
+
# List of known config keys
|
8
9
|
KNOWN_KEYS = {
|
9
10
|
project_id: [String],
|
10
11
|
shareable_id: [String],
|
@@ -21,18 +22,11 @@ module Diffend
|
|
21
22
|
def call(config)
|
22
23
|
KNOWN_KEYS.each_key do |key|
|
23
24
|
if missing?(config, key)
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
raise Diffend::Errors::HandledException
|
25
|
+
config.errors << ErrorMessages.missing_key(key)
|
26
|
+
next
|
28
27
|
end
|
29
28
|
|
30
|
-
if invalid?(config, key)
|
31
|
-
invalid_key_message(config, key)
|
32
|
-
.tap(&config.logger.method(:fatal))
|
33
|
-
|
34
|
-
raise Diffend::Errors::HandledException
|
35
|
-
end
|
29
|
+
config.errors << ErrorMessages.invalid_key(config, key) if invalid?(config, key)
|
36
30
|
end
|
37
31
|
end
|
38
32
|
|
@@ -55,30 +49,6 @@ module Diffend
|
|
55
49
|
def invalid?(config, key)
|
56
50
|
!KNOWN_KEYS[key].include?(config.public_send(key).class)
|
57
51
|
end
|
58
|
-
|
59
|
-
# Missing key message
|
60
|
-
#
|
61
|
-
# @param key [String] missing key
|
62
|
-
#
|
63
|
-
# @return [String]
|
64
|
-
def missing_key_message(key)
|
65
|
-
<<~MSG
|
66
|
-
\nDiffend configuration is missing #{key} key.\n
|
67
|
-
MSG
|
68
|
-
end
|
69
|
-
|
70
|
-
# Invalid key message
|
71
|
-
#
|
72
|
-
# @param hash [Hash] config hash
|
73
|
-
# @param key [String] invalid key
|
74
|
-
#
|
75
|
-
# @return [String]
|
76
|
-
def invalid_key_message(hash, key)
|
77
|
-
<<~MSG
|
78
|
-
\nDiffend configuration value for #{key} is invalid.\n
|
79
|
-
It should be #{KNOWN_KEYS[key].join(' or ')} but is #{hash.public_send(key).class}.\n
|
80
|
-
MSG
|
81
|
-
end
|
82
52
|
end
|
83
53
|
end
|
84
54
|
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Diffend
|
4
|
+
# Verify if the plugin is enabled
|
5
|
+
module Enabled
|
6
|
+
class << self
|
7
|
+
# Checks if plugin is enabled
|
8
|
+
#
|
9
|
+
# @return [Boolean] true if enabled, false otherwise
|
10
|
+
def call
|
11
|
+
::Bundler
|
12
|
+
.default_gemfile
|
13
|
+
.read
|
14
|
+
.split("\n")
|
15
|
+
.reject(&:empty?)
|
16
|
+
.map(&:strip)
|
17
|
+
.select { |line| line.start_with?('plugin') }
|
18
|
+
.any? { |line| line.include?('diffend') }
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
data/lib/diffend/execute.rb
CHANGED
@@ -17,12 +17,12 @@ module Diffend
|
|
17
17
|
|
18
18
|
# Build bundler definition
|
19
19
|
#
|
20
|
-
# @return [Bundler::Definition]
|
20
|
+
# @return [::Bundler::Definition]
|
21
21
|
def build_definition(command)
|
22
22
|
Diffend::BuildBundlerDefinition.call(
|
23
23
|
command,
|
24
|
-
Bundler.default_gemfile,
|
25
|
-
Bundler.default_lockfile
|
24
|
+
::Bundler.default_gemfile,
|
25
|
+
::Bundler.default_lockfile
|
26
26
|
)
|
27
27
|
end
|
28
28
|
|
@@ -30,7 +30,7 @@ module Diffend
|
|
30
30
|
# @param response [Hash] response from diffend API
|
31
31
|
def build_message(config, response)
|
32
32
|
if response.key?('error')
|
33
|
-
build_error(
|
33
|
+
build_error(response)
|
34
34
|
elsif response.key?('action')
|
35
35
|
build_verdict(config, response)
|
36
36
|
else
|
@@ -7,7 +7,7 @@ module Diffend
|
|
7
7
|
# Build diffend, host, packages, and platform specific information
|
8
8
|
#
|
9
9
|
# @param config [Diffend::Config]
|
10
|
-
# @param definition [Bundler::Definition] definition for your source
|
10
|
+
# @param definition [::Bundler::Definition] definition for your source
|
11
11
|
#
|
12
12
|
# @return [Hash] payload for diffend endpoint
|
13
13
|
def call(config, definition)
|
@@ -16,7 +16,6 @@ module Diffend
|
|
16
16
|
|
17
17
|
{
|
18
18
|
'command' => command,
|
19
|
-
'ips' => ips,
|
20
19
|
'name' => uname[:nodename],
|
21
20
|
'system' => {
|
22
21
|
'machine' => uname[:machine],
|
@@ -53,17 +52,6 @@ module Diffend
|
|
53
52
|
end
|
54
53
|
end
|
55
54
|
|
56
|
-
# Build host ips, except localhost and loopback
|
57
|
-
#
|
58
|
-
# @return [Array<String>]
|
59
|
-
def ips
|
60
|
-
Socket.ip_address_list.map do |ip|
|
61
|
-
next if ip.ipv4_loopback? || ip.ipv6_loopback? || ip.ipv6_linklocal?
|
62
|
-
|
63
|
-
ip.ip_address
|
64
|
-
end.compact
|
65
|
-
end
|
66
|
-
|
67
55
|
# Build host tags
|
68
56
|
#
|
69
57
|
# @return [Array]
|
@@ -9,8 +9,8 @@ module Diffend
|
|
9
9
|
ME_PATH = '.'
|
10
10
|
# Sources that we expect to match ourselves too
|
11
11
|
ME_SOURCES = [
|
12
|
-
Bundler::Source::Gemspec,
|
13
|
-
Bundler::Source::Path
|
12
|
+
::Bundler::Source::Gemspec,
|
13
|
+
::Bundler::Source::Path
|
14
14
|
].freeze
|
15
15
|
# List of dependency types
|
16
16
|
DEPENDENCIES_TYPES = {
|
@@ -32,14 +32,14 @@ module Diffend
|
|
32
32
|
|
33
33
|
class << self
|
34
34
|
# @param command [String] command executed via bundler
|
35
|
-
# @param definition [Bundler::Definition] definition for your source
|
35
|
+
# @param definition [::Bundler::Definition] definition for your source
|
36
36
|
def call(command, definition)
|
37
|
-
|
37
|
+
instance = new(command, definition)
|
38
38
|
|
39
|
-
instance
|
39
|
+
::Bundler.ui.silence { instance.resolve }
|
40
40
|
|
41
41
|
case command
|
42
|
-
when Commands::INSTALL, Commands::EXEC then instance.build_install
|
42
|
+
when Commands::INSTALL, Commands::EXEC, Commands::SECURE then instance.build_install
|
43
43
|
when Commands::UPDATE then instance.build_update
|
44
44
|
else
|
45
45
|
raise ArgumentError, "invalid command: #{command}"
|
@@ -47,14 +47,22 @@ module Diffend
|
|
47
47
|
end
|
48
48
|
end
|
49
49
|
|
50
|
-
# @param
|
50
|
+
# @param command [String] command executed via bundler
|
51
|
+
# @param definition [::Bundler::Definition] definition for your source
|
51
52
|
#
|
52
53
|
# @return [Hash] local dependencies
|
53
|
-
def initialize(definition)
|
54
|
+
def initialize(command, definition)
|
55
|
+
@command = command
|
54
56
|
@definition = definition
|
55
57
|
@direct_dependencies = Hash[definition.dependencies.map { |val| [val.name, val] }]
|
56
58
|
# Support case without Gemfile.lock
|
57
59
|
@locked_specs = @definition.locked_gems ? @definition.locked_gems.specs : []
|
60
|
+
@cached = command == Commands::EXEC
|
61
|
+
end
|
62
|
+
|
63
|
+
# Resolve definition
|
64
|
+
def resolve
|
65
|
+
@cached ? @definition.resolve_with_cache! : @definition.resolve_remotely!
|
58
66
|
end
|
59
67
|
|
60
68
|
# Build install specification
|
@@ -117,8 +125,8 @@ module Diffend
|
|
117
125
|
|
118
126
|
# Build gem versions
|
119
127
|
#
|
120
|
-
# @param spec [Bundler::StubSpecification, Bundler::LazySpecification, Gem::Specification]
|
121
|
-
# @param locked_spec [Bundler::LazySpecification, Gem::Specification, NilClass]
|
128
|
+
# @param spec [::Bundler::StubSpecification, ::Bundler::LazySpecification, Gem::Specification]
|
129
|
+
# @param locked_spec [::Bundler::LazySpecification, Gem::Specification, NilClass]
|
122
130
|
#
|
123
131
|
# @return [Array<String>]
|
124
132
|
def build_versions(spec, locked_spec = nil)
|
@@ -143,8 +151,8 @@ module Diffend
|
|
143
151
|
|
144
152
|
# Build gem platform
|
145
153
|
#
|
146
|
-
# @param spec [Bundler::StubSpecification, Bundler::LazySpecification, Gem::Specification]
|
147
|
-
# @param locked_spec [Bundler::LazySpecification, Gem::Specification, NilClass]
|
154
|
+
# @param spec [::Bundler::StubSpecification, ::Bundler::LazySpecification, Gem::Specification]
|
155
|
+
# @param locked_spec [::Bundler::LazySpecification, Gem::Specification, NilClass]
|
148
156
|
#
|
149
157
|
# @return [String]
|
150
158
|
def build_spec_platform(spec, locked_spec)
|
@@ -167,18 +175,18 @@ module Diffend
|
|
167
175
|
|
168
176
|
# Build gem source type
|
169
177
|
#
|
170
|
-
# @param source [Bundler::Source] gem source type
|
178
|
+
# @param source [::Bundler::Source] gem source type
|
171
179
|
#
|
172
180
|
# @return [Integer] internal gem source type
|
173
181
|
def build_spec_gem_source_type(source)
|
174
182
|
case source
|
175
|
-
when Bundler::Source::Metadata
|
183
|
+
when ::Bundler::Source::Metadata
|
176
184
|
GEM_SOURCES_TYPES[:local]
|
177
|
-
when Bundler::Source::Rubygems, Bundler::Source::Rubygems::Remote
|
185
|
+
when ::Bundler::Source::Rubygems, ::Bundler::Source::Rubygems::Remote
|
178
186
|
GEM_SOURCES_TYPES[:gemfile_source]
|
179
|
-
when Bundler::Source::Git
|
187
|
+
when ::Bundler::Source::Git
|
180
188
|
GEM_SOURCES_TYPES[:gemfile_git]
|
181
|
-
when Bundler::Source::Path
|
189
|
+
when ::Bundler::Source::Path
|
182
190
|
GEM_SOURCES_TYPES[:gemfile_path]
|
183
191
|
else
|
184
192
|
raise ArgumentError, "unknown source #{source.class}"
|
@@ -187,7 +195,7 @@ module Diffend
|
|
187
195
|
|
188
196
|
# Build gem source
|
189
197
|
#
|
190
|
-
# @param spec [Bundler::StubSpecification, Bundler::LazySpecification, Gem::Specification]
|
198
|
+
# @param spec [::Bundler::StubSpecification, ::Bundler::LazySpecification, Gem::Specification]
|
191
199
|
#
|
192
200
|
# @return [Hash]
|
193
201
|
def build_spec_source(spec)
|
@@ -201,21 +209,16 @@ module Diffend
|
|
201
209
|
|
202
210
|
# Figure out source for gem
|
203
211
|
#
|
204
|
-
# @param spec [Bundler::StubSpecification, Bundler::LazySpecification, Gem::Specification]
|
212
|
+
# @param spec [::Bundler::StubSpecification, ::Bundler::LazySpecification, Gem::Specification]
|
205
213
|
#
|
206
|
-
# @return [Bundler::Source] gem source type
|
214
|
+
# @return [::Bundler::Source] gem source type
|
207
215
|
def source_for_spec(spec)
|
208
216
|
return spec.remote if spec.remote
|
209
217
|
|
210
218
|
case spec.source
|
211
|
-
when Bundler::Source::Rubygems
|
212
|
-
spec
|
213
|
-
|
214
|
-
.send(:remote_specs)
|
215
|
-
.search(Bundler::Dependency.new(spec.name, spec.version))
|
216
|
-
.last
|
217
|
-
.remote
|
218
|
-
when Bundler::Source::Metadata, Bundler::Source::Git, Bundler::Source::Path
|
219
|
+
when ::Bundler::Source::Rubygems
|
220
|
+
::Bundler::Source::Rubygems::Remote.new(spec.source.remotes.last)
|
221
|
+
when ::Bundler::Source::Metadata, ::Bundler::Source::Git, ::Bundler::Source::Path
|
219
222
|
spec.source
|
220
223
|
else
|
221
224
|
raise ArgumentError, "unknown source #{spec.source.class}"
|
@@ -224,25 +227,25 @@ module Diffend
|
|
224
227
|
|
225
228
|
# Build gem source name
|
226
229
|
#
|
227
|
-
# @param source [Bundler::Source] gem source type
|
230
|
+
# @param source [::Bundler::Source] gem source type
|
228
231
|
#
|
229
232
|
# @return [String]
|
230
233
|
def source_name_from_source(source)
|
231
234
|
case source
|
232
|
-
when Bundler::Source::Metadata
|
235
|
+
when ::Bundler::Source::Metadata
|
233
236
|
''
|
234
|
-
when Bundler::Source::Rubygems::Remote
|
237
|
+
when ::Bundler::Source::Rubygems::Remote
|
235
238
|
source_name(source.anonymized_uri)
|
236
|
-
when Bundler::Source::Git
|
239
|
+
when ::Bundler::Source::Git
|
237
240
|
source.instance_variable_get(:@safe_uri)
|
238
|
-
when Bundler::Source::Path
|
241
|
+
when ::Bundler::Source::Path
|
239
242
|
source.path
|
240
243
|
else
|
241
244
|
raise ArgumentError, "unknown source #{source.class}"
|
242
245
|
end
|
243
246
|
end
|
244
247
|
|
245
|
-
# @param uri [Bundler::URI]
|
248
|
+
# @param uri [::Bundler::URI]
|
246
249
|
#
|
247
250
|
# @return [String]
|
248
251
|
def source_name(uri)
|
@@ -269,7 +272,7 @@ module Diffend
|
|
269
272
|
|
270
273
|
# Build gem source type
|
271
274
|
#
|
272
|
-
# @param remotes [Array
|
275
|
+
# @param remotes [Array<::Bundler::URI>]
|
273
276
|
#
|
274
277
|
# @return [Integer] internal source type
|
275
278
|
def build_source_type(remotes)
|
@@ -278,7 +281,7 @@ module Diffend
|
|
278
281
|
|
279
282
|
# Checks if we should skip a source
|
280
283
|
#
|
281
|
-
# @param source [Bundler::Source] gem source type
|
284
|
+
# @param source [::Bundler::Source] gem source type
|
282
285
|
#
|
283
286
|
# @return [Boolean] true if we should skip this source, false otherwise
|
284
287
|
def skip?(source)
|
@@ -289,7 +292,7 @@ module Diffend
|
|
289
292
|
|
290
293
|
# Checks if it's a self source, this happens for repositories that are a gem
|
291
294
|
#
|
292
|
-
# @param source [Bundler::Source] gem source type
|
295
|
+
# @param source [::Bundler::Source] gem source type
|
293
296
|
#
|
294
297
|
# @return [Boolean] true if it's a self source, false otherwise
|
295
298
|
def me?(source)
|
data/lib/diffend/logger.rb
CHANGED
@@ -3,17 +3,17 @@
|
|
3
3
|
module Diffend
|
4
4
|
# Diffend logging
|
5
5
|
class Logger
|
6
|
-
# Low-level information, mostly for developers
|
6
|
+
# Low-level information, mostly for developers
|
7
7
|
DEBUG = 0
|
8
|
-
# Generic (useful) information about system operation
|
8
|
+
# Generic (useful) information about system operation
|
9
9
|
INFO = 1
|
10
|
-
# A warning
|
10
|
+
# A warning
|
11
11
|
WARN = 2
|
12
|
-
# A handleable error condition
|
12
|
+
# A handleable error condition
|
13
13
|
ERROR = 3
|
14
|
-
# An
|
14
|
+
# An error that we are unable to handle that results in a program crash
|
15
15
|
FATAL = 4
|
16
|
-
# An unknown message that should always be logged
|
16
|
+
# An unknown message that should always be logged
|
17
17
|
UNKNOWN = 5
|
18
18
|
|
19
19
|
# @param level [Integer] logging severity threshold
|
@@ -55,11 +55,11 @@ module Diffend
|
|
55
55
|
|
56
56
|
case severity
|
57
57
|
when INFO
|
58
|
-
Bundler.ui.confirm(message)
|
58
|
+
::Bundler.ui.confirm(message)
|
59
59
|
when WARN
|
60
|
-
Bundler.ui.warn(message)
|
60
|
+
::Bundler.ui.warn(message)
|
61
61
|
when ERROR, FATAL
|
62
|
-
Bundler.ui.error(message)
|
62
|
+
::Bundler.ui.error(message)
|
63
63
|
end
|
64
64
|
end
|
65
65
|
end
|
data/lib/diffend/monitor.rb
CHANGED
@@ -6,6 +6,7 @@
|
|
6
6
|
errors
|
7
7
|
build_bundler_definition
|
8
8
|
commands
|
9
|
+
configs/error_messages
|
9
10
|
config
|
10
11
|
configs/fetcher
|
11
12
|
configs/validator
|
@@ -25,19 +26,40 @@
|
|
25
26
|
track
|
26
27
|
].each { |file| require "diffend/#{file}" }
|
27
28
|
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
return
|
29
|
+
# Calculate exponential backoff
|
30
|
+
#
|
31
|
+
# @param retry_count [Integer]
|
32
|
+
#
|
33
|
+
# @return [Float] backoff value
|
34
|
+
def exponential_backoff(retry_count)
|
35
|
+
(0.25 * 1.5**retry_count.to_f).round(2)
|
36
36
|
end
|
37
37
|
|
38
|
-
return if %w[development test].include?(config.env)
|
39
|
-
|
40
38
|
Thread.new do
|
39
|
+
config = nil
|
40
|
+
retry_count = 0
|
41
|
+
|
42
|
+
# There is an issue if we start to fast and there are gems that require things,
|
43
|
+
# it may break the execution. That's why we want to give the application time to boot.
|
44
|
+
sleep(0.5)
|
45
|
+
|
46
|
+
loop do
|
47
|
+
config = Diffend::Config.new(
|
48
|
+
command: Diffend::Commands::EXEC,
|
49
|
+
severity: Diffend::Logger::FATAL
|
50
|
+
)
|
51
|
+
|
52
|
+
break if config.valid?
|
53
|
+
break if retry_count == 12
|
54
|
+
|
55
|
+
sleep(exponential_backoff(retry_count))
|
56
|
+
|
57
|
+
retry_count += 1
|
58
|
+
end
|
59
|
+
|
60
|
+
Thread.exit unless config.valid?
|
61
|
+
Thread.exit unless config.deployment?
|
62
|
+
|
41
63
|
track = Diffend::Track.new(config)
|
42
64
|
track.start
|
43
65
|
end
|
data/lib/diffend/plugin.rb
CHANGED
@@ -7,10 +7,12 @@
|
|
7
7
|
%w[
|
8
8
|
version
|
9
9
|
logger
|
10
|
+
enabled
|
10
11
|
latest_version
|
11
12
|
errors
|
12
13
|
build_bundler_definition
|
13
14
|
commands
|
15
|
+
configs/error_messages
|
14
16
|
config
|
15
17
|
configs/fetcher
|
16
18
|
configs/validator
|
@@ -42,10 +44,16 @@ module Diffend
|
|
42
44
|
|
43
45
|
# Execute diffend plugin
|
44
46
|
def execute
|
45
|
-
return unless
|
47
|
+
return unless Diffend::Enabled.call
|
46
48
|
|
47
49
|
config = Diffend::Config.new(severity: Diffend::Logger::INFO)
|
48
50
|
|
51
|
+
unless config.valid?
|
52
|
+
config.print_errors
|
53
|
+
|
54
|
+
exit 255
|
55
|
+
end
|
56
|
+
|
49
57
|
Diffend::LatestVersion.call(config)
|
50
58
|
|
51
59
|
Diffend::Execute.call(config)
|
@@ -67,20 +75,6 @@ module Diffend
|
|
67
75
|
|
68
76
|
exit 255
|
69
77
|
end
|
70
|
-
|
71
|
-
# Checks if plugin is enabled
|
72
|
-
#
|
73
|
-
# @return [Boolean] true if enabled, false otherwise
|
74
|
-
def enabled?
|
75
|
-
::Bundler
|
76
|
-
.default_gemfile
|
77
|
-
.read
|
78
|
-
.split("\n")
|
79
|
-
.reject(&:empty?)
|
80
|
-
.map(&:strip)
|
81
|
-
.select { |line| line.start_with?('plugin') }
|
82
|
-
.any? { |line| line.include?('diffend') }
|
83
|
-
end
|
84
78
|
end
|
85
79
|
end
|
86
80
|
end
|
data/lib/diffend/request.rb
CHANGED
@@ -7,14 +7,15 @@ module Diffend
|
|
7
7
|
module RequestVerdict
|
8
8
|
# Exceptions that we handle when there is a resolve issue
|
9
9
|
RESOLVE_EXCEPTIONS = [
|
10
|
-
Bundler::GemNotFound,
|
11
|
-
Bundler::
|
12
|
-
Bundler::
|
10
|
+
::Bundler::GemNotFound,
|
11
|
+
::Bundler::GitError,
|
12
|
+
::Bundler::PermissionError,
|
13
|
+
::Bundler::VersionConflict
|
13
14
|
].freeze
|
14
15
|
|
15
16
|
class << self
|
16
17
|
# @param config [Diffend::Config]
|
17
|
-
# @param definition [Bundler::Definition] definition for your source
|
18
|
+
# @param definition [::Bundler::Definition] definition for your source
|
18
19
|
def call(config, definition)
|
19
20
|
payload = Diffend::LocalContext.call(config, definition)
|
20
21
|
|
data/lib/diffend/version.rb
CHANGED
data/plugins.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: diffend
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.40
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tomasz Pajor
|
@@ -34,7 +34,7 @@ cert_chain:
|
|
34
34
|
9MmF6uCQa1EjK2p8tYT0MnbHrFkoehxdX4VO9y99GAkhZyJNKPYPtyAUFV27sT2V
|
35
35
|
LfCJRk4ifKIN/FUCwDSn8Cz0m6oH265q0p6wdzI6qrWOjP8tGOMBTA==
|
36
36
|
-----END CERTIFICATE-----
|
37
|
-
date:
|
37
|
+
date: 2021-02-23 00:00:00.000000000 Z
|
38
38
|
dependencies:
|
39
39
|
- !ruby/object:Gem::Dependency
|
40
40
|
name: bundler
|
@@ -94,10 +94,13 @@ files:
|
|
94
94
|
- diffend.gemspec
|
95
95
|
- lib/diffend.rb
|
96
96
|
- lib/diffend/build_bundler_definition.rb
|
97
|
+
- lib/diffend/bundle_secure.rb
|
97
98
|
- lib/diffend/commands.rb
|
98
99
|
- lib/diffend/config.rb
|
100
|
+
- lib/diffend/configs/error_messages.rb
|
99
101
|
- lib/diffend/configs/fetcher.rb
|
100
102
|
- lib/diffend/configs/validator.rb
|
103
|
+
- lib/diffend/enabled.rb
|
101
104
|
- lib/diffend/errors.rb
|
102
105
|
- lib/diffend/execute.rb
|
103
106
|
- lib/diffend/handle_errors/build_exception_payload.rb
|
@@ -139,7 +142,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
139
142
|
- !ruby/object:Gem::Version
|
140
143
|
version: '0'
|
141
144
|
requirements: []
|
142
|
-
rubygems_version: 3.
|
145
|
+
rubygems_version: 3.2.3
|
143
146
|
signing_key:
|
144
147
|
specification_version: 4
|
145
148
|
summary: OSS supply chain security and management platform
|
metadata.gz.sig
CHANGED
Binary file
|