summaryrefslogtreecommitdiff
path: root/main.go
blob: 8ec88503670981dd516287e41088d8e23ecf24e4 (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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
package main

import (
	"fmt"
	"os"
	"path/filepath"
	paths "qulay/config"
	"qulay/database"
	"qulay/helpers"
	pkg "qulay/package"
	"slices"
	"strings"
)

var _name string = filepath.Base(os.Args[0])
var _cmds = []string{"h", "+", "-", "g", "s", "p", "u", "r", "q", "f", "v"}
var _root_cmds = []string{"+", "-", "u", "i"}

const _version string = "0.7"
const _help string = `{_name}: command-line interface to the Qulay Package Manager
Usage:
    {_name} h       -> help menu
    {_name} + pkg   -> download and install package
    {_name} - pkg   -> remove package
    {_name} g pkg   -> get package version
    {_name} s pkg   -> search packages by name
    {_name} p repo  -> purge local repo directory
    {_name} u       -> update all repositories
    {_name} r       -> get all repositories URLs
    {_name} q       -> get all installed packages
    {_name} f       -> get files path for destDir
    {_name} v       -> get {_name} version
Options:
    :v    -> verbose output
    :a    -> ask before doing
    :nl   -> disable recording in databases and logs
    :nd   -> do not download deps
    :nrc  -> disable uid 0 (root) checks
    :r    -> reinstall already installed deps
Vars:
    DESTDIR  -> path where the package will be installed/removed`

func parseArgs(args []string) ([]string, []string, []string) {
	var cmds, oths, opts []string
	for _, arg := range args {
		if strings.HasPrefix(arg, ":") {
			opts = append(opts, arg)
		} else if slices.Contains(_cmds, arg) && len(cmds) < 1 {
			cmds = append(cmds, arg)
		} else {
			oths = append(oths, arg)
		}
	}
	return cmds, oths, opts
}

func printHelp() {
	r := strings.NewReplacer("{_name}", _name)
	fmt.Println(r.Replace(_help))
}

func main() {
	var args []string = os.Args[1:]
	cmds, oths, opts := parseArgs(args)

	destDir := os.Getenv("DESTDIR")
	if destDir == "" {
		destDir = "/"
	}

	absDestDir, err := filepath.Abs(destDir)
	if err != nil {
		fmt.Fprintf(os.Stderr, "!! failed to get absolute path of destDir: %v\n", err)
		os.Exit(1)
	}

	if len(args) == 0 || len(cmds) == 0 {
		printHelp()
		os.Exit(1)
	}

	if os.Getuid() != 0 && slices.Contains(_root_cmds, cmds[0]) && !slices.Contains(opts, ":nrc") {
		fmt.Println("!! this command is root-only. run this with root privileges")
		os.Exit(1)
	}

	// fmt.Println(cmds, oths, opts)
	if cmds[0] == "h" {
		printHelp()
	} else if cmds[0] == "+" {
		if len(oths) < 1 {
			fmt.Println("!! no package(s) received")
			os.Exit(1)
		}
		for _, n := range oths {
			err := pkg.Install(n, opts, absDestDir)
			if err != nil {
				fmt.Println("!!", err)
				os.Exit(1)
			}
		}
	} else if cmds[0] == "-" {
		if len(oths) < 1 {
			fmt.Println("!! no package(s) received")
			os.Exit(1)
		}
		for _, n := range oths {
			err := pkg.Remove(n, opts, absDestDir)
			if err != nil {
				fmt.Println("!!", err)
				os.Exit(1)
			}
		}
	} else if cmds[0] == "u" {
		database.DownloadRepos(database.GetReposUrls(absDestDir), absDestDir)
	} else if cmds[0] == "g" {
		if len(oths) < 1 {
			fmt.Println("!! no package(s) received")
			os.Exit(1)
		}
		for _, name := range oths {
			fmt.Println(database.GetPackageVersion(name, absDestDir))
		}
	} else if cmds[0] == "r" {
		for _, url := range database.GetReposUrls(absDestDir) {
			fmt.Println(url)
		}
	} else if cmds[0] == "q" {
		for name, version := range database.ReadInstalled(absDestDir) {
			fmt.Println(name, "-", version[0])
		}
	} else if cmds[0] == "s" {
		if len(oths) < 1 {
			pkgs := pkg.GetPackages(absDestDir)
			for _, p := range pkgs {
				if database.IsInstalled(p.Repo+"/"+p.Name, absDestDir) {
					fmt.Printf("[+] %s/%s - %v - %v\n", p.Repo, p.Name, p.Data[0], p.Data[1])
				} else {
					fmt.Printf("    %s/%s - %v - %v\n", p.Repo, p.Name, p.Data[0], p.Data[1])
				}
			}
		} else {
			for _, n := range oths {
				pkgs := pkg.FindPackages(n, absDestDir)
				for _, p := range pkgs {
					if database.IsInstalled(p.Repo+"/"+p.Name, absDestDir) {
						fmt.Printf("[+] %s/%s - %v - %v\n", p.Repo, p.Name, p.Data[0], p.Data[1])
					} else {
						fmt.Printf("    %s/%s - %v - %v\n", p.Repo, p.Name, p.Data[0], p.Data[1])
					}
				}
			}
		}
	} else if cmds[0] == "p" {
		if slices.Contains(opts, ":a") {
			if !helpers.Ask("do you want purge repo(s)?") {
				os.Exit(1)
			}
		}
		if len(oths) >= 1 {
			for _, n := range oths {
				err := database.PurgeRepository(n, absDestDir)
				if err != nil {
					fmt.Println("!!", err)
					os.Exit(1)
				} else {
					fmt.Println(":: deleted", n, "repository in", paths.ReposDir)
				}
			}
		}
	} else if cmds[0] == "f" {
		fmt.Printf("dest dir: %v\n", destDir)
		fmt.Printf("abs dest dir: %v\n", absDestDir)
		fmt.Printf("is abs: %v\n", filepath.IsAbs(destDir))
		fmt.Printf("repos urls file: %v\n", filepath.Join(absDestDir, paths.ReposUrlsFile))
		fmt.Printf("repos dir: %v\n", filepath.Join(absDestDir, paths.ReposDir))
		fmt.Printf("installed pkgs database: %v\n", filepath.Join(absDestDir, paths.InstalledFile))
	} else if cmds[0] == "v" {
		fmt.Println(_version)
	} else {
		fmt.Println("w! unknown command:", cmds[0])
		printHelp()
		os.Exit(1)
	}
}