2020-01-04 16:56:19 +00:00
|
|
|
// 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"
|
2020-01-12 22:32:14 +00:00
|
|
|
"path/filepath"
|
|
|
|
"strconv"
|
|
|
|
"time"
|
2020-01-04 16:56:19 +00:00
|
|
|
|
|
|
|
. "github.com/mudler/luet/pkg/config"
|
2020-01-12 22:32:14 +00:00
|
|
|
installer "github.com/mudler/luet/pkg/installer"
|
2020-01-04 16:56:19 +00:00
|
|
|
|
|
|
|
. "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) {
|
2020-01-12 22:32:14 +00:00
|
|
|
var repoColor, repoText, repoRevision string
|
2020-01-04 16:56:19 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2020-01-12 22:32:14 +00:00
|
|
|
repoRevision = ""
|
|
|
|
|
2020-01-04 16:56:19 +00:00
|
|
|
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()
|
|
|
|
}
|
|
|
|
|
2020-02-12 09:20:07 +00:00
|
|
|
repobasedir := LuetCfg.GetSystem().GetRepoDatabaseDirPath(repo.Name)
|
2020-01-12 22:32:14 +00:00
|
|
|
if repo.Cached {
|
|
|
|
|
|
|
|
r := installer.NewSystemRepository(repo)
|
|
|
|
localRepo, _ := r.(*installer.LuetSystemRepository).ReadSpecFile(filepath.Join(repobasedir,
|
|
|
|
installer.REPOSITORY_SPECFILE), false)
|
|
|
|
if localRepo != nil {
|
|
|
|
tsec, _ := strconv.ParseInt(localRepo.GetLastUpdate(), 10, 64)
|
|
|
|
repoRevision = Bold(Red(localRepo.GetRevision())).String() +
|
|
|
|
" - " + Bold(Green(time.Unix(tsec, 0).String())).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))
|
|
|
|
}
|
2020-01-04 16:56:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|