2021-10-19 20:26:23 +00:00
|
|
|
// Copyright © 2021 Ettore Di Giacinto <mudler@gentoo.org>
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation; either version 2 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License along
|
|
|
|
// with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
package installer
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"sort"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
pkg "github.com/mudler/luet/pkg/package"
|
|
|
|
"github.com/pterm/pterm"
|
|
|
|
)
|
|
|
|
|
|
|
|
func packsToList(p pkg.Packages) string {
|
|
|
|
var packs []string
|
|
|
|
|
|
|
|
for _, pp := range p {
|
|
|
|
packs = append(packs, pp.HumanReadableString())
|
|
|
|
}
|
|
|
|
|
|
|
|
sort.Strings(packs)
|
|
|
|
return strings.Join(packs, " ")
|
|
|
|
}
|
|
|
|
|
|
|
|
func printList(p pkg.Packages) {
|
2021-10-20 22:13:02 +00:00
|
|
|
fmt.Println()
|
2021-10-19 20:26:23 +00:00
|
|
|
d := pterm.TableData{{"Program Name", "Version", "License"}}
|
|
|
|
for _, m := range p {
|
|
|
|
d = append(d, []string{
|
|
|
|
fmt.Sprintf("%s/%s", m.GetCategory(), m.GetName()),
|
|
|
|
pterm.LightGreen(m.GetVersion()), m.GetLicense()})
|
|
|
|
}
|
|
|
|
pterm.DefaultTable.WithHasHeader().WithData(d).Render()
|
2021-10-20 22:13:02 +00:00
|
|
|
fmt.Println()
|
2021-10-19 20:26:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func printUpgradeList(install, uninstall pkg.Packages) {
|
2021-10-20 22:13:02 +00:00
|
|
|
fmt.Println()
|
|
|
|
|
2021-10-19 20:26:23 +00:00
|
|
|
d := pterm.TableData{{"Old version", "New version", "License"}}
|
|
|
|
for _, m := range uninstall {
|
|
|
|
if p, err := install.Find(m.GetPackageName()); err == nil {
|
|
|
|
d = append(d, []string{
|
|
|
|
pterm.LightRed(m.HumanReadableString()),
|
|
|
|
pterm.LightGreen(p.HumanReadableString()), m.GetLicense()})
|
|
|
|
} else {
|
|
|
|
d = append(d, []string{
|
|
|
|
pterm.LightRed(m.HumanReadableString()), ""})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, m := range install {
|
|
|
|
if _, err := uninstall.Find(m.GetPackageName()); err != nil {
|
|
|
|
d = append(d, []string{"",
|
|
|
|
pterm.LightGreen(m.HumanReadableString()), m.GetLicense()})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pterm.DefaultTable.WithHasHeader().WithData(d).Render()
|
2021-10-20 22:13:02 +00:00
|
|
|
fmt.Println()
|
|
|
|
|
2021-10-19 20:26:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func printMatchUpgrade(artefacts map[string]ArtifactMatch, uninstall pkg.Packages) {
|
|
|
|
p := pkg.Packages{}
|
|
|
|
|
|
|
|
for _, a := range artefacts {
|
|
|
|
p = append(p, a.Package)
|
|
|
|
}
|
|
|
|
|
|
|
|
printUpgradeList(p, uninstall)
|
|
|
|
}
|
|
|
|
|
|
|
|
func printMatches(artefacts map[string]ArtifactMatch) {
|
2021-10-20 22:13:02 +00:00
|
|
|
fmt.Println()
|
2021-10-19 20:26:23 +00:00
|
|
|
d := pterm.TableData{{"Program Name", "Version", "License", "Repository"}}
|
|
|
|
for _, m := range artefacts {
|
|
|
|
d = append(d, []string{
|
|
|
|
fmt.Sprintf("%s/%s", m.Package.GetCategory(), m.Package.GetName()),
|
|
|
|
pterm.LightGreen(m.Package.GetVersion()), m.Package.GetLicense(), m.Repository.Name})
|
|
|
|
}
|
|
|
|
pterm.DefaultTable.WithHasHeader().WithData(d).Render()
|
2021-10-20 22:13:02 +00:00
|
|
|
fmt.Println()
|
2021-10-19 20:26:23 +00:00
|
|
|
}
|