mirror of
https://github.com/mudler/luet.git
synced 2025-04-28 03:30:09 +00:00
It holds necessary state plus additional information relative to the context which we are being run to (e.g. if we are in a terminal or not). Besides in the future we can use it also as a contextual logger to provide more smart logging capabilities. This also replace the general global configuration instance that previously was share between the core components.
96 lines
2.7 KiB
Go
96 lines
2.7 KiB
Go
// 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) {
|
|
fmt.Println()
|
|
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()
|
|
fmt.Println()
|
|
}
|
|
|
|
func printUpgradeList(install, uninstall pkg.Packages) {
|
|
fmt.Println()
|
|
|
|
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()
|
|
fmt.Println()
|
|
|
|
}
|
|
|
|
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) {
|
|
fmt.Println()
|
|
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()
|
|
fmt.Println()
|
|
}
|