mirror of
https://github.com/mudler/luet.git
synced 2025-04-30 04:23:49 +00:00
This commit is multi-fold as it also refactors internally context and logger as interfaces so it is easier to plug luet as a library externally. Introduces a garbage collector (related to #227) but doesn't handle yet parallelism. Closes #265
102 lines
2.9 KiB
Go
102 lines
2.9 KiB
Go
// Copyright © 2019 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_repo
|
|
|
|
import (
|
|
"fmt"
|
|
"path/filepath"
|
|
"strconv"
|
|
"time"
|
|
|
|
"github.com/mudler/luet/cmd/util"
|
|
installer "github.com/mudler/luet/pkg/installer"
|
|
"github.com/pterm/pterm"
|
|
|
|
"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, repoRevision string
|
|
|
|
enable, _ := cmd.Flags().GetBool("enabled")
|
|
quiet, _ := cmd.Flags().GetBool("quiet")
|
|
repoType, _ := cmd.Flags().GetString("type")
|
|
|
|
for _, repo := range util.DefaultContext.Config.SystemRepositories {
|
|
if enable && !repo.Enable {
|
|
continue
|
|
}
|
|
|
|
if repoType != "" && repo.Type != repoType {
|
|
continue
|
|
}
|
|
|
|
repoRevision = ""
|
|
|
|
if quiet {
|
|
fmt.Println(repo.Name)
|
|
} else {
|
|
if repo.Enable {
|
|
repoColor = pterm.LightGreen(repo.Name)
|
|
} else {
|
|
repoColor = pterm.LightRed(repo.Name)
|
|
}
|
|
if repo.Description != "" {
|
|
repoText = pterm.LightYellow(repo.Description)
|
|
} else {
|
|
repoText = pterm.LightYellow(repo.Urls[0])
|
|
}
|
|
|
|
repobasedir := util.DefaultContext.Config.System.GetRepoDatabaseDirPath(repo.Name)
|
|
if repo.Cached {
|
|
|
|
r := installer.NewSystemRepository(repo)
|
|
localRepo, _ := r.ReadSpecFile(filepath.Join(repobasedir,
|
|
installer.REPOSITORY_SPECFILE))
|
|
if localRepo != nil {
|
|
tsec, _ := strconv.ParseInt(localRepo.GetLastUpdate(), 10, 64)
|
|
repoRevision = pterm.LightRed(localRepo.GetRevision()) +
|
|
" - " + pterm.LightGreen(time.Unix(tsec, 0).String())
|
|
}
|
|
}
|
|
|
|
if repoRevision != "" {
|
|
fmt.Println(
|
|
fmt.Sprintf("%s\n %s\n Revision %s", repoColor, repoText, repoRevision))
|
|
} else {
|
|
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
|
|
}
|