sqlboiler/main.go

145 lines
3.7 KiB
Go
Raw Normal View History

2016-06-12 03:37:36 +02:00
// Package main defines a command line interface for the sqlboiler package
package main
import (
"errors"
2016-06-12 03:37:36 +02:00
"fmt"
"os"
"path/filepath"
2016-06-12 03:37:36 +02:00
"github.com/kat-co/vala"
2016-06-12 03:37:36 +02:00
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
var (
cmdState *State
cmdConfig *Config
)
2016-06-12 03:37:36 +02:00
func main() {
var err error
viper.SetConfigName("sqlboiler")
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 {
wd = "./"
2016-06-12 03:37:36 +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-08-15 15:15:05 +02:00
if err := viper.ReadInConfig(); err != nil {
fmt.Printf("Cannot read or locate config file: %s\n", err)
os.Exit(1)
}
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-08-15 14:42:40 +02:00
Short: "SQL Boiler generates an ORM tailored to your database schema.",
Long: "SQL Boiler generates a Go ORM from template files, tailored to your database schema.\n" +
2016-08-09 09:59:30 +02:00
`Complete documentation is available at http://github.com/vattle/sqlboiler`,
2016-08-15 14:42:40 +02:00
Example: `sqlboiler 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
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
viper.SetDefault("postgres.sslmode", "require")
viper.SetDefault("postgres.port", "5432")
2016-06-12 03:37:36 +02:00
viper.BindPFlags(rootCmd.PersistentFlags())
viper.AutomaticEnv()
2016-06-12 03:37:36 +02:00
if err := rootCmd.Execute(); err != nil {
if e, ok := err.(commandFailure); ok {
2016-08-15 14:42:40 +02:00
fmt.Printf("%s\n", string(e))
return
}
fmt.Printf("%+v\n", err)
os.Exit(1)
2016-06-12 03:37:36 +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 {
var err error
if len(args) == 0 {
2016-08-15 14:42:40 +02:00
return commandFailure("Must provide a driver name.")
}
driverName := args[0]
cmdConfig = &Config{
DriverName: driverName,
OutFolder: viper.GetString("output"),
PkgName: viper.GetString("pkgname"),
}
2016-06-12 03:37:36 +02:00
if viper.IsSet("postgres.dbname") {
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
}
// Set the default SSLMode value
if cmdConfig.Postgres.SSLMode == "" {
viper.Set("postgres.sslmode", "require")
cmdConfig.Postgres.SSLMode = viper.GetString("postgres.sslmode")
}
err = vala.BeginValidation().Validate(
vala.StringNotEmpty(cmdConfig.Postgres.User, "postgres.user"),
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"),
).Check()
if err != nil {
return commandFailure(err.Error())
}
} else if driverName == "postgres" {
2016-08-15 14:42:40 +02:00
return errors.New("Postgres driver requires a postgres section in your config file.")
2016-06-12 03:37:36 +02:00
}
cmdState, err = New(cmdConfig)
2016-06-12 03:37:36 +02:00
return err
}
func run(cmd *cobra.Command, args []string) error {
return cmdState.Run(true)
2016-06-12 03:37:36 +02:00
}
func postRun(cmd *cobra.Command, args []string) error {
return cmdState.Cleanup()
2016-06-12 03:37:36 +02:00
}