2022-07-15 11:49:53 +00:00
|
|
|
/*
|
2022-07-16 15:46:09 +00:00
|
|
|
Copyright © 2022 Matthieu Derasse <git@derasse.fr>
|
2022-07-15 11:49:53 +00:00
|
|
|
*/
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/spf13/cobra"
|
2022-12-11 13:43:49 +00:00
|
|
|
|
|
|
|
"git.dev.m-and-m.ovh/mderasse/gouick/helpers/api_types"
|
|
|
|
|
|
|
|
log "github.com/sirupsen/logrus"
|
2022-07-15 11:49:53 +00:00
|
|
|
)
|
|
|
|
|
2022-08-03 11:17:15 +00:00
|
|
|
// apiCmd represents the api command.
|
2022-07-15 11:49:53 +00:00
|
|
|
var apiCmd = &cobra.Command{
|
|
|
|
Use: "api",
|
2022-12-11 13:43:49 +00:00
|
|
|
Short: "Generate API Files and Controllers",
|
2022-11-11 17:52:44 +00:00
|
|
|
Run: runGenerateAPI,
|
2022-07-15 11:49:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
generateCmd.AddCommand(apiCmd)
|
|
|
|
}
|
2022-11-11 17:52:44 +00:00
|
|
|
|
|
|
|
// runGenerateAPI will generate api files such as controllers, server, unit test, ... for the current project.
|
|
|
|
func runGenerateAPI(cmd *cobra.Command, args []string) {
|
2022-12-11 13:43:49 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|
2022-11-11 17:52:44 +00:00
|
|
|
}
|