2021-09-19 12:00:00 +00:00
|
|
|
// Copyright (c) 2019, Drone IO Inc.
|
|
|
|
// Copyright (c) 2021, Robert Kaussow <mail@thegeeklab.de>
|
2019-02-10 19:00:16 +00:00
|
|
|
|
2019-01-22 23:44:17 +00:00
|
|
|
package pretty
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
|
|
|
|
"github.com/drone/drone-yaml/yaml"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Print pretty prints the manifest.
|
|
|
|
func Print(w io.Writer, v *yaml.Manifest) {
|
|
|
|
state := new(baseWriter)
|
2023-02-08 09:14:20 +00:00
|
|
|
|
2019-01-22 23:44:17 +00:00
|
|
|
for _, r := range v.Resources {
|
|
|
|
switch t := r.(type) {
|
|
|
|
case *yaml.Cron:
|
|
|
|
printCron(state, t)
|
|
|
|
case *yaml.Secret:
|
|
|
|
printSecret(state, t)
|
|
|
|
case *yaml.Signature:
|
|
|
|
printSignature(state, t)
|
|
|
|
case *yaml.Pipeline:
|
|
|
|
printPipeline(state, t)
|
|
|
|
}
|
|
|
|
}
|
2023-02-08 09:14:20 +00:00
|
|
|
|
2019-01-22 23:44:17 +00:00
|
|
|
state.WriteString("...")
|
|
|
|
state.WriteByte('\n')
|
2022-04-25 10:56:05 +00:00
|
|
|
_, _ = w.Write(state.Bytes())
|
2019-01-22 23:44:17 +00:00
|
|
|
}
|