lure/info.go

94 lines
2.3 KiB
Go
Raw Normal View History

2022-09-26 21:42:17 +00:00
/*
* LURE - Linux User REpository
* Copyright (C) 2023 Arsen Musayelyan
2022-09-26 21:42:17 +00:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package main
import (
"fmt"
2022-09-26 21:42:17 +00:00
"os"
"go.arsenm.dev/logger/log"
2022-09-26 21:42:17 +00:00
"github.com/urfave/cli/v2"
"go.arsenm.dev/lure/distro"
"go.arsenm.dev/lure/internal/cliutils"
2023-01-13 03:41:52 +00:00
"go.arsenm.dev/lure/internal/config"
"go.arsenm.dev/lure/internal/overrides"
"go.arsenm.dev/lure/internal/repos"
2022-09-26 21:42:17 +00:00
"gopkg.in/yaml.v3"
)
func infoCmd(c *cli.Context) error {
args := c.Args()
if args.Len() < 1 {
log.Fatalf("Command info expected at least 1 argument, got %d", args.Len()).Send()
}
err := repos.Pull(c.Context, gdb, cfg.Repos)
if err != nil {
log.Fatal("Error pulling repositories").Err(err).Send()
}
found, _, err := repos.FindPkgs(gdb, args.Slice())
2022-09-26 21:42:17 +00:00
if err != nil {
log.Fatal("Error finding packages").Err(err).Send()
2022-09-26 21:42:17 +00:00
}
if len(found) == 0 {
os.Exit(1)
2022-09-26 21:42:17 +00:00
}
2023-01-13 03:41:52 +00:00
pkgs := cliutils.FlattenPkgs(found, "show", translator)
2022-09-26 21:42:17 +00:00
var names []string
2022-12-29 19:53:57 +00:00
all := c.Bool("all")
2022-12-29 19:53:57 +00:00
if !all {
info, err := distro.ParseOSRelease(c.Context)
if err != nil {
log.Fatal("Error parsing os-release file").Err(err).Send()
}
2023-01-11 23:26:12 +00:00
names, err = overrides.Resolve(
info,
overrides.DefaultOpts.
2023-01-13 03:41:52 +00:00
WithLanguages([]string{config.SystemLang()}),
2023-01-11 23:26:12 +00:00
)
2023-01-11 21:37:52 +00:00
if err != nil {
log.Fatal("Error resolving overrides").Err(err).Send()
}
}
for _, pkg := range pkgs {
2022-12-29 19:53:57 +00:00
if !all {
2023-01-11 23:26:12 +00:00
err = yaml.NewEncoder(os.Stdout).Encode(overrides.ResolvePackage(&pkg, names))
if err != nil {
log.Fatal("Error encoding script variables").Err(err).Send()
}
2023-01-11 23:26:12 +00:00
} else {
err = yaml.NewEncoder(os.Stdout).Encode(pkg)
if err != nil {
log.Fatal("Error encoding script variables").Err(err).Send()
}
}
fmt.Println("---")
2022-09-26 21:42:17 +00:00
}
return nil
}