This repository has been archived by the owner on Nov 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 255
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2252 from eunomie/docker-scout-cli-hints
feat: display docker scout hints on build and pull
- Loading branch information
Showing
6 changed files
with
326 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* | ||
Copyright 2023 Docker Compose CLI authors | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package mobycli | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
|
||
"github.com/docker/compose-cli/api/config" | ||
) | ||
|
||
const ( | ||
cliHintsEnvVarName = "DOCKER_CLI_HINTS" | ||
cliHintsDefaultBehaviour = true | ||
|
||
cliHintsPluginName = "-x-cli-hints" | ||
cliHintsEnabledName = "enabled" | ||
cliHintsEnabled = "true" | ||
cliHintsDisabled = "false" | ||
) | ||
|
||
func CliHintsEnabled() bool { | ||
if envValue, ok := os.LookupEnv(cliHintsEnvVarName); ok { | ||
if enabled, err := parseCliHintFlag(envValue); err == nil { | ||
return enabled | ||
} | ||
} | ||
|
||
conf, err := config.LoadFile(config.Dir()) | ||
if err != nil { | ||
// can't read the config file, use the default behaviour | ||
return cliHintsDefaultBehaviour | ||
} | ||
if cliHintsPluginConfig, ok := conf.Plugins[cliHintsPluginName]; ok { | ||
if cliHintsValue, ok := cliHintsPluginConfig[cliHintsEnabledName]; ok { | ||
if cliHints, err := parseCliHintFlag(cliHintsValue); err == nil { | ||
return cliHints | ||
} | ||
} | ||
} | ||
|
||
return cliHintsDefaultBehaviour | ||
} | ||
|
||
func parseCliHintFlag(value string) (bool, error) { | ||
switch value { | ||
case cliHintsEnabled: | ||
return true, nil | ||
case cliHintsDisabled: | ||
return false, nil | ||
default: | ||
return cliHintsDefaultBehaviour, fmt.Errorf("could not parse CLI hints enabled flag") | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,168 @@ | ||
/* | ||
Copyright 2023 Docker Compose CLI authors | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package mobycli | ||
|
||
import ( | ||
"os" | ||
"path/filepath" | ||
"testing" | ||
|
||
"github.com/docker/compose-cli/api/config" | ||
|
||
"gotest.tools/v3/assert" | ||
) | ||
|
||
func TestCliHintsEnabled(t *testing.T) { | ||
testCases := []struct { | ||
name string | ||
setup func() | ||
expected bool | ||
}{ | ||
{ | ||
"enabled by default", | ||
func() {}, | ||
true, | ||
}, | ||
{ | ||
"enabled from environment variable", | ||
func() { | ||
t.Setenv(cliHintsEnvVarName, "true") | ||
}, | ||
true, | ||
}, | ||
{ | ||
"disabled from environment variable", | ||
func() { | ||
t.Setenv(cliHintsEnvVarName, "false") | ||
}, | ||
false, | ||
}, | ||
{ | ||
"unsupported value", | ||
func() { | ||
t.Setenv(cliHintsEnvVarName, "maybe") | ||
}, | ||
true, | ||
}, | ||
{ | ||
"enabled in config file", | ||
func() { | ||
d := testConfigDir(t) | ||
writeSampleConfig(t, d, configEnabled) | ||
}, | ||
true, | ||
}, | ||
{ | ||
"plugin defined in config file but no enabled entry", | ||
func() { | ||
d := testConfigDir(t) | ||
writeSampleConfig(t, d, configPartial) | ||
}, | ||
true, | ||
}, | ||
|
||
{ | ||
"unsupported value", | ||
func() { | ||
d := testConfigDir(t) | ||
writeSampleConfig(t, d, configOnce) | ||
}, | ||
true, | ||
}, | ||
{ | ||
"disabled in config file", | ||
func() { | ||
d := testConfigDir(t) | ||
writeSampleConfig(t, d, configDisabled) | ||
}, | ||
false, | ||
}, | ||
{ | ||
"enabled in config file but disabled by env var", | ||
func() { | ||
d := testConfigDir(t) | ||
writeSampleConfig(t, d, configEnabled) | ||
t.Setenv(cliHintsEnvVarName, "false") | ||
}, | ||
false, | ||
}, | ||
{ | ||
"disabled in config file but enabled by env var", | ||
func() { | ||
d := testConfigDir(t) | ||
writeSampleConfig(t, d, configDisabled) | ||
t.Setenv(cliHintsEnvVarName, "true") | ||
}, | ||
true, | ||
}, | ||
} | ||
|
||
for _, testCase := range testCases { | ||
tc := testCase | ||
t.Run(tc.name, func(t *testing.T) { | ||
tc.setup() | ||
assert.Equal(t, CliHintsEnabled(), tc.expected) | ||
}) | ||
} | ||
} | ||
|
||
func testConfigDir(t *testing.T) string { | ||
dir := config.Dir() | ||
d, _ := os.MkdirTemp("", "") | ||
config.WithDir(d) | ||
t.Cleanup(func() { | ||
_ = os.RemoveAll(d) | ||
config.WithDir(dir) | ||
}) | ||
return d | ||
} | ||
|
||
func writeSampleConfig(t *testing.T, d string, conf []byte) { | ||
err := os.WriteFile(filepath.Join(d, config.ConfigFileName), conf, 0644) | ||
assert.NilError(t, err) | ||
} | ||
|
||
var configEnabled = []byte(`{ | ||
"plugins": { | ||
"-x-cli-hints": { | ||
"enabled": "true" | ||
} | ||
} | ||
}`) | ||
|
||
var configDisabled = []byte(`{ | ||
"plugins": { | ||
"-x-cli-hints": { | ||
"enabled": "false" | ||
} | ||
} | ||
}`) | ||
|
||
var configPartial = []byte(`{ | ||
"plugins": { | ||
"-x-cli-hints": { | ||
} | ||
} | ||
}`) | ||
|
||
var configOnce = []byte(`{ | ||
"plugins": { | ||
"-x-cli-hints": { | ||
"enabled": "maybe" | ||
} | ||
} | ||
}`) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
/* | ||
Copyright 2023 Docker Compose CLI authors | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package mobycli | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
"strings" | ||
|
||
"github.com/docker/compose/v2/pkg/utils" | ||
|
||
"github.com/fatih/color" | ||
) | ||
|
||
func displayScoutQuickViewSuggestMsgOnPull(args []string) { | ||
image := pulledImageFromArgs(args) | ||
displayScoutQuickViewSuggestMsg(image) | ||
} | ||
|
||
func displayScoutQuickViewSuggestMsgOnBuild(args []string) { | ||
// only display the hint in the main case, build command and not buildx build, no output flag, no progress flag, no push flag | ||
if utils.StringContains(args, "--output") || utils.StringContains(args, "-o") || | ||
utils.StringContains(args, "--progress") || | ||
utils.StringContains(args, "--push") { | ||
return | ||
} | ||
if _, ok := os.LookupEnv("BUILDKIT_PROGRESS"); ok { | ||
return | ||
} | ||
displayScoutQuickViewSuggestMsg("") | ||
} | ||
|
||
func displayScoutQuickViewSuggestMsg(image string) { | ||
if !CliHintsEnabled() { | ||
return | ||
} | ||
if len(image) > 0 { | ||
image = " " + image | ||
} | ||
out := os.Stderr | ||
b := color.New(color.Bold) | ||
_, _ = fmt.Fprintln(out) | ||
_, _ = b.Fprintln(out, "What's Next?") | ||
_, _ = fmt.Fprintf(out, " View summary of image vulnerabilities and recommendations → %s", color.CyanString("docker scout quickview%s", image)) | ||
_, _ = fmt.Fprintln(out) | ||
} | ||
|
||
func pulledImageFromArgs(args []string) string { | ||
var image string | ||
var pull bool | ||
for _, a := range args { | ||
if a == "pull" { | ||
pull = true | ||
continue | ||
} | ||
if pull && !strings.HasPrefix(a, "-") { | ||
image = a | ||
break | ||
} | ||
} | ||
return image | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters