mirror of
https://gitea.com/gitea/act_runner.git
synced 2026-04-25 13:20:32 +08:00
Use `golangci-lint fmt` to format code, upgrading `.golangci.yml` to v2 and mirroring the linter configuration used by https://github.com/go-gitea/gitea. `gci` now handles import ordering into standard, project-local, blank, and default groups. Mirrors https://github.com/go-gitea/gitea/pull/37194. Changes: - Upgrade `.golangci.yml` to v2 format with the same linter set as gitea (minus `prealloc`, `unparam`, `testifylint`, `nilnil` which produced too many pre-existing issues) - Add path-based exclusions (`bodyclose`, `gosec` in tests; `gosec:G115`/`G117` globally) - Run lint via `make lint-go` in CI instead of `golangci/golangci-lint-action`, matching the pattern used by other Gitea repos - Apply safe auto-fixes (`modernize`, `perfsprint`, `usetesting`, etc.) - Add explanations to existing `//nolint` directives - Remove dead code (unused `newRemoteReusableWorkflow` and `networkName`), duplicate imports, and shadowed `max` builtins - Replace deprecated `docker/distribution/reference` with `distribution/reference` - Fix `Deprecated:` comment casing and simplify nil/len checks --- This PR was written with the help of Claude Opus 4.7 Reviewed-on: https://gitea.com/gitea/act/pulls/163 Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: silverwind <me@silverwind.io> Co-committed-by: silverwind <me@silverwind.io>
143 lines
3.0 KiB
Go
143 lines
3.0 KiB
Go
package common
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
"strings"
|
|
)
|
|
|
|
// Style is a specific style
|
|
type Style int
|
|
|
|
// Styles
|
|
const (
|
|
StyleDoubleLine = iota
|
|
StyleSingleLine
|
|
StyleDashedLine
|
|
StyleNoLine
|
|
)
|
|
|
|
// NewPen creates a new pen
|
|
func NewPen(style Style, color int) *Pen {
|
|
bgcolor := 49
|
|
if os.Getenv("CLICOLOR") == "0" {
|
|
color = 0
|
|
bgcolor = 0
|
|
}
|
|
return &Pen{
|
|
style: style,
|
|
color: color,
|
|
bgcolor: bgcolor,
|
|
}
|
|
}
|
|
|
|
type styleDef struct {
|
|
cornerTL string
|
|
cornerTR string
|
|
cornerBL string
|
|
cornerBR string
|
|
lineH string
|
|
lineV string
|
|
}
|
|
|
|
var styleDefs = []styleDef{
|
|
{"\u2554", "\u2557", "\u255a", "\u255d", "\u2550", "\u2551"},
|
|
{"\u256d", "\u256e", "\u2570", "\u256f", "\u2500", "\u2502"},
|
|
{"\u250c", "\u2510", "\u2514", "\u2518", "\u254c", "\u254e"},
|
|
{" ", " ", " ", " ", " ", " "},
|
|
}
|
|
|
|
// Pen struct
|
|
type Pen struct {
|
|
style Style
|
|
color int
|
|
bgcolor int
|
|
}
|
|
|
|
// Drawing struct
|
|
type Drawing struct {
|
|
buf *strings.Builder
|
|
width int
|
|
}
|
|
|
|
func (p *Pen) drawTopBars(buf io.Writer, labels ...string) {
|
|
style := styleDefs[p.style]
|
|
for _, label := range labels {
|
|
bar := strings.Repeat(style.lineH, len(label)+2)
|
|
fmt.Fprintf(buf, " ")
|
|
fmt.Fprintf(buf, "\x1b[%d;%dm", p.color, p.bgcolor)
|
|
fmt.Fprintf(buf, "%s%s%s", style.cornerTL, bar, style.cornerTR)
|
|
fmt.Fprintf(buf, "\x1b[%dm", 0)
|
|
}
|
|
fmt.Fprintf(buf, "\n")
|
|
}
|
|
|
|
func (p *Pen) drawBottomBars(buf io.Writer, labels ...string) {
|
|
style := styleDefs[p.style]
|
|
for _, label := range labels {
|
|
bar := strings.Repeat(style.lineH, len(label)+2)
|
|
fmt.Fprintf(buf, " ")
|
|
fmt.Fprintf(buf, "\x1b[%d;%dm", p.color, p.bgcolor)
|
|
fmt.Fprintf(buf, "%s%s%s", style.cornerBL, bar, style.cornerBR)
|
|
fmt.Fprintf(buf, "\x1b[%dm", 0)
|
|
}
|
|
fmt.Fprintf(buf, "\n")
|
|
}
|
|
|
|
func (p *Pen) drawLabels(buf io.Writer, labels ...string) {
|
|
style := styleDefs[p.style]
|
|
for _, label := range labels {
|
|
fmt.Fprintf(buf, " ")
|
|
fmt.Fprintf(buf, "\x1b[%d;%dm", p.color, p.bgcolor)
|
|
fmt.Fprintf(buf, "%s %s %s", style.lineV, label, style.lineV)
|
|
fmt.Fprintf(buf, "\x1b[%dm", 0)
|
|
}
|
|
fmt.Fprintf(buf, "\n")
|
|
}
|
|
|
|
// DrawArrow between boxes
|
|
func (p *Pen) DrawArrow() *Drawing {
|
|
drawing := &Drawing{
|
|
buf: new(strings.Builder),
|
|
width: 1,
|
|
}
|
|
fmt.Fprintf(drawing.buf, "\x1b[%dm", p.color)
|
|
fmt.Fprintf(drawing.buf, "\u2b07")
|
|
fmt.Fprintf(drawing.buf, "\x1b[%dm", 0)
|
|
return drawing
|
|
}
|
|
|
|
// DrawBoxes to draw boxes
|
|
func (p *Pen) DrawBoxes(labels ...string) *Drawing {
|
|
width := 0
|
|
for _, l := range labels {
|
|
width += len(l) + 2 + 2 + 1
|
|
}
|
|
drawing := &Drawing{
|
|
buf: new(strings.Builder),
|
|
width: width,
|
|
}
|
|
p.drawTopBars(drawing.buf, labels...)
|
|
p.drawLabels(drawing.buf, labels...)
|
|
p.drawBottomBars(drawing.buf, labels...)
|
|
|
|
return drawing
|
|
}
|
|
|
|
// Draw to writer
|
|
func (d *Drawing) Draw(writer io.Writer, centerOnWidth int) {
|
|
padSize := max((centerOnWidth-d.GetWidth())/2, 0)
|
|
for l := range strings.SplitSeq(d.buf.String(), "\n") {
|
|
if len(l) > 0 {
|
|
padding := strings.Repeat(" ", padSize)
|
|
fmt.Fprintf(writer, "%s%s\n", padding, l)
|
|
}
|
|
}
|
|
}
|
|
|
|
// GetWidth of drawing
|
|
func (d *Drawing) GetWidth() int {
|
|
return d.width
|
|
}
|