From e013412832024ca7419e285873f44a1d8a9aba2e Mon Sep 17 00:00:00 2001 From: Daniele Rondina Date: Sat, 4 Jan 2020 17:56:19 +0100 Subject: [PATCH] Add repo list command --- cmd/repo.go | 36 ++++++++++++++++++++++ cmd/repo/list.go | 77 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 113 insertions(+) create mode 100644 cmd/repo.go create mode 100644 cmd/repo/list.go diff --git a/cmd/repo.go b/cmd/repo.go new file mode 100644 index 00000000..b18eb2ea --- /dev/null +++ b/cmd/repo.go @@ -0,0 +1,36 @@ +// Copyright © 2019 Ettore Di Giacinto +// Daniele Rondina +// +// 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 . + +package cmd + +import ( + . "github.com/mudler/luet/cmd/repo" + + "github.com/spf13/cobra" +) + +var repoGroupCmd = &cobra.Command{ + Use: "repo [command] [OPTIONS]", + Short: "Manage repositories", +} + +func init() { + RootCmd.AddCommand(repoGroupCmd) + + repoGroupCmd.AddCommand( + NewRepoListCommand(), + ) +} diff --git a/cmd/repo/list.go b/cmd/repo/list.go new file mode 100644 index 00000000..f5d98cda --- /dev/null +++ b/cmd/repo/list.go @@ -0,0 +1,77 @@ +// Copyright © 2019 Ettore Di Giacinto +// Daniele Rondina +// +// 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 . + +package cmd_repo + +import ( + "fmt" + + . "github.com/mudler/luet/pkg/config" + + . "github.com/logrusorgru/aurora" + "github.com/spf13/cobra" +) + +func NewRepoListCommand() *cobra.Command { + var ans = &cobra.Command{ + Use: "list [OPTIONS]", + Short: "List of the configured repositories.", + Args: cobra.OnlyValidArgs, + PreRun: func(cmd *cobra.Command, args []string) { + }, + Run: func(cmd *cobra.Command, args []string) { + var repoColor, repoText string + + enable, _ := cmd.Flags().GetBool("enabled") + quiet, _ := cmd.Flags().GetBool("quiet") + repoType, _ := cmd.Flags().GetString("type") + + for _, repo := range LuetCfg.SystemRepositories { + if enable && !repo.Enable { + continue + } + + if repoType != "" && repo.Type != repoType { + continue + } + + if quiet { + fmt.Println(repo.Name) + } else { + if repo.Enable { + repoColor = Bold(BrightGreen(repo.Name)).String() + } else { + repoColor = Bold(BrightRed(repo.Name)).String() + } + if repo.Description != "" { + repoText = Yellow(repo.Description).String() + } else { + repoText = Yellow(repo.Urls[0]).String() + } + + fmt.Println( + fmt.Sprintf("%s\n %s", repoColor, repoText)) + } + } + }, + } + + ans.Flags().Bool("enabled", false, "Show only enable repositories.") + ans.Flags().BoolP("quiet", "q", false, "Show only name of the repositories.") + ans.Flags().StringP("type", "t", "", "Filter repositories of a specific type") + + return ans +}