2020-03-06 16:51:04 +00:00
|
|
|
// Copyright © 2020 Ettore Di Giacinto <mudler@gentoo.org>
|
|
|
|
// Daniele Rondina <geaaru@sabayonlinux.org>
|
|
|
|
//
|
|
|
|
// 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 2 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 cmd_tree
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"sort"
|
|
|
|
|
|
|
|
//. "github.com/mudler/luet/pkg/config"
|
2020-03-14 10:13:09 +00:00
|
|
|
helpers "github.com/mudler/luet/pkg/helpers"
|
2020-03-06 16:51:04 +00:00
|
|
|
. "github.com/mudler/luet/pkg/logger"
|
|
|
|
pkg "github.com/mudler/luet/pkg/package"
|
|
|
|
tree "github.com/mudler/luet/pkg/tree"
|
|
|
|
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
func pkgDetail(pkg pkg.Package) string {
|
|
|
|
ans := fmt.Sprintf(`
|
|
|
|
@@ Package: %s/%s-%s
|
|
|
|
Description: %s
|
|
|
|
License: %s`,
|
|
|
|
pkg.GetCategory(), pkg.GetName(), pkg.GetVersion(),
|
|
|
|
pkg.GetDescription(), pkg.GetLicense())
|
|
|
|
|
|
|
|
for idx, u := range pkg.GetURI() {
|
|
|
|
if idx == 0 {
|
|
|
|
ans += fmt.Sprintf(" URLs: %s", u)
|
|
|
|
} else {
|
|
|
|
ans += fmt.Sprintf(" %s", u)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ans
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewTreePkglistCommand() *cobra.Command {
|
|
|
|
var excludes []string
|
2020-03-13 17:08:49 +00:00
|
|
|
var matches []string
|
2020-03-06 16:51:04 +00:00
|
|
|
|
|
|
|
var ans = &cobra.Command{
|
|
|
|
Use: "pkglist [OPTIONS]",
|
|
|
|
Short: "List of the packages found in tree.",
|
|
|
|
Args: cobra.OnlyValidArgs,
|
|
|
|
PreRun: func(cmd *cobra.Command, args []string) {
|
|
|
|
t, _ := cmd.Flags().GetString("tree")
|
|
|
|
if t == "" {
|
|
|
|
Fatal("Mandatory tree param missing.")
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
|
|
|
|
|
|
treePath, _ := cmd.Flags().GetString("tree")
|
|
|
|
verbose, _ := cmd.Flags().GetBool("verbose")
|
|
|
|
full, _ := cmd.Flags().GetBool("full")
|
|
|
|
reciper := tree.NewInstallerRecipe(pkg.NewInMemoryDatabase(false))
|
|
|
|
err := reciper.Load(treePath)
|
|
|
|
if err != nil {
|
|
|
|
Fatal("Error on load tree ", err)
|
|
|
|
}
|
|
|
|
|
2020-03-14 10:13:09 +00:00
|
|
|
regExcludes, err := helpers.CreateRegexArray(excludes)
|
|
|
|
if err != nil {
|
|
|
|
Fatal(err.Error())
|
2020-03-06 16:51:04 +00:00
|
|
|
}
|
2020-03-14 10:13:09 +00:00
|
|
|
regMatches, err := helpers.CreateRegexArray(matches)
|
|
|
|
if err != nil {
|
|
|
|
Fatal(err.Error())
|
2020-03-13 17:08:49 +00:00
|
|
|
}
|
|
|
|
|
2020-03-06 16:51:04 +00:00
|
|
|
plist := make([]string, 0)
|
|
|
|
for _, p := range reciper.GetDatabase().World() {
|
|
|
|
pkgstr := ""
|
|
|
|
addPkg := true
|
|
|
|
if full {
|
|
|
|
pkgstr = pkgDetail(p)
|
|
|
|
} else if verbose {
|
|
|
|
pkgstr = fmt.Sprintf("%s/%s-%s", p.GetCategory(), p.GetName(), p.GetVersion())
|
|
|
|
} else {
|
|
|
|
pkgstr = fmt.Sprintf("%s/%s", p.GetCategory(), p.GetName())
|
|
|
|
}
|
|
|
|
|
2020-03-13 17:08:49 +00:00
|
|
|
if len(matches) > 0 {
|
|
|
|
matched := false
|
|
|
|
for _, rgx := range regMatches {
|
|
|
|
if rgx.MatchString(pkgstr) {
|
|
|
|
matched = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !matched {
|
|
|
|
addPkg = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(excludes) > 0 && addPkg {
|
2020-03-06 16:51:04 +00:00
|
|
|
for _, rgx := range regExcludes {
|
|
|
|
if rgx.MatchString(pkgstr) {
|
|
|
|
addPkg = false
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if addPkg {
|
|
|
|
plist = append(plist, pkgstr)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sort.Strings(plist)
|
|
|
|
for _, p := range plist {
|
|
|
|
fmt.Println(p)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
ans.Flags().BoolP("verbose", "v", false, "Add package version")
|
|
|
|
ans.Flags().BoolP("full", "f", false, "Show package detail")
|
|
|
|
ans.Flags().StringP("tree", "t", "", "Path of the tree to use.")
|
2020-03-13 17:08:49 +00:00
|
|
|
ans.Flags().StringSliceVarP(&matches, "matches", "m", []string{},
|
|
|
|
"Include only matched packages from list. (Use string as regex).")
|
2020-03-06 16:51:04 +00:00
|
|
|
ans.Flags().StringSliceVarP(&excludes, "exclude", "e", []string{},
|
|
|
|
"Exclude matched packages from list. (Use string as regex).")
|
|
|
|
|
|
|
|
return ans
|
|
|
|
}
|