All checks were successful
check / check (push) Successful in 39s
- Add canonical .golangci.yml (v2 schema, default: all, project thresholds for lll/funlen/cyclop/dupl) - Bump golangci-lint pins from v2.0.2 to v2.12.2 in Makefile (go install, new /v2 module path) and Dockerfile (tagged+digest Debian image pin) - Fix all lint findings surfaced by the new linter set across cmd/mfer, internal/bork, internal/cli, internal/log, and mfer: static sentinel errors (err113), context-aware HTTP and exec (noctx), guarded integer conversions and stricter permissions (gosec), named constants (mnd, goconst), function decomposition (funlen, cyclop, gocognit, nestif), declaration ordering (funcorder), t.Parallel/t.TempDir/t.Setenv adoption in tests (paralleltest, usetesting), protobuf getters (protogetter), plus formatting and style cleanups (wsl_v5, nlreturn, lll, revive, testifylint, and others) - Serialize CLI runs in tests behind a mutex so parallel tests do not cross-wire the process-global logger's captured output
55 lines
1.1 KiB
Go
55 lines
1.1 KiB
Go
package cli
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
"sneak.berlin/go/mfer/internal/log"
|
|
"sneak.berlin/go/mfer/mfer"
|
|
)
|
|
|
|
func (mfa *CLIApp) listManifestOperation(ctx *cli.Context) error {
|
|
// Default to ErrorLevel for clean output
|
|
log.SetLevel(log.ErrorLevel)
|
|
|
|
longFormat := ctx.Bool("long")
|
|
print0 := ctx.Bool("print0")
|
|
|
|
pathOrURL, err := mfa.resolveManifestArg(ctx)
|
|
if err != nil {
|
|
return fmt.Errorf("list: %w", err)
|
|
}
|
|
|
|
rc, err := mfa.openManifestReader(pathOrURL)
|
|
if err != nil {
|
|
return fmt.Errorf("list: %w", err)
|
|
}
|
|
defer func() { _ = rc.Close() }()
|
|
|
|
manifest, err := mfer.NewManifestFromReader(rc)
|
|
if err != nil {
|
|
return fmt.Errorf("list: failed to parse manifest: %w", err)
|
|
}
|
|
|
|
files := manifest.Files()
|
|
|
|
// Determine line ending
|
|
lineEnd := "\n"
|
|
if print0 {
|
|
lineEnd = "\x00"
|
|
}
|
|
|
|
for _, f := range files {
|
|
if longFormat {
|
|
mtime := time.Unix(f.GetMtime().GetSeconds(), int64(f.GetMtime().GetNanos()))
|
|
_, _ = fmt.Fprintf(mfa.Stdout, "%d\t%s\t%s%s",
|
|
f.GetSize(), mtime.Format(time.RFC3339), f.GetPath(), lineEnd)
|
|
} else {
|
|
_, _ = fmt.Fprintf(mfa.Stdout, "%s%s", f.GetPath(), lineEnd)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|