summaryrefslogtreecommitdiff
path: root/apt_linux.go
blob: 7e534f05ef835313cf43aeb6bbcc3300d645cc8f (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
package main

import (
	"bufio"
	"fmt"
	"os/exec"
	"strings"

	"go.wit.com/log"
)

// getPackageList returns the list of installed packages based on the distro
func getPackageList(distro string) (map[string]string, error) {
	var cmd *exec.Cmd

	// Run the appropriate command based on the detected distribution
	switch distro {
	case "ubuntu", "debian":
		return dpkgQuery()
	case "fedora", "centos", "rhel":
		cmd = exec.Command("rpm", "-qa")
	case "arch", "manjaro":
		cmd = exec.Command("pacman", "-Q")
	default:
		return nil, fmt.Errorf("unsupported distribution: %s", distro)
	}

	// Capture the command's output
	output, err := cmd.CombinedOutput()
	if err != nil {
		return nil, fmt.Errorf("error running command: %v", err)
	}

	// todo: Split the output into lines and return
	lines := strings.Split(string(output), "\n")
	log.Info("output had", len(lines), "lines")
	return nil, nil
}

func dpkgQuery() (map[string]string, error) {
	// Run the dpkg-query command to list installed packages and versions
	cmd := exec.Command("dpkg-query", "-W", "-f=${Package} ${Version}\n")
	stdout, err := cmd.StdoutPipe()
	if err != nil {
		return nil, err
	}

	// Start the command execution
	if err := cmd.Start(); err != nil {
		return nil, err
	}
	defer cmd.Wait()

	// Create a map to store package names and versions
	installedPackages := make(map[string]string)

	// Use a scanner to read the output of the command line by line
	scanner := bufio.NewScanner(stdout)
	for scanner.Scan() {
		line := scanner.Text()
		// Split each line into package name and version
		parts := strings.SplitN(line, " ", 2)
		if len(parts) == 2 {
			packageName := parts[0]
			version := parts[1]
			installedPackages[packageName] = version
		}
	}

	// Return the map with package names and versions
	return installedPackages, scanner.Err()
}