2020-07-16 01:20:08 +02:00
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2020-08-13 05:17:42 +02:00
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
|
2020-07-16 01:20:08 +02:00
|
|
|
"github.com/spf13/cobra"
|
2020-08-13 05:17:42 +02:00
|
|
|
"github.com/spf13/viper"
|
2020-07-16 01:20:08 +02:00
|
|
|
)
|
|
|
|
|
2020-08-07 03:50:35 +02:00
|
|
|
const mainDescription = `Taskcafé is an open soure project management
|
2020-07-16 01:20:08 +02:00
|
|
|
system written in Golang & React.`
|
|
|
|
|
|
|
|
var (
|
|
|
|
version = "dev"
|
|
|
|
commit = "none"
|
|
|
|
date = "unknown"
|
|
|
|
)
|
|
|
|
|
|
|
|
var versionTemplate = fmt.Sprintf(`Version: %s
|
|
|
|
Commit: %s
|
|
|
|
Built: %s`, version, commit, date+"\n")
|
|
|
|
|
2020-08-13 05:17:42 +02:00
|
|
|
var cfgFile string
|
2020-07-16 01:20:08 +02:00
|
|
|
|
|
|
|
var rootCmd = &cobra.Command{
|
2020-08-07 03:50:35 +02:00
|
|
|
Use: "taskcafe",
|
2020-07-16 01:20:08 +02:00
|
|
|
Long: mainDescription,
|
|
|
|
Version: version,
|
|
|
|
}
|
|
|
|
|
2020-08-13 05:17:42 +02:00
|
|
|
var migration http.FileSystem
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
cobra.OnInitialize(initConfig)
|
|
|
|
|
|
|
|
rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file path")
|
|
|
|
migration = http.Dir("./migrations")
|
|
|
|
}
|
|
|
|
|
|
|
|
func initConfig() {
|
|
|
|
if cfgFile != "" {
|
|
|
|
// Use config file from the flag.
|
|
|
|
viper.SetConfigFile(cfgFile)
|
|
|
|
} else {
|
|
|
|
// Search config in home directory with name ".cobra" (without extension).
|
|
|
|
viper.AddConfigPath("./conf")
|
|
|
|
viper.AddConfigPath(".")
|
|
|
|
viper.AddConfigPath("/etc/taskcafe")
|
|
|
|
viper.SetConfigName("taskcafe")
|
|
|
|
}
|
|
|
|
|
|
|
|
viper.SetEnvPrefix("TASKCAFE")
|
|
|
|
viper.SetEnvKeyReplacer(strings.NewReplacer(".", "_"))
|
|
|
|
viper.AutomaticEnv()
|
|
|
|
|
2020-08-19 07:34:27 +02:00
|
|
|
err := viper.ReadInConfig()
|
|
|
|
if _, ok := err.(viper.ConfigFileNotFoundError); !ok {
|
2020-08-13 05:17:42 +02:00
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-21 01:11:24 +02:00
|
|
|
// Execute the root cobra command
|
2020-07-16 01:20:08 +02:00
|
|
|
func Execute() {
|
|
|
|
rootCmd.SetVersionTemplate(versionTemplate)
|
2020-08-01 03:01:14 +02:00
|
|
|
rootCmd.AddCommand(newWebCmd(), newMigrateCmd(), newTokenCmd())
|
2020-07-16 01:20:08 +02:00
|
|
|
rootCmd.Execute()
|
|
|
|
}
|