2016-06-12 03:37:36 +02:00
|
|
|
// Package main defines a command line interface for the sqlboiler package
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2016-08-01 04:04:48 +02:00
|
|
|
"errors"
|
2016-06-12 03:37:36 +02:00
|
|
|
"fmt"
|
|
|
|
"os"
|
2016-06-12 20:19:23 +02:00
|
|
|
"path/filepath"
|
2016-06-13 00:34:57 +02:00
|
|
|
"strings"
|
2016-06-12 03:37:36 +02:00
|
|
|
|
2016-06-19 23:47:50 +02:00
|
|
|
"github.com/kat-co/vala"
|
2016-06-12 03:37:36 +02:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/spf13/viper"
|
|
|
|
)
|
|
|
|
|
2016-06-12 20:19:23 +02:00
|
|
|
var (
|
|
|
|
cmdState *State
|
|
|
|
cmdConfig *Config
|
|
|
|
)
|
|
|
|
|
2016-06-12 03:37:36 +02:00
|
|
|
func main() {
|
|
|
|
var err error
|
|
|
|
|
|
|
|
viper.SetConfigName("sqlboiler")
|
|
|
|
|
2016-06-12 20:19:23 +02:00
|
|
|
configHome := os.Getenv("XDG_CONFIG_HOME")
|
|
|
|
homePath := os.Getenv("HOME")
|
|
|
|
wd, err := os.Getwd()
|
2016-06-12 03:37:36 +02:00
|
|
|
if err != nil {
|
2016-06-12 20:19:23 +02:00
|
|
|
wd = "./"
|
2016-06-12 03:37:36 +02:00
|
|
|
}
|
|
|
|
|
2016-06-12 20:19:23 +02:00
|
|
|
configPaths := []string{wd}
|
|
|
|
if len(configHome) > 0 {
|
|
|
|
configPaths = append(configPaths, filepath.Join(configHome, "sqlboiler"))
|
|
|
|
} else {
|
|
|
|
configPaths = append(configPaths, filepath.Join(homePath, ".config/sqlboiler"))
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, p := range configPaths {
|
|
|
|
viper.AddConfigPath(p)
|
|
|
|
}
|
|
|
|
|
2016-06-19 23:47:50 +02:00
|
|
|
// Find and read config, ignore errors because we'll fall back to defaults
|
|
|
|
// and other validation mechanisms
|
|
|
|
_ = viper.ReadInConfig()
|
2016-06-12 20:19:23 +02:00
|
|
|
|
2016-06-12 03:37:36 +02:00
|
|
|
// Set up the cobra root command
|
|
|
|
var rootCmd = &cobra.Command{
|
2016-06-14 16:52:58 +02:00
|
|
|
Use: "sqlboiler [flags] <driver>",
|
2016-06-12 03:37:36 +02:00
|
|
|
Short: "SQL Boiler generates boilerplate structs and statements",
|
2016-06-12 20:19:23 +02:00
|
|
|
Long: "SQL Boiler generates boilerplate structs and statements from template files.\n" +
|
2016-06-12 03:37:36 +02:00
|
|
|
`Complete documentation is available at http://github.com/nullbio/sqlboiler`,
|
2016-06-19 23:47:50 +02:00
|
|
|
Example: `sqlboiler -o models -p models postgres`,
|
|
|
|
PreRunE: preRun,
|
|
|
|
RunE: run,
|
|
|
|
PostRunE: postRun,
|
|
|
|
SilenceErrors: true,
|
|
|
|
SilenceUsage: true,
|
2016-06-12 03:37:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Set up the cobra root command flags
|
2016-06-13 00:34:57 +02:00
|
|
|
rootCmd.PersistentFlags().StringSliceP("tables", "t", nil, "Tables to generate models for, all tables if empty")
|
2016-06-14 14:58:46 +02:00
|
|
|
rootCmd.PersistentFlags().StringP("output", "o", "models", "The name of the folder to output to")
|
|
|
|
rootCmd.PersistentFlags().StringP("pkgname", "p", "models", "The name you wish to assign to your generated package")
|
2016-06-12 03:37:36 +02:00
|
|
|
|
2016-07-12 00:17:49 +02:00
|
|
|
viper.SetDefault("postgres.ssl_mode", "required")
|
2016-06-12 03:37:36 +02:00
|
|
|
viper.BindPFlags(rootCmd.PersistentFlags())
|
|
|
|
|
|
|
|
if err := rootCmd.Execute(); err != nil {
|
2016-06-19 23:47:50 +02:00
|
|
|
if e, ok := err.(commandFailure); ok {
|
2016-07-17 05:46:12 +02:00
|
|
|
rootCmd.HelpFunc()
|
2016-06-19 23:47:50 +02:00
|
|
|
fmt.Printf("\n%s\n", string(e))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-08-01 04:04:48 +02:00
|
|
|
fmt.Printf("%+v\n", err)
|
2016-06-13 00:34:57 +02:00
|
|
|
os.Exit(1)
|
2016-06-12 03:37:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-19 23:47:50 +02:00
|
|
|
type commandFailure string
|
|
|
|
|
|
|
|
func (c commandFailure) Error() string {
|
|
|
|
return string(c)
|
|
|
|
}
|
|
|
|
|
2016-06-12 03:37:36 +02:00
|
|
|
func preRun(cmd *cobra.Command, args []string) error {
|
2016-06-13 00:34:57 +02:00
|
|
|
var err error
|
|
|
|
|
2016-06-12 20:19:23 +02:00
|
|
|
if len(args) == 0 {
|
2016-06-19 23:47:50 +02:00
|
|
|
return commandFailure("must provide a driver name")
|
2016-06-12 20:19:23 +02:00
|
|
|
}
|
|
|
|
|
2016-08-01 04:04:48 +02:00
|
|
|
driverName := args[0]
|
|
|
|
|
2016-06-13 00:34:57 +02:00
|
|
|
cmdConfig = &Config{
|
2016-08-01 04:04:48 +02:00
|
|
|
DriverName: driverName,
|
2016-06-13 00:34:57 +02:00
|
|
|
OutFolder: viper.GetString("output"),
|
|
|
|
PkgName: viper.GetString("pkgname"),
|
|
|
|
}
|
2016-06-12 03:37:36 +02:00
|
|
|
|
2016-06-13 00:34:57 +02:00
|
|
|
// BUG: https://github.com/spf13/viper/issues/200
|
|
|
|
// Look up the value of TableNames directly from PFlags in Cobra if we
|
|
|
|
// detect a malformed value coming out of viper.
|
|
|
|
// Once the bug is fixed we'll be able to move this into the init above
|
|
|
|
cmdConfig.TableNames = viper.GetStringSlice("tables")
|
|
|
|
if len(cmdConfig.TableNames) == 1 && strings.HasPrefix(cmdConfig.TableNames[0], "[") {
|
|
|
|
cmdConfig.TableNames, err = cmd.PersistentFlags().GetStringSlice("tables")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2016-06-12 03:37:36 +02:00
|
|
|
|
|
|
|
if viper.IsSet("postgres.dbname") {
|
2016-06-12 20:19:23 +02:00
|
|
|
cmdConfig.Postgres = PostgresConfig{
|
2016-07-12 00:17:49 +02:00
|
|
|
User: viper.GetString("postgres.user"),
|
|
|
|
Pass: viper.GetString("postgres.pass"),
|
|
|
|
Host: viper.GetString("postgres.host"),
|
|
|
|
Port: viper.GetInt("postgres.port"),
|
|
|
|
DBName: viper.GetString("postgres.dbname"),
|
|
|
|
SSLMode: viper.GetString("postgres.sslmode"),
|
2016-06-12 03:37:36 +02:00
|
|
|
}
|
2016-06-19 23:47:50 +02:00
|
|
|
|
2016-07-13 18:51:40 +02:00
|
|
|
// Set the default SSLMode value
|
|
|
|
if cmdConfig.Postgres.SSLMode == "" {
|
|
|
|
viper.Set("postgres.sslmode", "require")
|
|
|
|
cmdConfig.Postgres.SSLMode = viper.GetString("postgres.sslmode")
|
|
|
|
}
|
|
|
|
|
2016-06-19 23:47:50 +02:00
|
|
|
err = vala.BeginValidation().Validate(
|
|
|
|
vala.StringNotEmpty(cmdConfig.Postgres.User, "postgres.user"),
|
|
|
|
vala.StringNotEmpty(cmdConfig.Postgres.Pass, "postgres.pass"),
|
|
|
|
vala.StringNotEmpty(cmdConfig.Postgres.Host, "postgres.host"),
|
|
|
|
vala.Not(vala.Equals(cmdConfig.Postgres.Port, 0, "postgres.port")),
|
|
|
|
vala.StringNotEmpty(cmdConfig.Postgres.DBName, "postgres.dbname"),
|
2016-07-12 00:17:49 +02:00
|
|
|
vala.StringNotEmpty(cmdConfig.Postgres.SSLMode, "postgres.sslmode"),
|
2016-06-19 23:47:50 +02:00
|
|
|
).Check()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return commandFailure(err.Error())
|
|
|
|
}
|
2016-08-01 04:04:48 +02:00
|
|
|
} else if driverName == "postgres" {
|
|
|
|
return errors.New("postgres driver requires a postgres section in the config")
|
2016-06-12 03:37:36 +02:00
|
|
|
}
|
|
|
|
|
2016-06-12 20:19:23 +02:00
|
|
|
cmdState, err = New(cmdConfig)
|
2016-06-12 03:37:36 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func run(cmd *cobra.Command, args []string) error {
|
2016-06-12 20:19:23 +02:00
|
|
|
return cmdState.Run(true)
|
2016-06-12 03:37:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func postRun(cmd *cobra.Command, args []string) error {
|
2016-06-12 20:19:23 +02:00
|
|
|
return cmdState.Cleanup()
|
2016-06-12 03:37:36 +02:00
|
|
|
}
|