refactor: Analyzer to generalise

This commit is contained in:
abhisek
2025-05-14 18:56:58 +05:30
parent 8eace0c7f6
commit 4dcf7cad0b
7 changed files with 114 additions and 51 deletions
+8 -4
View File
@@ -2,14 +2,18 @@ package ui
import "github.com/fatih/color"
type ColorFn func(format string, a ...interface{}) string
type TerminalColors struct {
Red func(format string, a ...interface{}) string
Yellow func(format string, a ...interface{}) string
Cyan func(format string, a ...interface{}) string
Green func(format string, a ...interface{}) string
Normal ColorFn
Red ColorFn
Yellow ColorFn
Cyan ColorFn
Green ColorFn
}
var Colors = TerminalColors{
Normal: color.New().SprintfFunc(),
Red: color.New(color.FgRed, color.Bold).SprintfFunc(),
Yellow: color.New(color.FgYellow).SprintfFunc(),
Cyan: color.New(color.FgCyan).SprintfFunc(),
+9 -1
View File
@@ -8,6 +8,14 @@ import (
var spinnerChan chan bool
func StartSpinner(msg string) {
StartSpinnerWithColor(msg, Colors.Normal)
}
func StartSpinnerWithColor(msg string, c ColorFn) {
if c == nil {
c = Colors.Normal
}
style := `⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏`
frames := []rune(style)
length := len(frames)
@@ -24,7 +32,7 @@ func StartSpinner(msg string) {
ticker.Stop()
return
case <-ticker.C:
fmt.Printf("\r%s ... %s", msg, string(frames[pos%length]))
fmt.Printf("\r%s ... %s", c(msg), string(frames[pos%length]))
pos += 1
}
}
+31 -9
View File
@@ -5,7 +5,7 @@ import (
"os"
"strings"
packagev1 "buf.build/gen/go/safedep/api/protocolbuffers/go/safedep/messages/package/v1"
"github.com/safedep/pmg/analyzer"
)
// The UI is internal to PMG and opinionated for the CLI.
@@ -40,7 +40,9 @@ func ClearStatus() {
func Block() error {
StopSpinner()
fmt.Println(Colors.Red("❌ Malicious packages detected, installation blocked!"))
fmt.Println()
fmt.Println(Colors.Red("❌ Malicious package blocked!"))
os.Exit(1)
return nil
@@ -52,17 +54,19 @@ func SetStatus(status string) {
}
StopSpinner()
fmt.Print("\r", Colors.Green(status), " ")
StartSpinner(status)
StartSpinnerWithColor(fmt.Sprintf("️ %s", status), Colors.Green)
}
func GetConfirmationOnMalware(malwarePackages []*packagev1.PackageVersion) (bool, error) {
func GetConfirmationOnMalware(malwarePackages []*analyzer.PackageVersionAnalysisResult) (bool, error) {
StopSpinner()
fmt.Println(Colors.Red("🚨 Malicious packages detected:"))
fmt.Println(Colors.Red(fmt.Sprintf("🚨 Malicious packages detected: %d", len(malwarePackages))))
fmt.Println()
for _, pkg := range malwarePackages {
fmt.Println(" ⚠️ ", Colors.Red(fmt.Sprintf("%s@%s", pkg.Package.Name, pkg.Version)))
for _, mp := range malwarePackages {
fmt.Println("⚠️ ", Colors.Red(fmt.Sprintf("%s@%s", mp.PackageVersion.GetPackage().GetName(),
mp.PackageVersion.GetVersion())))
fmt.Println(Colors.Yellow(termWidthFormatText(mp.Summary, 60)))
fmt.Println()
}
fmt.Println()
@@ -85,3 +89,21 @@ func GetConfirmationOnMalware(malwarePackages []*packagev1.PackageVersion) (bool
return false, nil
}
// Format the string to be maximum maxWidth. Use newlines to wrap the text.
func termWidthFormatText(text string, maxWidth int) string {
words := strings.Split(text, " ")
lines := []string{}
currentLine := ""
for _, word := range words {
if len(currentLine)+len(word) > maxWidth {
lines = append(lines, currentLine)
currentLine = word
} else {
currentLine += " " + word
}
}
return strings.Join(lines, "\n")
}