2017-05-06 18:34:40 +02:00
|
|
|
package config
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"net/http"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
alpm "github.com/jguer/go-alpm"
|
|
|
|
)
|
|
|
|
|
2017-05-07 03:43:49 +02:00
|
|
|
// Verbosity settings for search
|
|
|
|
const (
|
|
|
|
NumberMenu = iota
|
|
|
|
Detailed
|
|
|
|
Minimal
|
|
|
|
)
|
|
|
|
|
|
|
|
// Describes Sorting method for numberdisplay
|
|
|
|
const (
|
|
|
|
BottomUp = iota
|
|
|
|
TopDown
|
|
|
|
)
|
|
|
|
|
|
|
|
// Configuration stores yay's config.
|
2017-05-06 18:34:40 +02:00
|
|
|
type Configuration struct {
|
2017-05-07 03:43:49 +02:00
|
|
|
BuildDir string `json:"buildDir"`
|
|
|
|
Editor string `json:"editor"`
|
|
|
|
MakepkgBin string `json:"makepkgbin"`
|
|
|
|
Shell string `json:"-"`
|
|
|
|
NoConfirm bool `json:"noconfirm"`
|
2017-05-09 03:09:43 +02:00
|
|
|
Devel bool `json:"devel"`
|
2017-05-07 03:43:49 +02:00
|
|
|
PacmanBin string `json:"pacmanbin"`
|
|
|
|
PacmanConf string `json:"pacmanconf"`
|
|
|
|
SearchMode int `json:"-"`
|
|
|
|
SortMode int `json:"sortmode"`
|
|
|
|
TarBin string `json:"tarbin"`
|
2017-06-21 09:41:54 +02:00
|
|
|
TimeUpdate bool `json:"timeupdate"`
|
2017-05-06 18:34:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// YayConf holds the current config values for yay.
|
|
|
|
var YayConf Configuration
|
|
|
|
|
|
|
|
// AlpmConf holds the current config values for pacman.
|
|
|
|
var AlpmConf alpm.PacmanConfig
|
|
|
|
|
2017-05-07 03:43:49 +02:00
|
|
|
// AlpmHandle is the alpm handle used by yay.
|
2017-05-06 19:32:33 +02:00
|
|
|
var AlpmHandle *alpm.Handle
|
2017-05-06 18:34:40 +02:00
|
|
|
|
|
|
|
func init() {
|
2017-07-06 09:30:48 +02:00
|
|
|
defaultSettings(&YayConf)
|
|
|
|
|
2017-05-06 19:32:33 +02:00
|
|
|
var err error
|
2017-05-06 18:34:40 +02:00
|
|
|
configfile := os.Getenv("HOME") + "/.config/yay/config.json"
|
|
|
|
|
2017-05-06 19:32:33 +02:00
|
|
|
if _, err = os.Stat(configfile); os.IsNotExist(err) {
|
2017-05-06 18:34:40 +02:00
|
|
|
_ = os.MkdirAll(os.Getenv("HOME")+"/.config/yay", 0755)
|
2017-07-06 09:30:48 +02:00
|
|
|
// Save the default config if nothing is found
|
|
|
|
SaveConfig()
|
2017-05-06 19:32:33 +02:00
|
|
|
} else {
|
|
|
|
file, err := os.Open(configfile)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println("Error reading config:", err)
|
|
|
|
} else {
|
|
|
|
decoder := json.NewDecoder(file)
|
|
|
|
err = decoder.Decode(&YayConf)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println("Loading default Settings\nError reading config:", err)
|
|
|
|
defaultSettings(&YayConf)
|
|
|
|
}
|
|
|
|
}
|
2017-05-06 18:34:40 +02:00
|
|
|
}
|
|
|
|
|
2017-05-06 19:32:33 +02:00
|
|
|
AlpmConf, err = readAlpmConfig(YayConf.PacmanConf)
|
2017-05-06 18:34:40 +02:00
|
|
|
if err != nil {
|
2017-05-06 19:32:33 +02:00
|
|
|
fmt.Println("Unable to read Pacman conf", err)
|
|
|
|
os.Exit(1)
|
2017-05-06 18:34:40 +02:00
|
|
|
}
|
|
|
|
|
2017-05-06 19:32:33 +02:00
|
|
|
AlpmHandle, err = AlpmConf.CreateHandle()
|
2017-05-06 18:34:40 +02:00
|
|
|
if err != nil {
|
2017-05-06 19:32:33 +02:00
|
|
|
fmt.Println("Unable to CreateHandle", err)
|
|
|
|
os.Exit(1)
|
2017-05-06 18:34:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func readAlpmConfig(pacmanconf string) (conf alpm.PacmanConfig, err error) {
|
|
|
|
file, err := os.Open(pacmanconf)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
conf, err = alpm.ParseConfig(file)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-05-07 03:43:49 +02:00
|
|
|
// SaveConfig writes yay config to file.
|
|
|
|
func SaveConfig() error {
|
|
|
|
YayConf.NoConfirm = false
|
|
|
|
configfile := os.Getenv("HOME") + "/.config/yay/config.json"
|
2017-07-06 09:30:48 +02:00
|
|
|
marshalledinfo, _ := json.MarshalIndent(YayConf, "", "\t")
|
2017-05-07 03:43:49 +02:00
|
|
|
in, err := os.OpenFile(configfile, os.O_RDWR|os.O_CREATE, 0755)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer in.Close()
|
|
|
|
_, err = in.Write(marshalledinfo)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = in.Sync()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-05-06 18:34:40 +02:00
|
|
|
func defaultSettings(config *Configuration) {
|
|
|
|
config.BuildDir = "/tmp/yaytmp/"
|
|
|
|
config.Editor = ""
|
2017-05-09 03:09:43 +02:00
|
|
|
config.Devel = false
|
2017-05-06 18:34:40 +02:00
|
|
|
config.MakepkgBin = "/usr/bin/makepkg"
|
2017-05-07 03:43:49 +02:00
|
|
|
config.NoConfirm = false
|
2017-05-06 18:34:40 +02:00
|
|
|
config.PacmanBin = "/usr/bin/pacman"
|
|
|
|
config.PacmanConf = "/etc/pacman.conf"
|
2017-05-07 03:43:49 +02:00
|
|
|
config.SortMode = BottomUp
|
2017-05-06 18:34:40 +02:00
|
|
|
config.TarBin = "/usr/bin/bsdtar"
|
2017-05-25 01:28:35 +02:00
|
|
|
config.TimeUpdate = false
|
2017-05-06 18:34:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Editor returns the preferred system editor.
|
|
|
|
func Editor() string {
|
|
|
|
switch {
|
|
|
|
case YayConf.Editor != "":
|
|
|
|
editor, err := exec.LookPath(YayConf.Editor)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
} else {
|
|
|
|
return editor
|
|
|
|
}
|
|
|
|
fallthrough
|
|
|
|
case os.Getenv("EDITOR") != "":
|
|
|
|
editor, err := exec.LookPath(os.Getenv("EDITOR"))
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
} else {
|
|
|
|
return editor
|
|
|
|
}
|
|
|
|
fallthrough
|
|
|
|
case os.Getenv("VISUAL") != "":
|
|
|
|
editor, err := exec.LookPath(os.Getenv("VISUAL"))
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
} else {
|
|
|
|
return editor
|
|
|
|
}
|
|
|
|
fallthrough
|
|
|
|
default:
|
|
|
|
fmt.Printf("\x1b[1;31;40mWarning: \x1B[1;33;40m$EDITOR\x1b[0;37;40m is not set.\x1b[0m\nPlease add $EDITOR or to your environment variables.\n")
|
|
|
|
|
|
|
|
editorLoop:
|
|
|
|
fmt.Printf("\x1b[32m%s\x1b[0m ", "Edit PKGBUILD with:")
|
|
|
|
var editorInput string
|
|
|
|
_, err := fmt.Scanln(&editorInput)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
goto editorLoop
|
|
|
|
}
|
|
|
|
|
|
|
|
editor, err := exec.LookPath(editorInput)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
goto editorLoop
|
|
|
|
}
|
|
|
|
return editor
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ContinueTask prompts if user wants to continue task.
|
|
|
|
//If NoConfirm is set the action will continue without user input.
|
|
|
|
func ContinueTask(s string, def string) (cont bool) {
|
2017-05-07 03:43:49 +02:00
|
|
|
if YayConf.NoConfirm {
|
2017-05-06 18:34:40 +02:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
var postFix string
|
|
|
|
|
|
|
|
if def == "nN" {
|
|
|
|
postFix = "[Y/n] "
|
|
|
|
} else {
|
|
|
|
postFix = "[y/N] "
|
|
|
|
}
|
|
|
|
|
|
|
|
var response string
|
|
|
|
fmt.Printf("\x1b[1;32m==> %s\x1b[1;37m %s\x1b[0m", s, postFix)
|
|
|
|
|
|
|
|
n, err := fmt.Scanln(&response)
|
|
|
|
if err != nil || n == 0 {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if response == string(def[0]) || response == string(def[1]) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func downloadFile(path string, url string) (err error) {
|
|
|
|
// Create the file
|
|
|
|
out, err := os.Create(path)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer out.Close()
|
|
|
|
|
|
|
|
// Get the data
|
|
|
|
resp, err := http.Get(url)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
|
|
|
// Writer the body to file
|
|
|
|
_, err = io.Copy(out, resp.Body)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// DownloadAndUnpack downloads url tgz and extracts to path.
|
|
|
|
func DownloadAndUnpack(url string, path string, trim bool) (err error) {
|
|
|
|
err = os.MkdirAll(path, 0755)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
tokens := strings.Split(url, "/")
|
|
|
|
fileName := tokens[len(tokens)-1]
|
|
|
|
|
|
|
|
tarLocation := path + fileName
|
|
|
|
defer os.Remove(tarLocation)
|
|
|
|
|
|
|
|
err = downloadFile(tarLocation, url)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if trim {
|
|
|
|
err = exec.Command("/bin/sh", "-c",
|
|
|
|
YayConf.TarBin+" --strip-components 2 --include='*/"+fileName[:len(fileName)-7]+"/trunk/' -xf "+tarLocation+" -C "+path).Run()
|
|
|
|
os.Rename(path+"trunk", path+fileName[:len(fileName)-7]) // kurwa
|
|
|
|
} else {
|
|
|
|
err = exec.Command(YayConf.TarBin, "-xf", tarLocation, "-C", path).Run()
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
2017-05-07 03:43:49 +02:00
|
|
|
|
|
|
|
// PassToPacman outsorces execution to pacman binary without modifications.
|
|
|
|
func PassToPacman(op string, pkgs []string, flags []string) error {
|
|
|
|
var cmd *exec.Cmd
|
|
|
|
var args []string
|
|
|
|
|
|
|
|
args = append(args, op)
|
|
|
|
if len(pkgs) != 0 {
|
|
|
|
args = append(args, pkgs...)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(flags) != 0 {
|
|
|
|
args = append(args, flags...)
|
|
|
|
}
|
|
|
|
|
2017-07-05 23:30:42 +02:00
|
|
|
if strings.Contains(op, "-Q") || op == "Si" {
|
2017-05-07 03:43:49 +02:00
|
|
|
cmd = exec.Command(YayConf.PacmanBin, args...)
|
|
|
|
} else {
|
|
|
|
args = append([]string{YayConf.PacmanBin}, args...)
|
|
|
|
cmd = exec.Command("sudo", args...)
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd.Stdin, cmd.Stdout, cmd.Stderr = os.Stdin, os.Stdout, os.Stderr
|
|
|
|
err := cmd.Run()
|
|
|
|
return err
|
|
|
|
}
|