1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
// Copyright (c) 2019-2023, Sylabs Inc. All rights reserved.
// Copyright (c) 2020, Control Command Inc. All rights reserved.
// This software is licensed under a 3-clause BSD license. Please consult the
// LICENSE.md file distributed with the sources of this project regarding your
// rights to use or distribute this software.
package singularity
import (
"fmt"
"os"
"sort"
"text/tabwriter"
"github.com/sylabs/singularity/v4/internal/pkg/remote"
)
const listLine = "%s\t%s\t%s\t%s\t%s\t%s\n"
// RemoteList prints information about remote configurations
func RemoteList(usrConfigFile string) (err error) {
c := &remote.Config{}
// opening config file
file, err := os.OpenFile(usrConfigFile, os.O_RDONLY|os.O_CREATE, 0o600)
if err != nil {
if os.IsNotExist(err) {
return fmt.Errorf("no remote configurations")
}
return fmt.Errorf("while opening remote config file: %s", err)
}
defer file.Close()
// read file contents to config struct
c, err = remote.ReadFrom(file)
if err != nil {
return fmt.Errorf("while parsing remote config data: %s", err)
}
if err := syncSysConfig(c); err != nil {
return err
}
// list in alphanumeric order
names := make([]string, 0, len(c.Remotes))
for n := range c.Remotes {
names = append(names, n)
}
sort.Slice(names, func(i, j int) bool {
iName, jName := names[i], names[j]
if c.Remotes[iName].System && !c.Remotes[jName].System {
return true
} else if !c.Remotes[iName].System && c.Remotes[jName].System {
return false
}
return names[i] < names[j]
})
sort.Strings(names)
fmt.Println()
tw := tabwriter.NewWriter(os.Stdout, 0, 0, 2, ' ', 0)
fmt.Fprintf(tw, listLine, "NAME", "URI", "DEFAULT?", "GLOBAL?", "EXCLUSIVE?", "SECURE?")
for _, n := range names {
sys := ""
if c.Remotes[n].System {
sys = "✓"
}
excl := ""
if c.Remotes[n].Exclusive {
excl = "✓"
}
secure := "✓"
if c.Remotes[n].Insecure {
secure = "✗!"
}
isDefault := ""
if c.DefaultRemote != "" && c.DefaultRemote == n {
isDefault = "✓"
}
fmt.Fprintf(tw, listLine, n, c.Remotes[n].URI, isDefault, sys, excl, secure)
}
tw.Flush()
return nil
}
|