You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.7 KiB
Go
71 lines
1.7 KiB
Go
/*
|
|
Copyright © 2023 NAME HERE <EMAIL ADDRESS>
|
|
*/
|
|
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
// "code.ndumas.com/ndumas/obsidian-pipeline/gloss"
|
|
)
|
|
|
|
var (
|
|
vault string
|
|
cfgFile string
|
|
format string
|
|
)
|
|
|
|
var rootCmd = &cobra.Command{
|
|
TraverseChildren: true,
|
|
Use: "obp",
|
|
Short: "obp is a toolkit for managing your vault in headless contexts",
|
|
Long: `a suite of tools for managing your obsidian vault`,
|
|
PreRunE: func(cmd *cobra.Command, args []string) error {
|
|
// here is where I validate arguments, open and parse config files, etc
|
|
return nil
|
|
},
|
|
}
|
|
|
|
// Execute adds all child commands to the root command and sets flags appropriately.
|
|
// This is called by main.main(). It only needs to happen once to the rootCmd.
|
|
func Execute() {
|
|
if err := rootCmd.Execute(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|
|
|
|
func init() {
|
|
cobra.OnInitialize(initConfig)
|
|
|
|
rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "~/.obp.toml", "config file")
|
|
|
|
// rootCmd.SetHelpFunc(gloss.CharmHelp)
|
|
// rootCmd.SetUsageFunc(gloss.CharmUsage)
|
|
}
|
|
|
|
// initConfig reads in config file and ENV variables if set.
|
|
func initConfig() {
|
|
if cfgFile != "" {
|
|
viper.SetConfigFile(cfgFile)
|
|
} else {
|
|
// Find home directory.
|
|
home, err := os.UserHomeDir()
|
|
cobra.CheckErr(err)
|
|
|
|
// Search config in home directory with name ".cmd" (without extension).
|
|
viper.AddConfigPath(home)
|
|
viper.SetConfigType("toml")
|
|
viper.SetConfigName(".obp")
|
|
}
|
|
|
|
viper.AutomaticEnv() // read in environment variables that match
|
|
|
|
// If a config file is found, read it in.
|
|
if err := viper.ReadInConfig(); err == nil {
|
|
fmt.Fprintln(os.Stderr, "Using config file:", viper.ConfigFileUsed())
|
|
}
|
|
}
|