-
Notifications
You must be signed in to change notification settings - Fork 162
/
releases.go
54 lines (43 loc) · 1.06 KB
/
releases.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package cmd
import (
boshdir "github.com/cloudfoundry/bosh-cli/director"
boshui "github.com/cloudfoundry/bosh-cli/ui"
boshtbl "github.com/cloudfoundry/bosh-cli/ui/table"
)
type ReleasesCmd struct {
ui boshui.UI
director boshdir.Director
}
func NewReleasesCmd(ui boshui.UI, director boshdir.Director) ReleasesCmd {
return ReleasesCmd{ui: ui, director: director}
}
func (c ReleasesCmd) Run() error {
releases, err := c.director.Releases()
if err != nil {
return err
}
table := boshtbl.Table{
Content: "releases",
Header: []string{"Name", "Version", "Commit Hash"},
SortBy: []boshtbl.ColumnSort{
{Column: 0, Asc: true},
{Column: 1},
},
Notes: []string{
"(*) Currently deployed",
"(+) Uncommitted changes",
},
}
for _, rel := range releases {
table.Rows = append(table.Rows, []boshtbl.Value{
boshtbl.NewValueString(rel.Name()),
boshtbl.NewValueSuffix(
boshtbl.NewValueVersion(rel.Version()),
rel.VersionMark("*"),
),
boshtbl.NewValueString(rel.CommitHashWithMark("+")),
})
}
c.ui.PrintTable(table)
return nil
}