Skip to content

Commit

Permalink
Add database get-all-installed to show all installed packages (#342)
Browse files Browse the repository at this point in the history
This command shows all installed packatges in the system directly
without having to query one by one.

It also allows to store the package list into a file

Signed-off-by: Itxaka <itxaka@kairos.io>
  • Loading branch information
Itxaka authored Aug 21, 2023
1 parent 1c473e4 commit dfc2743
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 0 deletions.
1 change: 1 addition & 0 deletions cmd/database.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,6 @@ func init() {
NewDatabaseCreateCommand(),
NewDatabaseGetCommand(),
NewDatabaseRemoveCommand(),
NewDatabaseShowAllCommand(),
)
}
68 changes: 68 additions & 0 deletions cmd/database/show_all.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
// Copyright © 2021 Ettore Di Giacinto <mudler@mocaccino.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_database

import (
"fmt"
"github.com/mudler/luet/cmd/util"
"github.com/mudler/luet/pkg/api/core/types"
"github.com/spf13/cobra"
"gopkg.in/yaml.v2"
"os"
)

func NewDatabaseShowAllCommand() *cobra.Command {
var c = &cobra.Command{
Use: "get-all-installed",
Short: "Show all installed packages in the system DB as yaml",
Args: cobra.NoArgs,

Run: func(cmd *cobra.Command, args []string) {
systemDB := util.SystemDB(util.DefaultContext.Config)
var packages []*types.Package

packs := systemDB.GetPackages()
for _, p := range packs {
pack, _ := systemDB.GetPackage(p)
packages = append(packages, pack)
}
marshal, err := yaml.Marshal(packages)
if err != nil {
return
}
fmt.Println(string(marshal))
output, _ := cmd.Flags().GetString("output")
f, err := os.Create(output)
if err != nil {
fmt.Printf("Error creating file: %s\n", err)
return
}
_, err = f.WriteString(string(marshal))
if err != nil {
fmt.Printf("Error writing file: %s\n", err)
return
}
err = f.Close()
if err != nil {
fmt.Printf("Error closing file: %s\n", err)
return
}
},
}

c.Flags().String("output", "", "Save output to given file.")
return c
}

0 comments on commit dfc2743

Please sign in to comment.