2017-08-01 18:43:20 +02:00
|
|
|
package main
|
2017-07-14 19:03:54 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2017-08-01 18:43:20 +02:00
|
|
|
"sort"
|
2018-03-22 17:39:27 +01:00
|
|
|
"strings"
|
2018-03-08 22:34:12 +01:00
|
|
|
"sync"
|
2018-04-05 14:33:31 +02:00
|
|
|
"unicode"
|
2017-07-14 19:03:54 +02:00
|
|
|
|
|
|
|
alpm "github.com/jguer/go-alpm"
|
2018-03-29 04:42:11 +02:00
|
|
|
rpc "github.com/mikkeloscar/aur"
|
2017-07-14 19:03:54 +02:00
|
|
|
)
|
|
|
|
|
2017-08-01 18:43:20 +02:00
|
|
|
// upgrade type describes a system upgrade.
|
|
|
|
type upgrade struct {
|
2017-07-14 19:03:54 +02:00
|
|
|
Name string
|
|
|
|
Repository string
|
|
|
|
LocalVersion string
|
|
|
|
RemoteVersion string
|
|
|
|
}
|
|
|
|
|
2017-10-14 18:11:47 +02:00
|
|
|
// upSlice is a slice of Upgrades
|
2017-08-01 18:43:20 +02:00
|
|
|
type upSlice []upgrade
|
2017-07-18 00:44:46 +02:00
|
|
|
|
2017-08-01 18:43:20 +02:00
|
|
|
func (u upSlice) Len() int { return len(u) }
|
|
|
|
func (u upSlice) Swap(i, j int) { u[i], u[j] = u[j], u[i] }
|
2017-07-18 00:44:46 +02:00
|
|
|
|
2017-08-01 18:43:20 +02:00
|
|
|
func (u upSlice) Less(i, j int) bool {
|
2018-03-26 03:28:31 +02:00
|
|
|
if u[i].Repository == u[j].Repository {
|
|
|
|
iRunes := []rune(u[i].Name)
|
|
|
|
jRunes := []rune(u[j].Name)
|
|
|
|
return lessRunes(iRunes, jRunes)
|
|
|
|
}
|
|
|
|
|
|
|
|
syncDb, err := alpmHandle.SyncDbs()
|
|
|
|
if err != nil {
|
2018-03-20 23:34:06 +01:00
|
|
|
iRunes := []rune(u[i].Repository)
|
|
|
|
jRunes := []rune(u[j].Repository)
|
|
|
|
return lessRunes(iRunes, jRunes)
|
2018-03-26 03:28:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
less := false
|
|
|
|
found := syncDb.ForEach(func(db alpm.Db) error {
|
|
|
|
if db.Name() == u[i].Repository {
|
|
|
|
less = true
|
|
|
|
} else if db.Name() == u[j].Repository {
|
|
|
|
less = false
|
|
|
|
} else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Errorf("")
|
|
|
|
})
|
|
|
|
|
|
|
|
if found != nil {
|
|
|
|
return less
|
2018-03-20 23:34:06 +01:00
|
|
|
}
|
2018-03-26 03:28:31 +02:00
|
|
|
|
2018-04-08 00:20:15 +02:00
|
|
|
iRunes := []rune(u[i].Repository)
|
|
|
|
jRunes := []rune(u[j].Repository)
|
|
|
|
return lessRunes(iRunes, jRunes)
|
|
|
|
|
2018-03-20 23:34:06 +01:00
|
|
|
}
|
2017-07-18 00:44:46 +02:00
|
|
|
|
2018-07-16 16:28:18 +02:00
|
|
|
func getVersionDiff(oldVersion, newVersion string) (left, right string) {
|
|
|
|
if oldVersion == newVersion {
|
|
|
|
return oldVersion, newVersion
|
2018-02-21 09:41:25 +01:00
|
|
|
}
|
|
|
|
|
2018-07-16 16:28:18 +02:00
|
|
|
diffPosition := 0
|
2018-04-05 14:33:31 +02:00
|
|
|
|
2018-07-16 16:28:18 +02:00
|
|
|
checkWords := func(str string, index int, words ...string) bool {
|
|
|
|
for _, word := range words {
|
|
|
|
wordLength := len(word)
|
|
|
|
nextIndex := index + 1
|
|
|
|
if (index < len(str)-wordLength) &&
|
|
|
|
(str[nextIndex:(nextIndex+wordLength)] == word) {
|
|
|
|
return true
|
2018-04-05 14:33:31 +02:00
|
|
|
}
|
2018-02-19 18:01:19 +01:00
|
|
|
}
|
2018-07-16 16:28:18 +02:00
|
|
|
return false
|
|
|
|
}
|
2018-04-05 14:33:31 +02:00
|
|
|
|
2018-07-16 16:28:18 +02:00
|
|
|
for index, char := range oldVersion {
|
|
|
|
charIsSpecial := !(unicode.IsLetter(char) || unicode.IsNumber(char))
|
2018-04-05 14:33:31 +02:00
|
|
|
|
2018-07-16 16:28:18 +02:00
|
|
|
if (index >= len(newVersion)) || (char != rune(newVersion[index])) {
|
|
|
|
if charIsSpecial {
|
|
|
|
diffPosition = index
|
2018-04-05 14:33:31 +02:00
|
|
|
}
|
2018-07-16 16:28:18 +02:00
|
|
|
break
|
|
|
|
}
|
2018-04-05 14:33:31 +02:00
|
|
|
|
2018-07-16 16:28:18 +02:00
|
|
|
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
|
2018-04-05 14:33:31 +02:00
|
|
|
}
|
2018-07-16 16:28:18 +02:00
|
|
|
}
|
2018-04-05 14:33:31 +02:00
|
|
|
|
2018-07-16 16:28:18 +02:00
|
|
|
samePart := oldVersion[0:diffPosition]
|
2018-04-05 14:33:31 +02:00
|
|
|
|
2018-07-16 16:28:18 +02:00
|
|
|
left = samePart + red(oldVersion[diffPosition:])
|
|
|
|
right = samePart + green(newVersion[diffPosition:])
|
2018-02-19 18:01:19 +01:00
|
|
|
|
2018-02-21 09:41:25 +01:00
|
|
|
return
|
2018-02-19 18:01:19 +01:00
|
|
|
}
|
|
|
|
|
2017-10-14 18:11:47 +02:00
|
|
|
// upList returns lists of packages to upgrade from each source.
|
2018-04-11 05:43:51 +02:00
|
|
|
func upList(warnings *aurWarnings) (aurUp upSlice, repoUp upSlice, err error) {
|
2017-08-07 15:43:25 +02:00
|
|
|
local, remote, _, remoteNames, err := filterPackages()
|
2017-07-14 19:03:54 +02:00
|
|
|
if err != nil {
|
2018-03-20 17:20:09 +01:00
|
|
|
return nil, nil, err
|
2017-07-14 19:03:54 +02:00
|
|
|
}
|
|
|
|
|
2018-03-20 17:20:09 +01:00
|
|
|
var wg sync.WaitGroup
|
|
|
|
var develUp upSlice
|
|
|
|
|
|
|
|
var repoErr error
|
|
|
|
var aurErr error
|
|
|
|
var develErr error
|
2017-07-14 19:03:54 +02:00
|
|
|
|
2018-05-08 08:51:49 +02:00
|
|
|
pkgdata := make(map[string]*rpc.Pkg)
|
|
|
|
|
2018-05-31 17:23:15 +02:00
|
|
|
if mode == ModeAny || mode == ModeRepo {
|
|
|
|
fmt.Println(bold(cyan("::") + bold(" Searching databases for updates...")))
|
2018-03-20 17:20:09 +01:00
|
|
|
wg.Add(1)
|
|
|
|
go func() {
|
2018-05-31 17:23:15 +02:00
|
|
|
repoUp, repoErr = upRepo(local)
|
2018-03-20 17:20:09 +01:00
|
|
|
wg.Done()
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2018-05-31 17:23:15 +02:00
|
|
|
if mode == ModeAny || mode == ModeAUR {
|
|
|
|
fmt.Println(bold(cyan("::") + bold(" Searching AUR for updates...")))
|
|
|
|
wg.Add(1)
|
|
|
|
go func() {
|
|
|
|
aurUp, aurErr = upAUR(remote, remoteNames, pkgdata, warnings)
|
|
|
|
wg.Done()
|
|
|
|
}()
|
|
|
|
|
|
|
|
if config.Devel {
|
|
|
|
fmt.Println(bold(cyan("::") + bold(" Checking development packages...")))
|
|
|
|
wg.Add(1)
|
|
|
|
go func() {
|
|
|
|
develUp, develErr = upDevel(remote)
|
|
|
|
wg.Done()
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-20 17:20:09 +01:00
|
|
|
wg.Wait()
|
|
|
|
|
2018-05-08 08:51:49 +02:00
|
|
|
printLocalNewerThanAUR(remote, pkgdata)
|
|
|
|
|
2018-03-20 17:20:09 +01:00
|
|
|
errs := make([]string, 0)
|
|
|
|
for _, e := range []error{repoErr, aurErr, develErr} {
|
|
|
|
if e != nil {
|
|
|
|
errs = append(errs, e.Error())
|
2017-07-14 19:03:54 +02:00
|
|
|
}
|
|
|
|
}
|
2018-03-20 17:20:09 +01:00
|
|
|
|
|
|
|
if len(errs) > 0 {
|
|
|
|
err = fmt.Errorf("%s", strings.Join(errs, "\n"))
|
2018-03-21 00:04:28 +01:00
|
|
|
return nil, nil, err
|
2018-03-20 17:20:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if develUp != nil {
|
2018-03-21 00:04:28 +01:00
|
|
|
names := make(stringSet)
|
|
|
|
for _, up := range develUp {
|
|
|
|
names.set(up.Name)
|
|
|
|
}
|
|
|
|
for _, up := range aurUp {
|
|
|
|
if !names.get(up.Name) {
|
|
|
|
develUp = append(develUp, up)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
aurUp = develUp
|
2018-03-20 17:20:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return aurUp, repoUp, err
|
2017-07-14 19:03:54 +02:00
|
|
|
}
|
|
|
|
|
2018-03-20 17:20:09 +01:00
|
|
|
func upDevel(remote []alpm.Package) (toUpgrade upSlice, err error) {
|
2018-04-27 02:25:40 +02:00
|
|
|
toUpdate := make([]alpm.Package, 0)
|
|
|
|
toRemove := make([]string, 0)
|
2018-03-08 22:34:12 +01:00
|
|
|
|
|
|
|
var mux1 sync.Mutex
|
|
|
|
var mux2 sync.Mutex
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
|
|
|
|
checkUpdate := func(vcsName string, e shaInfos) {
|
|
|
|
defer wg.Done()
|
|
|
|
|
2017-10-18 04:12:16 +02:00
|
|
|
if e.needsUpdate() {
|
2018-03-08 22:34:12 +01:00
|
|
|
for _, pkg := range remote {
|
|
|
|
if pkg.Name() == vcsName {
|
|
|
|
mux1.Lock()
|
|
|
|
toUpdate = append(toUpdate, pkg)
|
|
|
|
mux1.Unlock()
|
|
|
|
return
|
2017-10-18 07:46:21 +02:00
|
|
|
}
|
|
|
|
}
|
2018-03-08 22:34:12 +01:00
|
|
|
|
|
|
|
mux2.Lock()
|
|
|
|
toRemove = append(toRemove, vcsName)
|
|
|
|
mux2.Unlock()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for vcsName, e := range savedInfo {
|
|
|
|
wg.Add(1)
|
|
|
|
go checkUpdate(vcsName, e)
|
|
|
|
}
|
|
|
|
|
|
|
|
wg.Wait()
|
|
|
|
|
|
|
|
for _, pkg := range toUpdate {
|
|
|
|
if pkg.ShouldIgnore() {
|
2018-05-08 08:51:49 +02:00
|
|
|
printIgnoringPackage(pkg, "latest-commit")
|
2018-03-08 22:34:12 +01:00
|
|
|
} else {
|
2018-03-20 17:20:09 +01:00
|
|
|
toUpgrade = append(toUpgrade, upgrade{pkg.Name(), "devel", pkg.Version(), "latest-commit"})
|
2017-10-18 04:12:16 +02:00
|
|
|
}
|
|
|
|
}
|
2018-03-08 22:34:12 +01:00
|
|
|
|
|
|
|
removeVCSPackage(toRemove)
|
2018-03-20 17:20:09 +01:00
|
|
|
return
|
2017-10-18 04:12:16 +02:00
|
|
|
}
|
|
|
|
|
2017-10-14 18:11:47 +02:00
|
|
|
// upAUR gathers foreign packages and checks if they have new versions.
|
2017-07-14 19:03:54 +02:00
|
|
|
// Output: Upgrade type package list.
|
2018-05-08 08:51:49 +02:00
|
|
|
func upAUR(
|
|
|
|
remote []alpm.Package, remoteNames []string,
|
|
|
|
pkgdata map[string]*rpc.Pkg, warnings *aurWarnings) (upSlice, error) {
|
|
|
|
|
2018-03-29 04:42:11 +02:00
|
|
|
toUpgrade := make(upSlice, 0)
|
2018-04-11 05:43:51 +02:00
|
|
|
_pkgdata, err := aurInfo(remoteNames, warnings)
|
2018-03-29 04:42:11 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, pkg := range _pkgdata {
|
|
|
|
pkgdata[pkg.Name] = pkg
|
|
|
|
}
|
|
|
|
|
2018-03-20 17:20:09 +01:00
|
|
|
for _, pkg := range remote {
|
2018-03-29 04:42:11 +02:00
|
|
|
aurPkg, ok := pkgdata[pkg.Name()]
|
2018-03-20 17:20:09 +01:00
|
|
|
if !ok {
|
|
|
|
continue
|
2018-02-19 00:46:25 +01:00
|
|
|
}
|
|
|
|
|
2018-03-20 17:20:09 +01:00
|
|
|
if (config.TimeUpdate && (int64(aurPkg.LastModified) > pkg.BuildDate().Unix())) ||
|
|
|
|
(alpm.VerCmp(pkg.Version(), aurPkg.Version) < 0) {
|
|
|
|
if pkg.ShouldIgnore() {
|
2018-05-08 08:51:49 +02:00
|
|
|
printIgnoringPackage(pkg, aurPkg.Version)
|
2018-03-20 17:20:09 +01:00
|
|
|
} else {
|
|
|
|
toUpgrade = append(toUpgrade, upgrade{aurPkg.Name, "aur", pkg.Version(), aurPkg.Version})
|
2017-07-14 19:03:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-03-20 17:20:09 +01:00
|
|
|
|
2018-03-29 04:42:11 +02:00
|
|
|
return toUpgrade, nil
|
2017-07-14 19:03:54 +02:00
|
|
|
}
|
|
|
|
|
2018-05-08 08:51:49 +02:00
|
|
|
func printIgnoringPackage(pkg alpm.Package, newPkgVersion string) {
|
|
|
|
left, right := getVersionDiff(pkg.Version(), newPkgVersion)
|
|
|
|
|
|
|
|
fmt.Println(
|
|
|
|
yellow(bold(smallArrow)) + fmt.Sprintf(
|
|
|
|
" Ignoring package upgrade: %s (%s -> %s)",
|
|
|
|
cyan(pkg.Name()), left, right))
|
|
|
|
}
|
|
|
|
|
|
|
|
func printLocalNewerThanAUR(
|
|
|
|
remote []alpm.Package, pkgdata map[string]*rpc.Pkg) {
|
|
|
|
for _, pkg := range remote {
|
|
|
|
aurPkg, ok := pkgdata[pkg.Name()]
|
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
left, right := getVersionDiff(pkg.Version(), aurPkg.Version)
|
|
|
|
|
|
|
|
if !isDevelName(pkg.Name()) &&
|
|
|
|
alpm.VerCmp(pkg.Version(), aurPkg.Version) > 0 {
|
|
|
|
fmt.Println(
|
|
|
|
yellow(bold(smallArrow)) + fmt.Sprintf(
|
|
|
|
" Local package is newer than AUR: %s (%s -> %s)",
|
|
|
|
cyan(pkg.Name()), left, right))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-14 18:11:47 +02:00
|
|
|
// upRepo gathers local packages and checks if they have new versions.
|
2017-07-14 19:03:54 +02:00
|
|
|
// Output: Upgrade type package list.
|
2017-08-01 18:43:20 +02:00
|
|
|
func upRepo(local []alpm.Package) (upSlice, error) {
|
2017-10-18 04:38:19 +02:00
|
|
|
dbList, err := alpmHandle.SyncDbs()
|
2017-07-14 19:03:54 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-08-01 18:43:20 +02:00
|
|
|
slice := upSlice{}
|
2017-10-18 04:38:19 +02:00
|
|
|
|
2017-07-14 19:03:54 +02:00
|
|
|
for _, pkg := range local {
|
2017-07-18 11:51:58 +02:00
|
|
|
newPkg := pkg.NewVersion(dbList)
|
2018-01-10 01:38:32 +01:00
|
|
|
if newPkg != nil {
|
|
|
|
if pkg.ShouldIgnore() {
|
2018-05-08 08:51:49 +02:00
|
|
|
printIgnoringPackage(pkg, newPkg.Version())
|
2018-01-10 01:38:32 +01:00
|
|
|
} else {
|
|
|
|
slice = append(slice, upgrade{pkg.Name(), newPkg.DB().Name(), pkg.Version(), newPkg.Version()})
|
|
|
|
}
|
2017-07-14 19:03:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return slice, nil
|
|
|
|
}
|
2017-08-01 18:43:20 +02:00
|
|
|
|
2017-10-14 18:11:47 +02:00
|
|
|
// upgradePkgs handles updating the cache and installing updates.
|
2018-03-29 04:42:11 +02:00
|
|
|
func upgradePkgs(aurUp, repoUp upSlice) (stringSet, stringSet, error) {
|
2018-03-21 17:30:00 +01:00
|
|
|
ignore := make(stringSet)
|
2018-02-19 00:46:25 +01:00
|
|
|
aurNames := make(stringSet)
|
|
|
|
|
2018-05-02 17:46:21 +02:00
|
|
|
allUpLen := len(repoUp) + len(aurUp)
|
|
|
|
if allUpLen == 0 {
|
2018-03-29 04:42:11 +02:00
|
|
|
return ignore, aurNames, nil
|
2017-08-01 18:43:20 +02:00
|
|
|
}
|
|
|
|
|
2018-06-11 20:48:20 +02:00
|
|
|
if !config.UpgradeMenu {
|
|
|
|
for _, pkg := range aurUp {
|
|
|
|
aurNames.set(pkg.Name)
|
|
|
|
}
|
|
|
|
|
|
|
|
return ignore, aurNames, nil
|
|
|
|
}
|
|
|
|
|
2017-08-01 18:43:20 +02:00
|
|
|
sort.Sort(repoUp)
|
2018-03-20 23:34:06 +01:00
|
|
|
sort.Sort(aurUp)
|
2018-05-02 17:46:21 +02:00
|
|
|
allUp := append(repoUp, aurUp...)
|
|
|
|
fmt.Printf("%s"+bold(" %d ")+"%s\n", bold(cyan("::")), allUpLen, bold("Packages to upgrade."))
|
2018-05-20 17:17:05 +02:00
|
|
|
allUp.print()
|
2017-08-01 18:43:20 +02:00
|
|
|
|
2018-04-11 05:43:51 +02:00
|
|
|
fmt.Println(bold(green(arrow + " Packages to not upgrade: (eg: 1 2 3, 1-3, ^4 or repo name)")))
|
2018-03-09 04:41:45 +01:00
|
|
|
fmt.Print(bold(green(arrow + " ")))
|
|
|
|
|
2018-04-04 22:26:07 +02:00
|
|
|
numbers, err := getInput(config.AnswerUpgrade)
|
2018-03-09 04:41:45 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
//upgrade menu asks you which packages to NOT upgrade so in this case
|
2018-04-23 19:06:56 +02:00
|
|
|
//include and exclude are kind of swapped
|
2018-03-09 04:41:45 +01:00
|
|
|
//include, exclude, other := parseNumberMenu(string(numberBuf))
|
2018-04-04 22:26:07 +02:00
|
|
|
include, exclude, otherInclude, otherExclude := parseNumberMenu(numbers)
|
2017-08-01 18:43:20 +02:00
|
|
|
|
2018-03-09 04:41:45 +01:00
|
|
|
isInclude := len(exclude) == 0 && len(otherExclude) == 0
|
|
|
|
|
|
|
|
for i, pkg := range repoUp {
|
|
|
|
if isInclude && otherInclude.get(pkg.Repository) {
|
2018-03-21 17:30:00 +01:00
|
|
|
ignore.set(pkg.Name)
|
2017-08-01 18:43:20 +02:00
|
|
|
}
|
2017-08-02 23:56:45 +02:00
|
|
|
|
2018-03-09 04:41:45 +01:00
|
|
|
if isInclude && !include.get(len(repoUp)-i+len(aurUp)) {
|
2018-03-21 17:30:00 +01:00
|
|
|
continue
|
2017-08-01 18:43:20 +02:00
|
|
|
}
|
2018-03-09 04:41:45 +01:00
|
|
|
|
|
|
|
if !isInclude && (exclude.get(len(repoUp)-i+len(aurUp)) || otherExclude.get(pkg.Repository)) {
|
2018-03-21 17:30:00 +01:00
|
|
|
continue
|
2018-01-14 18:48:16 +01:00
|
|
|
}
|
2018-03-21 17:30:00 +01:00
|
|
|
|
|
|
|
ignore.set(pkg.Name)
|
2017-08-01 18:43:20 +02:00
|
|
|
}
|
|
|
|
|
2018-03-09 04:41:45 +01:00
|
|
|
for i, pkg := range aurUp {
|
|
|
|
if isInclude && otherInclude.get(pkg.Repository) {
|
|
|
|
continue
|
2017-08-01 18:43:20 +02:00
|
|
|
}
|
|
|
|
|
2018-03-09 04:41:45 +01:00
|
|
|
if isInclude && !include.get(len(aurUp)-i) {
|
|
|
|
aurNames.set(pkg.Name)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !isInclude && (exclude.get(len(aurUp)-i) || otherExclude.get(pkg.Repository)) {
|
|
|
|
aurNames.set(pkg.Name)
|
2017-08-01 18:43:20 +02:00
|
|
|
}
|
|
|
|
}
|
2018-01-20 23:37:10 +01:00
|
|
|
|
2018-03-21 17:30:00 +01:00
|
|
|
return ignore, aurNames, err
|
2017-08-01 18:43:20 +02:00
|
|
|
}
|