summaryrefslogtreecommitdiff
path: root/apt.go
blob: c06d4c1497bff8263686c8e7dd760bb858e63df8 (plain)
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package zoopb

import (
	"fmt"

	"go.wit.com/log"
)

// init the installed package list
func (me *Machine) initPackages() {
	// Get the list of installed packages for the detected distro
	newP, err := getPackageList(me.Distro)
	if err != nil {
		fmt.Println("Error:", err)
		return
	}

	if me.Packages == nil {
		me.Packages = new(Packages)
	}

	// Print the installed packages and their versions
	for pkg, version := range newP {
		new1 := new(Package)
		new1.Name = pkg
		new1.Version = version
		if me.Packages.Append(new1) {
			// log.Info("added", new1.Name, "ok")
		} else {
			log.Info("added", new1.Name, "failed")
		}
	}

	log.Info(me.Hostname, "is", me.Distro, "with", me.Packages.Len(), "packages")
}

func (me *Machine) addNew(name string, version string) bool {
	new1 := new(Package)
	new1.Name = name
	new1.Version = version
	return me.Packages.Append(new1)
}

func (me *Machine) UpdatePackages() string {
	// Get the list of installed packages for the detected distro
	newP, err := getPackageList(me.Distro)
	if err != nil {
		fmt.Println("Error:", err)
		return fmt.Sprintln("getPackageList()", err)
	}

	var newCounter, changeCounter int
	// Print the installed packages and their versions
	for pkg, version := range newP {
		found := me.Packages.FindByName(pkg)
		if found == nil {
			log.Info("adding new", pkg, version)
			me.addNew(pkg, version)
			newCounter += 1
		} else {
			found.Version = version
			panic("redo this. broken after autogenpb. was never right anyway")
			//if me.Packages.Update(found) {
			//	changeCounter += 1
			//}
		}
	}

	footer := fmt.Sprintf("%s has distro %s with %d packages installed", me.Hostname, me.Distro, me.Packages.Len())
	if changeCounter != 0 {
		footer += fmt.Sprintf(" (%d changed)", changeCounter)
	}
	if newCounter != 0 {
		footer += fmt.Sprintf(" (%d new)", newCounter)
	}
	return footer
}