yay/pkg/upgrade/upgrade.go

136 lines
3.4 KiB
Go
Raw Normal View History

2020-08-01 01:20:00 +02:00
package upgrade
import (
"fmt"
"strings"
2020-08-01 01:20:00 +02:00
"unicode"
"github.com/Jguer/yay/v12/pkg/db"
"github.com/Jguer/yay/v12/pkg/intrange"
"github.com/Jguer/yay/v12/pkg/text"
2020-08-01 01:20:00 +02:00
)
// Filter decides if specific package should be included in theincluded in the results.
type Filter func(*Upgrade) bool
2020-08-01 01:20:00 +02:00
// Upgrade type describes a system upgrade.
type Upgrade = db.Upgrade
2020-08-01 01:20:00 +02:00
2022-11-15 15:44:50 +01:00
func StylizedNameWithRepository(u *Upgrade) string {
2020-08-01 01:20:00 +02:00
return text.Bold(text.ColorHash(u.Repository)) + "/" + text.Bold(u.Name)
}
2021-08-11 20:13:28 +02:00
// upSlice is a slice of Upgrades.
type UpSlice struct {
2021-04-19 13:43:13 +02:00
Up []Upgrade
Repos []string
}
2020-08-01 01:20:00 +02:00
func (u UpSlice) Len() int { return len(u.Up) }
func (u UpSlice) Swap(i, j int) { u.Up[i], u.Up[j] = u.Up[j], u.Up[i] }
2020-08-01 01:20:00 +02:00
func (u UpSlice) Less(i, j int) bool {
2021-04-19 13:43:13 +02:00
if u.Up[i].Repository == u.Up[j].Repository {
iRunes := []rune(u.Up[i].Name)
jRunes := []rune(u.Up[j].Name)
2021-08-11 20:13:28 +02:00
2020-08-01 01:20:00 +02:00
return text.LessRunes(iRunes, jRunes)
}
2021-04-19 13:43:13 +02:00
for _, db := range u.Repos {
if db == u.Up[i].Repository {
return true
} else if db == u.Up[j].Repository {
return false
}
}
iRunes := []rune(u.Up[i].Repository)
jRunes := []rune(u.Up[j].Repository)
2021-08-11 20:13:28 +02:00
2020-08-01 01:20:00 +02:00
return text.LessRunes(iRunes, jRunes)
}
func GetVersionDiff(oldVersion, newVersion string) (left, right string) {
if oldVersion == newVersion {
return oldVersion + text.Red(""), newVersion + text.Green("")
}
diffPosition := 0
checkWords := func(str string, index int, words ...string) bool {
for _, word := range words {
wordLength := len(word)
2021-08-11 20:13:28 +02:00
2020-08-01 01:20:00 +02:00
nextIndex := index + 1
if (index < len(str)-wordLength) &&
(str[nextIndex:(nextIndex+wordLength)] == word) {
return true
}
}
2021-08-11 20:13:28 +02:00
2020-08-01 01:20:00 +02:00
return false
}
for index, char := range oldVersion {
charIsSpecial := !(unicode.IsLetter(char) || unicode.IsNumber(char))
if (index >= len(newVersion)) || (char != rune(newVersion[index])) {
if charIsSpecial {
diffPosition = index
}
2021-08-11 20:13:28 +02:00
2020-08-01 01:20:00 +02:00
break
}
if charIsSpecial ||
(((index == len(oldVersion)-1) || (index == len(newVersion)-1)) &&
((len(oldVersion) != len(newVersion)) ||
(oldVersion[index] == newVersion[index]))) ||
checkWords(oldVersion, index, "rc", "pre", "alpha", "beta") {
diffPosition = index + 1
}
}
samePart := oldVersion[0:diffPosition]
left = samePart + text.Red(oldVersion[diffPosition:])
right = samePart + text.Green(newVersion[diffPosition:])
return left, right
}
// Print prints the details of the packages to upgrade.
func (u UpSlice) Print(logger *text.Logger) {
2020-08-01 01:20:00 +02:00
longestName, longestVersion := 0, 0
2021-08-11 20:13:28 +02:00
2022-11-15 15:44:50 +01:00
for k := range u.Up {
upgrade := &u.Up[k]
packNameLen := len(StylizedNameWithRepository(upgrade))
packVersion, _ := GetVersionDiff(upgrade.LocalVersion, upgrade.RemoteVersion)
2020-08-01 01:20:00 +02:00
packVersionLen := len(packVersion)
longestName = intrange.Max(packNameLen, longestName)
longestVersion = intrange.Max(packVersionLen, longestVersion)
}
lenUp := len(u.Up)
longestNumber := len(fmt.Sprintf("%v", lenUp))
2020-08-01 01:20:00 +02:00
namePadding := fmt.Sprintf("%%-%ds ", longestName)
versionPadding := fmt.Sprintf("%%-%ds", longestVersion)
numberPadding := fmt.Sprintf("%%%dd ", longestNumber)
2020-08-01 01:20:00 +02:00
2022-11-15 15:44:50 +01:00
for k := range u.Up {
upgrade := &u.Up[k]
left, right := GetVersionDiff(upgrade.LocalVersion, upgrade.RemoteVersion)
2020-08-01 01:20:00 +02:00
logger.Printf(text.Magenta(fmt.Sprintf(numberPadding, lenUp-k)))
2020-08-01 01:20:00 +02:00
logger.Printf(namePadding, StylizedNameWithRepository(upgrade))
2020-08-01 01:20:00 +02:00
logger.Printf("%s -> %s\n", fmt.Sprintf(versionPadding, left), right)
if upgrade.Extra != "" {
logger.Println(strings.Repeat(" ", longestNumber), upgrade.Extra)
}
2020-08-01 01:20:00 +02:00
}
}