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
|
package main
import (
"errors"
"fmt"
"strings"
"github.com/andreykaipov/goobs/api/requests/profiles"
"github.com/spf13/cobra"
)
var (
profileCmd = &cobra.Command{
Use: "profile",
Short: "manage profiles",
Long: `The profile command manages profiles`,
RunE: nil,
}
listProfileCmd = &cobra.Command{
Use: "list",
Short: "List all profiles",
RunE: func(cmd *cobra.Command, args []string) error {
return listProfiles()
},
}
getProfileCmd = &cobra.Command{
Use: "get",
Short: "Get the current profile",
RunE: func(cmd *cobra.Command, args []string) error {
return getProfile()
},
}
setProfileCmd = &cobra.Command{
Use: "set",
Short: "Set the current profile",
RunE: func(cmd *cobra.Command, args []string) error {
if len(args) < 1 {
return errors.New("set requires a profile name as argument")
}
return setProfile(strings.Join(args, " "))
},
}
)
func listProfiles() error {
r, err := client.Profiles.ListProfiles()
if err != nil {
return err
}
for _, v := range r.Profiles {
fmt.Println(v.ProfileName)
}
return nil
}
func setProfile(profile string) error {
r := profiles.SetCurrentProfileParams{
ProfileName: profile,
}
_, err := client.Profiles.SetCurrentProfile(&r)
return err
}
func getProfile() error {
r, err := client.Profiles.GetCurrentProfile()
if err != nil {
return err
}
fmt.Println(r.ProfileName)
return nil
}
func init() {
profileCmd.AddCommand(listProfileCmd)
profileCmd.AddCommand(setProfileCmd)
profileCmd.AddCommand(getProfileCmd)
rootCmd.AddCommand(profileCmd)
}
|