gouick/cmd/generateAPI.go
Matthieu 'JP' DERASSE d997c0035d
All checks were successful
continuous-integration/drone/push Build is passing
feat(api): Implement API generator with stratoscale for go swagger
2022-12-11 13:43:49 +00:00

49 lines
1.0 KiB
Go

/*
Copyright © 2022 Matthieu Derasse <git@derasse.fr>
*/
package cmd
import (
"github.com/spf13/cobra"
"git.dev.m-and-m.ovh/mderasse/gouick/helpers/api_types"
log "github.com/sirupsen/logrus"
)
// apiCmd represents the api command.
var apiCmd = &cobra.Command{
Use: "api",
Short: "Generate API Files and Controllers",
Run: runGenerateAPI,
}
func init() {
generateCmd.AddCommand(apiCmd)
}
// runGenerateAPI will generate api files such as controllers, server, unit test, ... for the current project.
func runGenerateAPI(cmd *cobra.Command, args []string) {
log.Debugf("Starting command GenerateAPI")
currentPath, config, err := loadProjectAndConfig()
if err != nil {
return
}
apiType, err := api_types.GetAPIType(config.ProjectType)
if err != nil {
log.Error("Impossible to load that API Type generator")
return
}
// Generate Dockerfile
log.Info("Generating API")
err = apiType.GenerateAPI(currentPath, config)
if err != nil {
log.Errorf("Fail to generate API Files. The following error happen: %s", err.Error())
return
}
}